Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2008, Freescale Semiconductor, Inc |
| 4 | * Andy Fleming |
| 5 | * |
| 6 | * Based vaguely on the Linux code |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <config.h> |
| 10 | #include <common.h> |
| 11 | #include <command.h> |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 12 | #include <dm.h> |
| 13 | #include <dm/device-internal.h> |
Stephen Warren | d4622df | 2014-05-23 12:47:06 -0600 | [diff] [blame] | 14 | #include <errno.h> |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 15 | #include <mmc.h> |
| 16 | #include <part.h> |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 17 | #include <power/regulator.h> |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 18 | #include <malloc.h> |
Simon Glass | cf92e05 | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 19 | #include <memalign.h> |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 20 | #include <linux/list.h> |
Rabin Vincent | 9b1f942 | 2009-04-05 13:30:54 +0530 | [diff] [blame] | 21 | #include <div64.h> |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 22 | #include "mmc_private.h" |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 23 | |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 24 | 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] | 25 | static int mmc_power_cycle(struct mmc *mmc); |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 26 | #if !CONFIG_IS_ENABLED(MMC_TINY) |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 27 | static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps); |
Marek Vasut | b5b838f | 2016-12-01 02:06:33 +0100 | [diff] [blame] | 28 | #endif |
| 29 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 30 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 31 | |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 32 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 33 | static int mmc_wait_dat0(struct mmc *mmc, int state, int timeout) |
| 34 | { |
| 35 | return -ENOSYS; |
| 36 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 37 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 38 | |
Jeroen Hofstee | 750121c | 2014-07-12 21:24:08 +0200 | [diff] [blame] | 39 | __weak int board_mmc_getwp(struct mmc *mmc) |
Nikita Kiryanov | d23d8d7 | 2012-12-03 02:19:46 +0000 | [diff] [blame] | 40 | { |
| 41 | return -1; |
| 42 | } |
| 43 | |
| 44 | int mmc_getwp(struct mmc *mmc) |
| 45 | { |
| 46 | int wp; |
| 47 | |
| 48 | wp = board_mmc_getwp(mmc); |
| 49 | |
Peter Korsgaard | d4e1da4 | 2013-03-21 04:00:03 +0000 | [diff] [blame] | 50 | if (wp < 0) { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 51 | if (mmc->cfg->ops->getwp) |
| 52 | wp = mmc->cfg->ops->getwp(mmc); |
Peter Korsgaard | d4e1da4 | 2013-03-21 04:00:03 +0000 | [diff] [blame] | 53 | else |
| 54 | wp = 0; |
| 55 | } |
Nikita Kiryanov | d23d8d7 | 2012-12-03 02:19:46 +0000 | [diff] [blame] | 56 | |
| 57 | return wp; |
| 58 | } |
| 59 | |
Jeroen Hofstee | cee9ab7 | 2014-07-10 22:46:28 +0200 | [diff] [blame] | 60 | __weak int board_mmc_getcd(struct mmc *mmc) |
| 61 | { |
Stefano Babic | 11fdade | 2010-02-05 15:04:43 +0100 | [diff] [blame] | 62 | return -1; |
| 63 | } |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 64 | #endif |
Stefano Babic | 11fdade | 2010-02-05 15:04:43 +0100 | [diff] [blame] | 65 | |
Marek Vasut | 8635ff9 | 2012-03-15 18:41:35 +0000 | [diff] [blame] | 66 | #ifdef CONFIG_MMC_TRACE |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 67 | void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd) |
| 68 | { |
| 69 | printf("CMD_SEND:%d\n", cmd->cmdidx); |
Marek Vasut | 7d5ccb1 | 2019-03-23 18:54:45 +0100 | [diff] [blame] | 70 | printf("\t\tARG\t\t\t 0x%08x\n", cmd->cmdarg); |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, int ret) |
| 74 | { |
Raffaele Recalcati | 5db2fe3 | 2011-03-11 02:01:14 +0000 | [diff] [blame] | 75 | int i; |
| 76 | u8 *ptr; |
| 77 | |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 78 | if (ret) { |
| 79 | printf("\t\tRET\t\t\t %d\n", ret); |
| 80 | } else { |
| 81 | switch (cmd->resp_type) { |
| 82 | case MMC_RSP_NONE: |
| 83 | printf("\t\tMMC_RSP_NONE\n"); |
| 84 | break; |
| 85 | case MMC_RSP_R1: |
Marek Vasut | 7d5ccb1 | 2019-03-23 18:54:45 +0100 | [diff] [blame] | 86 | printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08x \n", |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 87 | cmd->response[0]); |
| 88 | break; |
| 89 | case MMC_RSP_R1b: |
Marek Vasut | 7d5ccb1 | 2019-03-23 18:54:45 +0100 | [diff] [blame] | 90 | printf("\t\tMMC_RSP_R1b\t\t 0x%08x \n", |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 91 | cmd->response[0]); |
| 92 | break; |
| 93 | case MMC_RSP_R2: |
Marek Vasut | 7d5ccb1 | 2019-03-23 18:54:45 +0100 | [diff] [blame] | 94 | printf("\t\tMMC_RSP_R2\t\t 0x%08x \n", |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 95 | cmd->response[0]); |
Marek Vasut | 7d5ccb1 | 2019-03-23 18:54:45 +0100 | [diff] [blame] | 96 | printf("\t\t \t\t 0x%08x \n", |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 97 | cmd->response[1]); |
Marek Vasut | 7d5ccb1 | 2019-03-23 18:54:45 +0100 | [diff] [blame] | 98 | printf("\t\t \t\t 0x%08x \n", |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 99 | cmd->response[2]); |
Marek Vasut | 7d5ccb1 | 2019-03-23 18:54:45 +0100 | [diff] [blame] | 100 | printf("\t\t \t\t 0x%08x \n", |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 101 | cmd->response[3]); |
Raffaele Recalcati | 5db2fe3 | 2011-03-11 02:01:14 +0000 | [diff] [blame] | 102 | printf("\n"); |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 103 | printf("\t\t\t\t\tDUMPING DATA\n"); |
| 104 | for (i = 0; i < 4; i++) { |
| 105 | int j; |
| 106 | printf("\t\t\t\t\t%03d - ", i*4); |
| 107 | ptr = (u8 *)&cmd->response[i]; |
| 108 | ptr += 3; |
| 109 | for (j = 0; j < 4; j++) |
Marek Vasut | 7d5ccb1 | 2019-03-23 18:54:45 +0100 | [diff] [blame] | 110 | printf("%02x ", *ptr--); |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 111 | printf("\n"); |
| 112 | } |
| 113 | break; |
| 114 | case MMC_RSP_R3: |
Marek Vasut | 7d5ccb1 | 2019-03-23 18:54:45 +0100 | [diff] [blame] | 115 | printf("\t\tMMC_RSP_R3,4\t\t 0x%08x \n", |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 116 | cmd->response[0]); |
| 117 | break; |
| 118 | default: |
| 119 | printf("\t\tERROR MMC rsp not supported\n"); |
| 120 | break; |
Bin Meng | 53e8e40 | 2016-03-17 21:53:13 -0700 | [diff] [blame] | 121 | } |
Raffaele Recalcati | 5db2fe3 | 2011-03-11 02:01:14 +0000 | [diff] [blame] | 122 | } |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd) |
| 126 | { |
| 127 | int status; |
| 128 | |
| 129 | status = (cmd->response[0] & MMC_STATUS_CURR_STATE) >> 9; |
| 130 | printf("CURR STATE:%d\n", status); |
| 131 | } |
Raffaele Recalcati | 5db2fe3 | 2011-03-11 02:01:14 +0000 | [diff] [blame] | 132 | #endif |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 133 | |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 134 | #if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG) |
| 135 | const char *mmc_mode_name(enum bus_mode mode) |
| 136 | { |
| 137 | static const char *const names[] = { |
| 138 | [MMC_LEGACY] = "MMC legacy", |
| 139 | [SD_LEGACY] = "SD Legacy", |
| 140 | [MMC_HS] = "MMC High Speed (26MHz)", |
| 141 | [SD_HS] = "SD High Speed (50MHz)", |
| 142 | [UHS_SDR12] = "UHS SDR12 (25MHz)", |
| 143 | [UHS_SDR25] = "UHS SDR25 (50MHz)", |
| 144 | [UHS_SDR50] = "UHS SDR50 (100MHz)", |
| 145 | [UHS_SDR104] = "UHS SDR104 (208MHz)", |
| 146 | [UHS_DDR50] = "UHS DDR50 (50MHz)", |
| 147 | [MMC_HS_52] = "MMC High Speed (52MHz)", |
| 148 | [MMC_DDR_52] = "MMC DDR52 (52MHz)", |
| 149 | [MMC_HS_200] = "HS200 (200MHz)", |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 150 | [MMC_HS_400] = "HS400 (200MHz)", |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | if (mode >= MMC_MODES_END) |
| 154 | return "Unknown mode"; |
| 155 | else |
| 156 | return names[mode]; |
| 157 | } |
| 158 | #endif |
| 159 | |
Jean-Jacques Hiblot | 0503857 | 2017-09-21 16:29:55 +0200 | [diff] [blame] | 160 | static uint mmc_mode2freq(struct mmc *mmc, enum bus_mode mode) |
| 161 | { |
| 162 | static const int freqs[] = { |
Jaehoon Chung | 1b313aa | 2018-01-30 14:10:16 +0900 | [diff] [blame] | 163 | [MMC_LEGACY] = 25000000, |
Jean-Jacques Hiblot | 0503857 | 2017-09-21 16:29:55 +0200 | [diff] [blame] | 164 | [SD_LEGACY] = 25000000, |
| 165 | [MMC_HS] = 26000000, |
| 166 | [SD_HS] = 50000000, |
Jaehoon Chung | 1b313aa | 2018-01-30 14:10:16 +0900 | [diff] [blame] | 167 | [MMC_HS_52] = 52000000, |
| 168 | [MMC_DDR_52] = 52000000, |
Jean-Jacques Hiblot | 0503857 | 2017-09-21 16:29:55 +0200 | [diff] [blame] | 169 | [UHS_SDR12] = 25000000, |
| 170 | [UHS_SDR25] = 50000000, |
| 171 | [UHS_SDR50] = 100000000, |
Jean-Jacques Hiblot | 0503857 | 2017-09-21 16:29:55 +0200 | [diff] [blame] | 172 | [UHS_DDR50] = 50000000, |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 173 | [UHS_SDR104] = 208000000, |
Jean-Jacques Hiblot | 0503857 | 2017-09-21 16:29:55 +0200 | [diff] [blame] | 174 | [MMC_HS_200] = 200000000, |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 175 | [MMC_HS_400] = 200000000, |
Jean-Jacques Hiblot | 0503857 | 2017-09-21 16:29:55 +0200 | [diff] [blame] | 176 | }; |
| 177 | |
| 178 | if (mode == MMC_LEGACY) |
| 179 | return mmc->legacy_speed; |
| 180 | else if (mode >= MMC_MODES_END) |
| 181 | return 0; |
| 182 | else |
| 183 | return freqs[mode]; |
| 184 | } |
| 185 | |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 186 | static int mmc_select_mode(struct mmc *mmc, enum bus_mode mode) |
| 187 | { |
| 188 | mmc->selected_mode = mode; |
Jean-Jacques Hiblot | 0503857 | 2017-09-21 16:29:55 +0200 | [diff] [blame] | 189 | mmc->tran_speed = mmc_mode2freq(mmc, mode); |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 190 | mmc->ddr_mode = mmc_is_mode_ddr(mode); |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 191 | pr_debug("selecting mode %s (freq : %d MHz)\n", mmc_mode_name(mode), |
| 192 | mmc->tran_speed / 1000000); |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 193 | return 0; |
| 194 | } |
| 195 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 196 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 197 | int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) |
| 198 | { |
| 199 | int ret; |
| 200 | |
| 201 | mmmc_trace_before_send(mmc, cmd); |
| 202 | ret = mmc->cfg->ops->send_cmd(mmc, cmd, data); |
| 203 | mmmc_trace_after_send(mmc, cmd, ret); |
| 204 | |
Marek Vasut | 8635ff9 | 2012-03-15 18:41:35 +0000 | [diff] [blame] | 205 | return ret; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 206 | } |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 207 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 208 | |
Jean-Jacques Hiblot | 863d100 | 2019-07-02 10:53:52 +0200 | [diff] [blame^] | 209 | int mmc_send_status(struct mmc *mmc, unsigned int *status) |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 210 | { |
| 211 | struct mmc_cmd cmd; |
Jan Kloetzke | d617c42 | 2012-02-05 22:29:12 +0000 | [diff] [blame] | 212 | int err, retries = 5; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 213 | |
| 214 | cmd.cmdidx = MMC_CMD_SEND_STATUS; |
| 215 | cmd.resp_type = MMC_RSP_R1; |
Marek Vasut | aaf3d41 | 2011-08-10 09:24:48 +0200 | [diff] [blame] | 216 | if (!mmc_host_is_spi(mmc)) |
| 217 | cmd.cmdarg = mmc->rca << 16; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 218 | |
Jean-Jacques Hiblot | 863d100 | 2019-07-02 10:53:52 +0200 | [diff] [blame^] | 219 | while (retries--) { |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 220 | err = mmc_send_cmd(mmc, &cmd, NULL); |
Jan Kloetzke | d617c42 | 2012-02-05 22:29:12 +0000 | [diff] [blame] | 221 | if (!err) { |
Jean-Jacques Hiblot | 863d100 | 2019-07-02 10:53:52 +0200 | [diff] [blame^] | 222 | mmc_trace_state(mmc, &cmd); |
| 223 | *status = cmd.response[0]; |
| 224 | return 0; |
| 225 | } |
| 226 | } |
| 227 | mmc_trace_state(mmc, &cmd); |
| 228 | return -ECOMM; |
| 229 | } |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 230 | |
Jean-Jacques Hiblot | 863d100 | 2019-07-02 10:53:52 +0200 | [diff] [blame^] | 231 | int mmc_poll_for_busy(struct mmc *mmc, int timeout) |
| 232 | { |
| 233 | unsigned int status; |
| 234 | int err; |
| 235 | |
| 236 | while (1) { |
| 237 | err = mmc_send_status(mmc, &status); |
| 238 | if (err) |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 239 | return err; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 240 | |
Jean-Jacques Hiblot | 863d100 | 2019-07-02 10:53:52 +0200 | [diff] [blame^] | 241 | if ((status & MMC_STATUS_RDY_FOR_DATA) && |
| 242 | (status & MMC_STATUS_CURR_STATE) != |
| 243 | MMC_STATE_PRG) |
| 244 | break; |
| 245 | |
| 246 | if (status & MMC_STATUS_MASK) { |
| 247 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
| 248 | pr_err("Status Error: 0x%08x\n", status); |
| 249 | #endif |
| 250 | return -ECOMM; |
| 251 | } |
| 252 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 253 | if (timeout-- <= 0) |
| 254 | break; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 255 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 256 | udelay(1000); |
| 257 | } |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 258 | |
Jongman Heo | 5b0c942 | 2012-06-03 21:32:13 +0000 | [diff] [blame] | 259 | if (timeout <= 0) { |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 260 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 261 | pr_err("Timeout waiting card ready\n"); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 262 | #endif |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 263 | return -ETIMEDOUT; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | return 0; |
| 267 | } |
| 268 | |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 269 | int mmc_set_blocklen(struct mmc *mmc, int len) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 270 | { |
| 271 | struct mmc_cmd cmd; |
Kishon Vijay Abraham I | 83dc422 | 2017-09-21 16:30:10 +0200 | [diff] [blame] | 272 | int err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 273 | |
Andrew Gabbasov | 786e8f8 | 2014-12-01 06:59:09 -0600 | [diff] [blame] | 274 | if (mmc->ddr_mode) |
Jaehoon Chung | d22e3d4 | 2014-05-16 13:59:54 +0900 | [diff] [blame] | 275 | return 0; |
| 276 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 277 | cmd.cmdidx = MMC_CMD_SET_BLOCKLEN; |
| 278 | cmd.resp_type = MMC_RSP_R1; |
| 279 | cmd.cmdarg = len; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 280 | |
Kishon Vijay Abraham I | 83dc422 | 2017-09-21 16:30:10 +0200 | [diff] [blame] | 281 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 282 | |
| 283 | #ifdef CONFIG_MMC_QUIRKS |
| 284 | if (err && (mmc->quirks & MMC_QUIRK_RETRY_SET_BLOCKLEN)) { |
| 285 | int retries = 4; |
| 286 | /* |
| 287 | * It has been seen that SET_BLOCKLEN may fail on the first |
| 288 | * attempt, let's try a few more time |
| 289 | */ |
| 290 | do { |
| 291 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 292 | if (!err) |
| 293 | break; |
| 294 | } while (retries--); |
| 295 | } |
| 296 | #endif |
| 297 | |
| 298 | return err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 299 | } |
| 300 | |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 301 | #ifdef MMC_SUPPORTS_TUNING |
Jean-Jacques Hiblot | 9815e3b | 2017-09-21 16:30:12 +0200 | [diff] [blame] | 302 | static const u8 tuning_blk_pattern_4bit[] = { |
| 303 | 0xff, 0x0f, 0xff, 0x00, 0xff, 0xcc, 0xc3, 0xcc, |
| 304 | 0xc3, 0x3c, 0xcc, 0xff, 0xfe, 0xff, 0xfe, 0xef, |
| 305 | 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xfb, 0xff, 0xfb, |
| 306 | 0xbf, 0xff, 0x7f, 0xff, 0x77, 0xf7, 0xbd, 0xef, |
| 307 | 0xff, 0xf0, 0xff, 0xf0, 0x0f, 0xfc, 0xcc, 0x3c, |
| 308 | 0xcc, 0x33, 0xcc, 0xcf, 0xff, 0xef, 0xff, 0xee, |
| 309 | 0xff, 0xfd, 0xff, 0xfd, 0xdf, 0xff, 0xbf, 0xff, |
| 310 | 0xbb, 0xff, 0xf7, 0xff, 0xf7, 0x7f, 0x7b, 0xde, |
| 311 | }; |
| 312 | |
| 313 | static const u8 tuning_blk_pattern_8bit[] = { |
| 314 | 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00, |
| 315 | 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc, 0xcc, |
| 316 | 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff, 0xff, |
| 317 | 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee, 0xff, |
| 318 | 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd, 0xdd, |
| 319 | 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff, 0xbb, |
| 320 | 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff, |
| 321 | 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee, 0xff, |
| 322 | 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, |
| 323 | 0x00, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc, |
| 324 | 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff, |
| 325 | 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee, |
| 326 | 0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd, |
| 327 | 0xdd, 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff, |
| 328 | 0xbb, 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, |
| 329 | 0xff, 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee, |
| 330 | }; |
| 331 | |
| 332 | int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error) |
| 333 | { |
| 334 | struct mmc_cmd cmd; |
| 335 | struct mmc_data data; |
| 336 | const u8 *tuning_block_pattern; |
| 337 | int size, err; |
| 338 | |
| 339 | if (mmc->bus_width == 8) { |
| 340 | tuning_block_pattern = tuning_blk_pattern_8bit; |
| 341 | size = sizeof(tuning_blk_pattern_8bit); |
| 342 | } else if (mmc->bus_width == 4) { |
| 343 | tuning_block_pattern = tuning_blk_pattern_4bit; |
| 344 | size = sizeof(tuning_blk_pattern_4bit); |
| 345 | } else { |
| 346 | return -EINVAL; |
| 347 | } |
| 348 | |
| 349 | ALLOC_CACHE_ALIGN_BUFFER(u8, data_buf, size); |
| 350 | |
| 351 | cmd.cmdidx = opcode; |
| 352 | cmd.cmdarg = 0; |
| 353 | cmd.resp_type = MMC_RSP_R1; |
| 354 | |
| 355 | data.dest = (void *)data_buf; |
| 356 | data.blocks = 1; |
| 357 | data.blocksize = size; |
| 358 | data.flags = MMC_DATA_READ; |
| 359 | |
| 360 | err = mmc_send_cmd(mmc, &cmd, &data); |
| 361 | if (err) |
| 362 | return err; |
| 363 | |
| 364 | if (memcmp(data_buf, tuning_block_pattern, size)) |
| 365 | return -EIO; |
| 366 | |
| 367 | return 0; |
| 368 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 369 | #endif |
Jean-Jacques Hiblot | 9815e3b | 2017-09-21 16:30:12 +0200 | [diff] [blame] | 370 | |
Sascha Silbe | ff8fef5 | 2013-06-14 13:07:25 +0200 | [diff] [blame] | 371 | 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] | 372 | lbaint_t blkcnt) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 373 | { |
| 374 | struct mmc_cmd cmd; |
| 375 | struct mmc_data data; |
| 376 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 377 | if (blkcnt > 1) |
| 378 | cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK; |
| 379 | else |
| 380 | cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 381 | |
| 382 | if (mmc->high_capacity) |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 383 | cmd.cmdarg = start; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 384 | else |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 385 | cmd.cmdarg = start * mmc->read_bl_len; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 386 | |
| 387 | cmd.resp_type = MMC_RSP_R1; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 388 | |
| 389 | data.dest = dst; |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 390 | data.blocks = blkcnt; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 391 | data.blocksize = mmc->read_bl_len; |
| 392 | data.flags = MMC_DATA_READ; |
| 393 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 394 | if (mmc_send_cmd(mmc, &cmd, &data)) |
| 395 | return 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 396 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 397 | if (blkcnt > 1) { |
| 398 | cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION; |
| 399 | cmd.cmdarg = 0; |
| 400 | cmd.resp_type = MMC_RSP_R1b; |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 401 | if (mmc_send_cmd(mmc, &cmd, NULL)) { |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 402 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 403 | pr_err("mmc fail to send stop cmd\n"); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 404 | #endif |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 405 | return 0; |
| 406 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 407 | } |
| 408 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 409 | return blkcnt; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 410 | } |
| 411 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 412 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 7dba0b9 | 2016-06-12 23:30:15 -0600 | [diff] [blame] | 413 | 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] | 414 | #else |
Simon Glass | 7dba0b9 | 2016-06-12 23:30:15 -0600 | [diff] [blame] | 415 | ulong mmc_bread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt, |
| 416 | void *dst) |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 417 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 418 | { |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 419 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 420 | struct blk_desc *block_dev = dev_get_uclass_platdata(dev); |
| 421 | #endif |
Simon Glass | bcce53d | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 422 | int dev_num = block_dev->devnum; |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 423 | int err; |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 424 | lbaint_t cur, blocks_todo = blkcnt; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 425 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 426 | if (blkcnt == 0) |
| 427 | return 0; |
| 428 | |
| 429 | struct mmc *mmc = find_mmc_device(dev_num); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 430 | if (!mmc) |
| 431 | return 0; |
| 432 | |
Marek Vasut | b5b838f | 2016-12-01 02:06:33 +0100 | [diff] [blame] | 433 | if (CONFIG_IS_ENABLED(MMC_TINY)) |
| 434 | err = mmc_switch_part(mmc, block_dev->hwpart); |
| 435 | else |
| 436 | err = blk_dselect_hwpart(block_dev, block_dev->hwpart); |
| 437 | |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 438 | if (err < 0) |
| 439 | return 0; |
| 440 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 441 | if ((start + blkcnt) > block_dev->lba) { |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 442 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 443 | pr_err("MMC: block number 0x" LBAF " exceeds max(0x" LBAF ")\n", |
| 444 | start + blkcnt, block_dev->lba); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 445 | #endif |
Lei Wen | d2bf29e | 2010-09-13 22:07:27 +0800 | [diff] [blame] | 446 | return 0; |
| 447 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 448 | |
Simon Glass | 1169299 | 2015-06-23 15:38:50 -0600 | [diff] [blame] | 449 | if (mmc_set_blocklen(mmc, mmc->read_bl_len)) { |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 450 | pr_debug("%s: Failed to set blocklen\n", __func__); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 451 | return 0; |
Simon Glass | 1169299 | 2015-06-23 15:38:50 -0600 | [diff] [blame] | 452 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 453 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 454 | do { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 455 | cur = (blocks_todo > mmc->cfg->b_max) ? |
| 456 | mmc->cfg->b_max : blocks_todo; |
Simon Glass | 1169299 | 2015-06-23 15:38:50 -0600 | [diff] [blame] | 457 | if (mmc_read_blocks(mmc, dst, start, cur) != cur) { |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 458 | pr_debug("%s: Failed to read blocks\n", __func__); |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 459 | return 0; |
Simon Glass | 1169299 | 2015-06-23 15:38:50 -0600 | [diff] [blame] | 460 | } |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 461 | blocks_todo -= cur; |
| 462 | start += cur; |
| 463 | dst += cur * mmc->read_bl_len; |
| 464 | } while (blocks_todo > 0); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 465 | |
| 466 | return blkcnt; |
| 467 | } |
| 468 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 469 | static int mmc_go_idle(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 470 | { |
| 471 | struct mmc_cmd cmd; |
| 472 | int err; |
| 473 | |
| 474 | udelay(1000); |
| 475 | |
| 476 | cmd.cmdidx = MMC_CMD_GO_IDLE_STATE; |
| 477 | cmd.cmdarg = 0; |
| 478 | cmd.resp_type = MMC_RSP_NONE; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 479 | |
| 480 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 481 | |
| 482 | if (err) |
| 483 | return err; |
| 484 | |
| 485 | udelay(2000); |
| 486 | |
| 487 | return 0; |
| 488 | } |
| 489 | |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 490 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 491 | static int mmc_switch_voltage(struct mmc *mmc, int signal_voltage) |
| 492 | { |
| 493 | struct mmc_cmd cmd; |
| 494 | int err = 0; |
| 495 | |
| 496 | /* |
| 497 | * Send CMD11 only if the request is to switch the card to |
| 498 | * 1.8V signalling. |
| 499 | */ |
| 500 | if (signal_voltage == MMC_SIGNAL_VOLTAGE_330) |
| 501 | return mmc_set_signal_voltage(mmc, signal_voltage); |
| 502 | |
| 503 | cmd.cmdidx = SD_CMD_SWITCH_UHS18V; |
| 504 | cmd.cmdarg = 0; |
| 505 | cmd.resp_type = MMC_RSP_R1; |
| 506 | |
| 507 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 508 | if (err) |
| 509 | return err; |
| 510 | |
| 511 | if (!mmc_host_is_spi(mmc) && (cmd.response[0] & MMC_STATUS_ERROR)) |
| 512 | return -EIO; |
| 513 | |
| 514 | /* |
| 515 | * The card should drive cmd and dat[0:3] low immediately |
| 516 | * after the response of cmd11, but wait 100 us to be sure |
| 517 | */ |
| 518 | err = mmc_wait_dat0(mmc, 0, 100); |
| 519 | if (err == -ENOSYS) |
| 520 | udelay(100); |
| 521 | else if (err) |
| 522 | return -ETIMEDOUT; |
| 523 | |
| 524 | /* |
| 525 | * During a signal voltage level switch, the clock must be gated |
| 526 | * for 5 ms according to the SD spec |
| 527 | */ |
Jaehoon Chung | 6511718 | 2018-01-26 19:25:29 +0900 | [diff] [blame] | 528 | mmc_set_clock(mmc, mmc->clock, MMC_CLK_DISABLE); |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 529 | |
| 530 | err = mmc_set_signal_voltage(mmc, signal_voltage); |
| 531 | if (err) |
| 532 | return err; |
| 533 | |
| 534 | /* Keep clock gated for at least 10 ms, though spec only says 5 ms */ |
| 535 | mdelay(10); |
Jaehoon Chung | 6511718 | 2018-01-26 19:25:29 +0900 | [diff] [blame] | 536 | mmc_set_clock(mmc, mmc->clock, MMC_CLK_ENABLE); |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 537 | |
| 538 | /* |
| 539 | * Failure to switch is indicated by the card holding |
| 540 | * dat[0:3] low. Wait for at least 1 ms according to spec |
| 541 | */ |
| 542 | err = mmc_wait_dat0(mmc, 1, 1000); |
| 543 | if (err == -ENOSYS) |
| 544 | udelay(1000); |
| 545 | else if (err) |
| 546 | return -ETIMEDOUT; |
| 547 | |
| 548 | return 0; |
| 549 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 550 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 551 | |
| 552 | static int sd_send_op_cond(struct mmc *mmc, bool uhs_en) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 553 | { |
| 554 | int timeout = 1000; |
| 555 | int err; |
| 556 | struct mmc_cmd cmd; |
| 557 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 558 | while (1) { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 559 | cmd.cmdidx = MMC_CMD_APP_CMD; |
| 560 | cmd.resp_type = MMC_RSP_R1; |
| 561 | cmd.cmdarg = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 562 | |
| 563 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 564 | |
| 565 | if (err) |
| 566 | return err; |
| 567 | |
| 568 | cmd.cmdidx = SD_CMD_APP_SEND_OP_COND; |
| 569 | cmd.resp_type = MMC_RSP_R3; |
Stefano Babic | 250de12 | 2010-01-20 18:20:39 +0100 | [diff] [blame] | 570 | |
| 571 | /* |
| 572 | * Most cards do not answer if some reserved bits |
| 573 | * in the ocr are set. However, Some controller |
| 574 | * can set bit 7 (reserved for low voltages), but |
| 575 | * how to manage low voltages SD card is not yet |
| 576 | * specified. |
| 577 | */ |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 578 | cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 : |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 579 | (mmc->cfg->voltages & 0xff8000); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 580 | |
| 581 | if (mmc->version == SD_VERSION_2) |
| 582 | cmd.cmdarg |= OCR_HCS; |
| 583 | |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 584 | if (uhs_en) |
| 585 | cmd.cmdarg |= OCR_S18R; |
| 586 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 587 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 588 | |
| 589 | if (err) |
| 590 | return err; |
| 591 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 592 | if (cmd.response[0] & OCR_BUSY) |
| 593 | break; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 594 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 595 | if (timeout-- <= 0) |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 596 | return -EOPNOTSUPP; |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 597 | |
| 598 | udelay(1000); |
| 599 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 600 | |
| 601 | if (mmc->version != SD_VERSION_2) |
| 602 | mmc->version = SD_VERSION_1_0; |
| 603 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 604 | if (mmc_host_is_spi(mmc)) { /* read OCR for spi */ |
| 605 | cmd.cmdidx = MMC_CMD_SPI_READ_OCR; |
| 606 | cmd.resp_type = MMC_RSP_R3; |
| 607 | cmd.cmdarg = 0; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 608 | |
| 609 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 610 | |
| 611 | if (err) |
| 612 | return err; |
| 613 | } |
| 614 | |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 615 | mmc->ocr = cmd.response[0]; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 616 | |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 617 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 618 | if (uhs_en && !(mmc_host_is_spi(mmc)) && (cmd.response[0] & 0x41000000) |
| 619 | == 0x41000000) { |
| 620 | err = mmc_switch_voltage(mmc, MMC_SIGNAL_VOLTAGE_180); |
| 621 | if (err) |
| 622 | return err; |
| 623 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 624 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 625 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 626 | mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS); |
| 627 | mmc->rca = 0; |
| 628 | |
| 629 | return 0; |
| 630 | } |
| 631 | |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 632 | 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] | 633 | { |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 634 | struct mmc_cmd cmd; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 635 | int err; |
| 636 | |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 637 | cmd.cmdidx = MMC_CMD_SEND_OP_COND; |
| 638 | cmd.resp_type = MMC_RSP_R3; |
| 639 | cmd.cmdarg = 0; |
Rob Herring | 5a20397 | 2015-03-23 17:56:59 -0500 | [diff] [blame] | 640 | if (use_arg && !mmc_host_is_spi(mmc)) |
| 641 | cmd.cmdarg = OCR_HCS | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 642 | (mmc->cfg->voltages & |
Andrew Gabbasov | a626c8d | 2015-03-19 07:44:03 -0500 | [diff] [blame] | 643 | (mmc->ocr & OCR_VOLTAGE_MASK)) | |
| 644 | (mmc->ocr & OCR_ACCESS_MODE); |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 645 | |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 646 | err = mmc_send_cmd(mmc, &cmd, NULL); |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 647 | if (err) |
| 648 | return err; |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 649 | mmc->ocr = cmd.response[0]; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 650 | return 0; |
| 651 | } |
| 652 | |
Jeroen Hofstee | 750121c | 2014-07-12 21:24:08 +0200 | [diff] [blame] | 653 | static int mmc_send_op_cond(struct mmc *mmc) |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 654 | { |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 655 | int err, i; |
| 656 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 657 | /* Some cards seem to need this */ |
| 658 | mmc_go_idle(mmc); |
| 659 | |
Raffaele Recalcati | 31cacba | 2011-03-11 02:01:13 +0000 | [diff] [blame] | 660 | /* Asking to the card its capabilities */ |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 661 | for (i = 0; i < 2; i++) { |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 662 | err = mmc_send_op_cond_iter(mmc, i != 0); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 663 | if (err) |
| 664 | return err; |
| 665 | |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 666 | /* exit if not busy (flag seems to be inverted) */ |
Andrew Gabbasov | a626c8d | 2015-03-19 07:44:03 -0500 | [diff] [blame] | 667 | if (mmc->ocr & OCR_BUSY) |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 668 | break; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 669 | } |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 670 | mmc->op_cond_pending = 1; |
| 671 | return 0; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 672 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 673 | |
Jeroen Hofstee | 750121c | 2014-07-12 21:24:08 +0200 | [diff] [blame] | 674 | static int mmc_complete_op_cond(struct mmc *mmc) |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 675 | { |
| 676 | struct mmc_cmd cmd; |
| 677 | int timeout = 1000; |
Vipul Kumar | 36332b6 | 2018-05-03 12:20:54 +0530 | [diff] [blame] | 678 | ulong start; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 679 | int err; |
| 680 | |
| 681 | mmc->op_cond_pending = 0; |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 682 | if (!(mmc->ocr & OCR_BUSY)) { |
Yangbo Lu | d188b11 | 2016-08-02 15:33:18 +0800 | [diff] [blame] | 683 | /* Some cards seem to need this */ |
| 684 | mmc_go_idle(mmc); |
| 685 | |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 686 | start = get_timer(0); |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 687 | while (1) { |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 688 | err = mmc_send_op_cond_iter(mmc, 1); |
| 689 | if (err) |
| 690 | return err; |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 691 | if (mmc->ocr & OCR_BUSY) |
| 692 | break; |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 693 | if (get_timer(start) > timeout) |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 694 | return -EOPNOTSUPP; |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 695 | udelay(100); |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 696 | } |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 697 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 698 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 699 | if (mmc_host_is_spi(mmc)) { /* read OCR for spi */ |
| 700 | cmd.cmdidx = MMC_CMD_SPI_READ_OCR; |
| 701 | cmd.resp_type = MMC_RSP_R3; |
| 702 | cmd.cmdarg = 0; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 703 | |
| 704 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 705 | |
| 706 | if (err) |
| 707 | return err; |
Andrew Gabbasov | a626c8d | 2015-03-19 07:44:03 -0500 | [diff] [blame] | 708 | |
| 709 | mmc->ocr = cmd.response[0]; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 710 | } |
| 711 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 712 | mmc->version = MMC_VERSION_UNKNOWN; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 713 | |
| 714 | mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS); |
Stephen Warren | def816a | 2014-01-30 16:11:12 -0700 | [diff] [blame] | 715 | mmc->rca = 1; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 716 | |
| 717 | return 0; |
| 718 | } |
| 719 | |
| 720 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 721 | static int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 722 | { |
| 723 | struct mmc_cmd cmd; |
| 724 | struct mmc_data data; |
| 725 | int err; |
| 726 | |
| 727 | /* Get the Card Status Register */ |
| 728 | cmd.cmdidx = MMC_CMD_SEND_EXT_CSD; |
| 729 | cmd.resp_type = MMC_RSP_R1; |
| 730 | cmd.cmdarg = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 731 | |
Yoshihiro Shimoda | cdfd1ac | 2012-06-07 19:09:11 +0000 | [diff] [blame] | 732 | data.dest = (char *)ext_csd; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 733 | data.blocks = 1; |
Simon Glass | 8bfa195 | 2013-04-03 08:54:30 +0000 | [diff] [blame] | 734 | data.blocksize = MMC_MAX_BLOCK_LEN; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 735 | data.flags = MMC_DATA_READ; |
| 736 | |
| 737 | err = mmc_send_cmd(mmc, &cmd, &data); |
| 738 | |
| 739 | return err; |
| 740 | } |
| 741 | |
Marek Vasut | 6892550 | 2019-02-06 11:34:27 +0100 | [diff] [blame] | 742 | static int __mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value, |
| 743 | bool send_status) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 744 | { |
| 745 | struct mmc_cmd cmd; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 746 | int timeout = 1000; |
Maxime Ripard | a9003dc | 2016-11-04 16:18:08 +0100 | [diff] [blame] | 747 | int retries = 3; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 748 | int ret; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 749 | |
| 750 | cmd.cmdidx = MMC_CMD_SWITCH; |
| 751 | cmd.resp_type = MMC_RSP_R1b; |
| 752 | cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) | |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 753 | (index << 16) | |
| 754 | (value << 8); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 755 | |
Maxime Ripard | a9003dc | 2016-11-04 16:18:08 +0100 | [diff] [blame] | 756 | while (retries > 0) { |
| 757 | ret = mmc_send_cmd(mmc, &cmd, NULL); |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 758 | |
Marek Vasut | 6892550 | 2019-02-06 11:34:27 +0100 | [diff] [blame] | 759 | if (ret) { |
| 760 | retries--; |
| 761 | continue; |
Maxime Ripard | a9003dc | 2016-11-04 16:18:08 +0100 | [diff] [blame] | 762 | } |
| 763 | |
Marek Vasut | 6892550 | 2019-02-06 11:34:27 +0100 | [diff] [blame] | 764 | if (!send_status) { |
| 765 | mdelay(50); |
| 766 | return 0; |
| 767 | } |
| 768 | |
| 769 | /* Waiting for the ready status */ |
Jean-Jacques Hiblot | 863d100 | 2019-07-02 10:53:52 +0200 | [diff] [blame^] | 770 | return mmc_poll_for_busy(mmc, timeout); |
Maxime Ripard | a9003dc | 2016-11-04 16:18:08 +0100 | [diff] [blame] | 771 | } |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 772 | |
| 773 | return ret; |
| 774 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 775 | } |
| 776 | |
Marek Vasut | 6892550 | 2019-02-06 11:34:27 +0100 | [diff] [blame] | 777 | int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value) |
| 778 | { |
| 779 | return __mmc_switch(mmc, set, index, value, true); |
| 780 | } |
| 781 | |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 782 | #if !CONFIG_IS_ENABLED(MMC_TINY) |
Marek Vasut | b9a2a0e | 2019-01-03 21:19:24 +0100 | [diff] [blame] | 783 | static int mmc_set_card_speed(struct mmc *mmc, enum bus_mode mode, |
| 784 | bool hsdowngrade) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 785 | { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 786 | int err; |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 787 | int speed_bits; |
| 788 | |
| 789 | ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN); |
| 790 | |
| 791 | switch (mode) { |
| 792 | case MMC_HS: |
| 793 | case MMC_HS_52: |
| 794 | case MMC_DDR_52: |
| 795 | speed_bits = EXT_CSD_TIMING_HS; |
Kishon Vijay Abraham I | 634d484 | 2017-09-21 16:30:06 +0200 | [diff] [blame] | 796 | break; |
Jean-Jacques Hiblot | baef207 | 2018-01-04 15:23:30 +0100 | [diff] [blame] | 797 | #if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) |
Kishon Vijay Abraham I | 634d484 | 2017-09-21 16:30:06 +0200 | [diff] [blame] | 798 | case MMC_HS_200: |
| 799 | speed_bits = EXT_CSD_TIMING_HS200; |
| 800 | break; |
Jean-Jacques Hiblot | baef207 | 2018-01-04 15:23:30 +0100 | [diff] [blame] | 801 | #endif |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 802 | #if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
| 803 | case MMC_HS_400: |
| 804 | speed_bits = EXT_CSD_TIMING_HS400; |
| 805 | break; |
| 806 | #endif |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 807 | case MMC_LEGACY: |
| 808 | speed_bits = EXT_CSD_TIMING_LEGACY; |
| 809 | break; |
| 810 | default: |
| 811 | return -EINVAL; |
| 812 | } |
Marek Vasut | 6892550 | 2019-02-06 11:34:27 +0100 | [diff] [blame] | 813 | |
| 814 | err = __mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING, |
| 815 | speed_bits, !hsdowngrade); |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 816 | if (err) |
| 817 | return err; |
| 818 | |
Marek Vasut | b9a2a0e | 2019-01-03 21:19:24 +0100 | [diff] [blame] | 819 | #if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \ |
| 820 | CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
| 821 | /* |
| 822 | * In case the eMMC is in HS200/HS400 mode and we are downgrading |
| 823 | * to HS mode, the card clock are still running much faster than |
| 824 | * the supported HS mode clock, so we can not reliably read out |
| 825 | * Extended CSD. Reconfigure the controller to run at HS mode. |
| 826 | */ |
| 827 | if (hsdowngrade) { |
| 828 | mmc_select_mode(mmc, MMC_HS); |
| 829 | mmc_set_clock(mmc, mmc_mode2freq(mmc, MMC_HS), false); |
| 830 | } |
| 831 | #endif |
| 832 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 833 | if ((mode == MMC_HS) || (mode == MMC_HS_52)) { |
| 834 | /* Now check to see that it worked */ |
| 835 | err = mmc_send_ext_csd(mmc, test_csd); |
| 836 | if (err) |
| 837 | return err; |
| 838 | |
| 839 | /* No high-speed support */ |
| 840 | if (!test_csd[EXT_CSD_HS_TIMING]) |
| 841 | return -ENOTSUPP; |
| 842 | } |
| 843 | |
| 844 | return 0; |
| 845 | } |
| 846 | |
| 847 | static int mmc_get_capabilities(struct mmc *mmc) |
| 848 | { |
| 849 | u8 *ext_csd = mmc->ext_csd; |
| 850 | char cardtype; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 851 | |
Jean-Jacques Hiblot | 00e446f | 2017-11-30 17:43:56 +0100 | [diff] [blame] | 852 | mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(MMC_LEGACY); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 853 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 854 | if (mmc_host_is_spi(mmc)) |
| 855 | return 0; |
| 856 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 857 | /* Only version 4 supports high-speed */ |
| 858 | if (mmc->version < MMC_VERSION_4) |
| 859 | return 0; |
| 860 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 861 | if (!ext_csd) { |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 862 | pr_err("No ext_csd found!\n"); /* this should enver happen */ |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 863 | return -ENOTSUPP; |
| 864 | } |
| 865 | |
Andrew Gabbasov | fc5b32f | 2014-12-25 10:22:25 -0600 | [diff] [blame] | 866 | mmc->card_caps |= MMC_MODE_4BIT | MMC_MODE_8BIT; |
| 867 | |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 868 | cardtype = ext_csd[EXT_CSD_CARD_TYPE]; |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 869 | mmc->cardtype = cardtype; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 870 | |
Jean-Jacques Hiblot | baef207 | 2018-01-04 15:23:30 +0100 | [diff] [blame] | 871 | #if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) |
Kishon Vijay Abraham I | 634d484 | 2017-09-21 16:30:06 +0200 | [diff] [blame] | 872 | if (cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V | |
| 873 | EXT_CSD_CARD_TYPE_HS200_1_8V)) { |
| 874 | mmc->card_caps |= MMC_MODE_HS200; |
| 875 | } |
Jean-Jacques Hiblot | baef207 | 2018-01-04 15:23:30 +0100 | [diff] [blame] | 876 | #endif |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 877 | #if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
| 878 | if (cardtype & (EXT_CSD_CARD_TYPE_HS400_1_2V | |
| 879 | EXT_CSD_CARD_TYPE_HS400_1_8V)) { |
| 880 | mmc->card_caps |= MMC_MODE_HS400; |
| 881 | } |
| 882 | #endif |
Jaehoon Chung | d22e3d4 | 2014-05-16 13:59:54 +0900 | [diff] [blame] | 883 | if (cardtype & EXT_CSD_CARD_TYPE_52) { |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 884 | if (cardtype & EXT_CSD_CARD_TYPE_DDR_52) |
Jaehoon Chung | d22e3d4 | 2014-05-16 13:59:54 +0900 | [diff] [blame] | 885 | mmc->card_caps |= MMC_MODE_DDR_52MHz; |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 886 | mmc->card_caps |= MMC_MODE_HS_52MHz; |
Jaehoon Chung | d22e3d4 | 2014-05-16 13:59:54 +0900 | [diff] [blame] | 887 | } |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 888 | if (cardtype & EXT_CSD_CARD_TYPE_26) |
| 889 | mmc->card_caps |= MMC_MODE_HS; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 890 | |
| 891 | return 0; |
| 892 | } |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 893 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 894 | |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 895 | static int mmc_set_capacity(struct mmc *mmc, int part_num) |
| 896 | { |
| 897 | switch (part_num) { |
| 898 | case 0: |
| 899 | mmc->capacity = mmc->capacity_user; |
| 900 | break; |
| 901 | case 1: |
| 902 | case 2: |
| 903 | mmc->capacity = mmc->capacity_boot; |
| 904 | break; |
| 905 | case 3: |
| 906 | mmc->capacity = mmc->capacity_rpmb; |
| 907 | break; |
| 908 | case 4: |
| 909 | case 5: |
| 910 | case 6: |
| 911 | case 7: |
| 912 | mmc->capacity = mmc->capacity_gp[part_num - 4]; |
| 913 | break; |
| 914 | default: |
| 915 | return -1; |
| 916 | } |
| 917 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 918 | 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] | 919 | |
| 920 | return 0; |
| 921 | } |
| 922 | |
Marek Vasut | 72119aa | 2019-05-31 15:22:44 +0200 | [diff] [blame] | 923 | #if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 924 | static int mmc_boot_part_access_chk(struct mmc *mmc, unsigned int part_num) |
| 925 | { |
| 926 | int forbidden = 0; |
| 927 | bool change = false; |
| 928 | |
| 929 | if (part_num & PART_ACCESS_MASK) |
Marek Vasut | 72119aa | 2019-05-31 15:22:44 +0200 | [diff] [blame] | 930 | forbidden = MMC_CAP(MMC_HS_200) | MMC_CAP(MMC_HS_400); |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 931 | |
| 932 | if (MMC_CAP(mmc->selected_mode) & forbidden) { |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 933 | pr_debug("selected mode (%s) is forbidden for part %d\n", |
| 934 | mmc_mode_name(mmc->selected_mode), part_num); |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 935 | change = true; |
| 936 | } else if (mmc->selected_mode != mmc->best_mode) { |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 937 | pr_debug("selected mode is not optimal\n"); |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 938 | change = true; |
| 939 | } |
| 940 | |
| 941 | if (change) |
| 942 | return mmc_select_mode_and_width(mmc, |
| 943 | mmc->card_caps & ~forbidden); |
| 944 | |
| 945 | return 0; |
| 946 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 947 | #else |
| 948 | static inline int mmc_boot_part_access_chk(struct mmc *mmc, |
| 949 | unsigned int part_num) |
| 950 | { |
| 951 | return 0; |
| 952 | } |
| 953 | #endif |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 954 | |
Simon Glass | 7dba0b9 | 2016-06-12 23:30:15 -0600 | [diff] [blame] | 955 | int mmc_switch_part(struct mmc *mmc, unsigned int part_num) |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 956 | { |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 957 | int ret; |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 958 | |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 959 | ret = mmc_boot_part_access_chk(mmc, part_num); |
| 960 | if (ret) |
| 961 | return ret; |
| 962 | |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 963 | ret = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONF, |
| 964 | (mmc->part_config & ~PART_ACCESS_MASK) |
| 965 | | (part_num & PART_ACCESS_MASK)); |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 966 | |
Peter Bigot | 6dc93e7 | 2014-09-02 18:31:23 -0500 | [diff] [blame] | 967 | /* |
| 968 | * Set the capacity if the switch succeeded or was intended |
| 969 | * to return to representing the raw device. |
| 970 | */ |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 971 | if ((ret == 0) || ((ret == -ENODEV) && (part_num == 0))) { |
Peter Bigot | 6dc93e7 | 2014-09-02 18:31:23 -0500 | [diff] [blame] | 972 | ret = mmc_set_capacity(mmc, part_num); |
Simon Glass | fdbb139 | 2016-05-01 13:52:37 -0600 | [diff] [blame] | 973 | mmc_get_blk_desc(mmc)->hwpart = part_num; |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 974 | } |
Peter Bigot | 6dc93e7 | 2014-09-02 18:31:23 -0500 | [diff] [blame] | 975 | |
| 976 | return ret; |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 977 | } |
| 978 | |
Jean-Jacques Hiblot | cf17789 | 2017-11-30 17:44:02 +0100 | [diff] [blame] | 979 | #if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING) |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 980 | int mmc_hwpart_config(struct mmc *mmc, |
| 981 | const struct mmc_hwpart_conf *conf, |
| 982 | enum mmc_hwpart_conf_mode mode) |
| 983 | { |
| 984 | u8 part_attrs = 0; |
| 985 | u32 enh_size_mult; |
| 986 | u32 enh_start_addr; |
| 987 | u32 gp_size_mult[4]; |
| 988 | u32 max_enh_size_mult; |
| 989 | u32 tot_enh_size_mult = 0; |
Diego Santa Cruz | 8dda5b0e | 2014-12-23 10:50:31 +0100 | [diff] [blame] | 990 | u8 wr_rel_set; |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 991 | int i, pidx, err; |
| 992 | ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN); |
| 993 | |
| 994 | if (mode < MMC_HWPART_CONF_CHECK || mode > MMC_HWPART_CONF_COMPLETE) |
| 995 | return -EINVAL; |
| 996 | |
| 997 | if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) { |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 998 | pr_err("eMMC >= 4.4 required for enhanced user data area\n"); |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 999 | return -EMEDIUMTYPE; |
| 1000 | } |
| 1001 | |
| 1002 | if (!(mmc->part_support & PART_SUPPORT)) { |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 1003 | pr_err("Card does not support partitioning\n"); |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1004 | return -EMEDIUMTYPE; |
| 1005 | } |
| 1006 | |
| 1007 | if (!mmc->hc_wp_grp_size) { |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 1008 | pr_err("Card does not define HC WP group size\n"); |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1009 | return -EMEDIUMTYPE; |
| 1010 | } |
| 1011 | |
| 1012 | /* check partition alignment and total enhanced size */ |
| 1013 | if (conf->user.enh_size) { |
| 1014 | if (conf->user.enh_size % mmc->hc_wp_grp_size || |
| 1015 | conf->user.enh_start % mmc->hc_wp_grp_size) { |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 1016 | pr_err("User data enhanced area not HC WP group " |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1017 | "size aligned\n"); |
| 1018 | return -EINVAL; |
| 1019 | } |
| 1020 | part_attrs |= EXT_CSD_ENH_USR; |
| 1021 | enh_size_mult = conf->user.enh_size / mmc->hc_wp_grp_size; |
| 1022 | if (mmc->high_capacity) { |
| 1023 | enh_start_addr = conf->user.enh_start; |
| 1024 | } else { |
| 1025 | enh_start_addr = (conf->user.enh_start << 9); |
| 1026 | } |
| 1027 | } else { |
| 1028 | enh_size_mult = 0; |
| 1029 | enh_start_addr = 0; |
| 1030 | } |
| 1031 | tot_enh_size_mult += enh_size_mult; |
| 1032 | |
| 1033 | for (pidx = 0; pidx < 4; pidx++) { |
| 1034 | if (conf->gp_part[pidx].size % mmc->hc_wp_grp_size) { |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 1035 | pr_err("GP%i partition not HC WP group size " |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1036 | "aligned\n", pidx+1); |
| 1037 | return -EINVAL; |
| 1038 | } |
| 1039 | gp_size_mult[pidx] = conf->gp_part[pidx].size / mmc->hc_wp_grp_size; |
| 1040 | if (conf->gp_part[pidx].size && conf->gp_part[pidx].enhanced) { |
| 1041 | part_attrs |= EXT_CSD_ENH_GP(pidx); |
| 1042 | tot_enh_size_mult += gp_size_mult[pidx]; |
| 1043 | } |
| 1044 | } |
| 1045 | |
| 1046 | if (part_attrs && ! (mmc->part_support & ENHNCD_SUPPORT)) { |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 1047 | pr_err("Card does not support enhanced attribute\n"); |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1048 | return -EMEDIUMTYPE; |
| 1049 | } |
| 1050 | |
| 1051 | err = mmc_send_ext_csd(mmc, ext_csd); |
| 1052 | if (err) |
| 1053 | return err; |
| 1054 | |
| 1055 | max_enh_size_mult = |
| 1056 | (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+2] << 16) + |
| 1057 | (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+1] << 8) + |
| 1058 | ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT]; |
| 1059 | if (tot_enh_size_mult > max_enh_size_mult) { |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 1060 | pr_err("Total enhanced size exceeds maximum (%u > %u)\n", |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1061 | tot_enh_size_mult, max_enh_size_mult); |
| 1062 | return -EMEDIUMTYPE; |
| 1063 | } |
| 1064 | |
Diego Santa Cruz | 8dda5b0e | 2014-12-23 10:50:31 +0100 | [diff] [blame] | 1065 | /* The default value of EXT_CSD_WR_REL_SET is device |
| 1066 | * dependent, the values can only be changed if the |
| 1067 | * EXT_CSD_HS_CTRL_REL bit is set. The values can be |
| 1068 | * changed only once and before partitioning is completed. */ |
| 1069 | wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET]; |
| 1070 | if (conf->user.wr_rel_change) { |
| 1071 | if (conf->user.wr_rel_set) |
| 1072 | wr_rel_set |= EXT_CSD_WR_DATA_REL_USR; |
| 1073 | else |
| 1074 | wr_rel_set &= ~EXT_CSD_WR_DATA_REL_USR; |
| 1075 | } |
| 1076 | for (pidx = 0; pidx < 4; pidx++) { |
| 1077 | if (conf->gp_part[pidx].wr_rel_change) { |
| 1078 | if (conf->gp_part[pidx].wr_rel_set) |
| 1079 | wr_rel_set |= EXT_CSD_WR_DATA_REL_GP(pidx); |
| 1080 | else |
| 1081 | wr_rel_set &= ~EXT_CSD_WR_DATA_REL_GP(pidx); |
| 1082 | } |
| 1083 | } |
| 1084 | |
| 1085 | if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET] && |
| 1086 | !(ext_csd[EXT_CSD_WR_REL_PARAM] & EXT_CSD_HS_CTRL_REL)) { |
| 1087 | puts("Card does not support host controlled partition write " |
| 1088 | "reliability settings\n"); |
| 1089 | return -EMEDIUMTYPE; |
| 1090 | } |
| 1091 | |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1092 | if (ext_csd[EXT_CSD_PARTITION_SETTING] & |
| 1093 | EXT_CSD_PARTITION_SETTING_COMPLETED) { |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 1094 | pr_err("Card already partitioned\n"); |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1095 | return -EPERM; |
| 1096 | } |
| 1097 | |
| 1098 | if (mode == MMC_HWPART_CONF_CHECK) |
| 1099 | return 0; |
| 1100 | |
| 1101 | /* Partitioning requires high-capacity size definitions */ |
| 1102 | if (!(ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01)) { |
| 1103 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1104 | EXT_CSD_ERASE_GROUP_DEF, 1); |
| 1105 | |
| 1106 | if (err) |
| 1107 | return err; |
| 1108 | |
| 1109 | ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1; |
| 1110 | |
| 1111 | /* update erase group size to be high-capacity */ |
| 1112 | mmc->erase_grp_size = |
| 1113 | ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024; |
| 1114 | |
| 1115 | } |
| 1116 | |
| 1117 | /* all OK, write the configuration */ |
| 1118 | for (i = 0; i < 4; i++) { |
| 1119 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1120 | EXT_CSD_ENH_START_ADDR+i, |
| 1121 | (enh_start_addr >> (i*8)) & 0xFF); |
| 1122 | if (err) |
| 1123 | return err; |
| 1124 | } |
| 1125 | for (i = 0; i < 3; i++) { |
| 1126 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1127 | EXT_CSD_ENH_SIZE_MULT+i, |
| 1128 | (enh_size_mult >> (i*8)) & 0xFF); |
| 1129 | if (err) |
| 1130 | return err; |
| 1131 | } |
| 1132 | for (pidx = 0; pidx < 4; pidx++) { |
| 1133 | for (i = 0; i < 3; i++) { |
| 1134 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1135 | EXT_CSD_GP_SIZE_MULT+pidx*3+i, |
| 1136 | (gp_size_mult[pidx] >> (i*8)) & 0xFF); |
| 1137 | if (err) |
| 1138 | return err; |
| 1139 | } |
| 1140 | } |
| 1141 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1142 | EXT_CSD_PARTITIONS_ATTRIBUTE, part_attrs); |
| 1143 | if (err) |
| 1144 | return err; |
| 1145 | |
| 1146 | if (mode == MMC_HWPART_CONF_SET) |
| 1147 | return 0; |
| 1148 | |
Diego Santa Cruz | 8dda5b0e | 2014-12-23 10:50:31 +0100 | [diff] [blame] | 1149 | /* The WR_REL_SET is a write-once register but shall be |
| 1150 | * written before setting PART_SETTING_COMPLETED. As it is |
| 1151 | * write-once we can only write it when completing the |
| 1152 | * partitioning. */ |
| 1153 | if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET]) { |
| 1154 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1155 | EXT_CSD_WR_REL_SET, wr_rel_set); |
| 1156 | if (err) |
| 1157 | return err; |
| 1158 | } |
| 1159 | |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1160 | /* Setting PART_SETTING_COMPLETED confirms the partition |
| 1161 | * configuration but it only becomes effective after power |
| 1162 | * cycle, so we do not adjust the partition related settings |
| 1163 | * in the mmc struct. */ |
| 1164 | |
| 1165 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1166 | EXT_CSD_PARTITION_SETTING, |
| 1167 | EXT_CSD_PARTITION_SETTING_COMPLETED); |
| 1168 | if (err) |
| 1169 | return err; |
| 1170 | |
| 1171 | return 0; |
| 1172 | } |
Jean-Jacques Hiblot | cf17789 | 2017-11-30 17:44:02 +0100 | [diff] [blame] | 1173 | #endif |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 1174 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 1175 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Thierry Reding | 48972d9 | 2012-01-02 01:15:37 +0000 | [diff] [blame] | 1176 | int mmc_getcd(struct mmc *mmc) |
| 1177 | { |
| 1178 | int cd; |
| 1179 | |
| 1180 | cd = board_mmc_getcd(mmc); |
| 1181 | |
Peter Korsgaard | d4e1da4 | 2013-03-21 04:00:03 +0000 | [diff] [blame] | 1182 | if (cd < 0) { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 1183 | if (mmc->cfg->ops->getcd) |
| 1184 | cd = mmc->cfg->ops->getcd(mmc); |
Peter Korsgaard | d4e1da4 | 2013-03-21 04:00:03 +0000 | [diff] [blame] | 1185 | else |
| 1186 | cd = 1; |
| 1187 | } |
Thierry Reding | 48972d9 | 2012-01-02 01:15:37 +0000 | [diff] [blame] | 1188 | |
| 1189 | return cd; |
| 1190 | } |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 1191 | #endif |
Thierry Reding | 48972d9 | 2012-01-02 01:15:37 +0000 | [diff] [blame] | 1192 | |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 1193 | #if !CONFIG_IS_ENABLED(MMC_TINY) |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 1194 | 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] | 1195 | { |
| 1196 | struct mmc_cmd cmd; |
| 1197 | struct mmc_data data; |
| 1198 | |
| 1199 | /* Switch the frequency */ |
| 1200 | cmd.cmdidx = SD_CMD_SWITCH_FUNC; |
| 1201 | cmd.resp_type = MMC_RSP_R1; |
| 1202 | cmd.cmdarg = (mode << 31) | 0xffffff; |
| 1203 | cmd.cmdarg &= ~(0xf << (group * 4)); |
| 1204 | cmd.cmdarg |= value << (group * 4); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1205 | |
| 1206 | data.dest = (char *)resp; |
| 1207 | data.blocksize = 64; |
| 1208 | data.blocks = 1; |
| 1209 | data.flags = MMC_DATA_READ; |
| 1210 | |
| 1211 | return mmc_send_cmd(mmc, &cmd, &data); |
| 1212 | } |
| 1213 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1214 | static int sd_get_capabilities(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1215 | { |
| 1216 | int err; |
| 1217 | struct mmc_cmd cmd; |
Suniel Mahesh | 18e7c8f | 2017-10-05 11:32:00 +0530 | [diff] [blame] | 1218 | ALLOC_CACHE_ALIGN_BUFFER(__be32, scr, 2); |
| 1219 | ALLOC_CACHE_ALIGN_BUFFER(__be32, switch_status, 16); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1220 | struct mmc_data data; |
| 1221 | int timeout; |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1222 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1223 | u32 sd3_bus_mode; |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1224 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1225 | |
Jean-Jacques Hiblot | 00e446f | 2017-11-30 17:43:56 +0100 | [diff] [blame] | 1226 | mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(SD_LEGACY); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1227 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1228 | if (mmc_host_is_spi(mmc)) |
| 1229 | return 0; |
| 1230 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1231 | /* Read the SCR to find out if this card supports higher speeds */ |
| 1232 | cmd.cmdidx = MMC_CMD_APP_CMD; |
| 1233 | cmd.resp_type = MMC_RSP_R1; |
| 1234 | cmd.cmdarg = mmc->rca << 16; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1235 | |
| 1236 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1237 | |
| 1238 | if (err) |
| 1239 | return err; |
| 1240 | |
| 1241 | cmd.cmdidx = SD_CMD_APP_SEND_SCR; |
| 1242 | cmd.resp_type = MMC_RSP_R1; |
| 1243 | cmd.cmdarg = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1244 | |
| 1245 | timeout = 3; |
| 1246 | |
| 1247 | retry_scr: |
Anton staaf | f781dd3 | 2011-10-03 13:54:59 +0000 | [diff] [blame] | 1248 | data.dest = (char *)scr; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1249 | data.blocksize = 8; |
| 1250 | data.blocks = 1; |
| 1251 | data.flags = MMC_DATA_READ; |
| 1252 | |
| 1253 | err = mmc_send_cmd(mmc, &cmd, &data); |
| 1254 | |
| 1255 | if (err) { |
| 1256 | if (timeout--) |
| 1257 | goto retry_scr; |
| 1258 | |
| 1259 | return err; |
| 1260 | } |
| 1261 | |
Yauhen Kharuzhy | 4e3d89b | 2009-05-07 00:43:30 +0300 | [diff] [blame] | 1262 | mmc->scr[0] = __be32_to_cpu(scr[0]); |
| 1263 | mmc->scr[1] = __be32_to_cpu(scr[1]); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1264 | |
| 1265 | switch ((mmc->scr[0] >> 24) & 0xf) { |
Bin Meng | 53e8e40 | 2016-03-17 21:53:13 -0700 | [diff] [blame] | 1266 | case 0: |
| 1267 | mmc->version = SD_VERSION_1_0; |
| 1268 | break; |
| 1269 | case 1: |
| 1270 | mmc->version = SD_VERSION_1_10; |
| 1271 | break; |
| 1272 | case 2: |
| 1273 | mmc->version = SD_VERSION_2; |
| 1274 | if ((mmc->scr[0] >> 15) & 0x1) |
| 1275 | mmc->version = SD_VERSION_3; |
| 1276 | break; |
| 1277 | default: |
| 1278 | mmc->version = SD_VERSION_1_0; |
| 1279 | break; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1280 | } |
| 1281 | |
Alagu Sankar | b44c708 | 2010-05-12 15:08:24 +0530 | [diff] [blame] | 1282 | if (mmc->scr[0] & SD_DATA_4BIT) |
| 1283 | mmc->card_caps |= MMC_MODE_4BIT; |
| 1284 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1285 | /* Version 1.0 doesn't support switching */ |
| 1286 | if (mmc->version == SD_VERSION_1_0) |
| 1287 | return 0; |
| 1288 | |
| 1289 | timeout = 4; |
| 1290 | while (timeout--) { |
| 1291 | err = sd_switch(mmc, SD_SWITCH_CHECK, 0, 1, |
Anton staaf | f781dd3 | 2011-10-03 13:54:59 +0000 | [diff] [blame] | 1292 | (u8 *)switch_status); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1293 | |
| 1294 | if (err) |
| 1295 | return err; |
| 1296 | |
| 1297 | /* The high-speed function is busy. Try again */ |
Yauhen Kharuzhy | 4e3d89b | 2009-05-07 00:43:30 +0300 | [diff] [blame] | 1298 | if (!(__be32_to_cpu(switch_status[7]) & SD_HIGHSPEED_BUSY)) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1299 | break; |
| 1300 | } |
| 1301 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1302 | /* If high-speed isn't supported, we return */ |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1303 | if (__be32_to_cpu(switch_status[3]) & SD_HIGHSPEED_SUPPORTED) |
| 1304 | mmc->card_caps |= MMC_CAP(SD_HS); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1305 | |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1306 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1307 | /* Version before 3.0 don't support UHS modes */ |
| 1308 | if (mmc->version < SD_VERSION_3) |
| 1309 | return 0; |
| 1310 | |
| 1311 | sd3_bus_mode = __be32_to_cpu(switch_status[3]) >> 16 & 0x1f; |
| 1312 | if (sd3_bus_mode & SD_MODE_UHS_SDR104) |
| 1313 | mmc->card_caps |= MMC_CAP(UHS_SDR104); |
| 1314 | if (sd3_bus_mode & SD_MODE_UHS_SDR50) |
| 1315 | mmc->card_caps |= MMC_CAP(UHS_SDR50); |
| 1316 | if (sd3_bus_mode & SD_MODE_UHS_SDR25) |
| 1317 | mmc->card_caps |= MMC_CAP(UHS_SDR25); |
| 1318 | if (sd3_bus_mode & SD_MODE_UHS_SDR12) |
| 1319 | mmc->card_caps |= MMC_CAP(UHS_SDR12); |
| 1320 | if (sd3_bus_mode & SD_MODE_UHS_DDR50) |
| 1321 | mmc->card_caps |= MMC_CAP(UHS_DDR50); |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1322 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1323 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1324 | return 0; |
| 1325 | } |
| 1326 | |
| 1327 | static int sd_set_card_speed(struct mmc *mmc, enum bus_mode mode) |
| 1328 | { |
| 1329 | int err; |
| 1330 | |
| 1331 | ALLOC_CACHE_ALIGN_BUFFER(uint, switch_status, 16); |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1332 | int speed; |
Macpaul Lin | 2c3fbf4 | 2011-11-28 16:31:09 +0000 | [diff] [blame] | 1333 | |
Marek Vasut | cf34576 | 2018-11-18 03:25:08 +0100 | [diff] [blame] | 1334 | /* SD version 1.00 and 1.01 does not support CMD 6 */ |
| 1335 | if (mmc->version == SD_VERSION_1_0) |
| 1336 | return 0; |
| 1337 | |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1338 | switch (mode) { |
| 1339 | case SD_LEGACY: |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1340 | speed = UHS_SDR12_BUS_SPEED; |
| 1341 | break; |
| 1342 | case SD_HS: |
Jean-Jacques Hiblot | baef207 | 2018-01-04 15:23:30 +0100 | [diff] [blame] | 1343 | speed = HIGH_SPEED_BUS_SPEED; |
| 1344 | break; |
| 1345 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) |
| 1346 | case UHS_SDR12: |
| 1347 | speed = UHS_SDR12_BUS_SPEED; |
| 1348 | break; |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1349 | case UHS_SDR25: |
| 1350 | speed = UHS_SDR25_BUS_SPEED; |
| 1351 | break; |
| 1352 | case UHS_SDR50: |
| 1353 | speed = UHS_SDR50_BUS_SPEED; |
| 1354 | break; |
| 1355 | case UHS_DDR50: |
| 1356 | speed = UHS_DDR50_BUS_SPEED; |
| 1357 | break; |
| 1358 | case UHS_SDR104: |
| 1359 | speed = UHS_SDR104_BUS_SPEED; |
| 1360 | break; |
Jean-Jacques Hiblot | baef207 | 2018-01-04 15:23:30 +0100 | [diff] [blame] | 1361 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1362 | default: |
| 1363 | return -EINVAL; |
| 1364 | } |
| 1365 | |
| 1366 | err = sd_switch(mmc, SD_SWITCH_SWITCH, 0, speed, (u8 *)switch_status); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1367 | if (err) |
| 1368 | return err; |
| 1369 | |
Jean-Jacques Hiblot | a0276f3 | 2018-02-09 12:09:27 +0100 | [diff] [blame] | 1370 | if (((__be32_to_cpu(switch_status[4]) >> 24) & 0xF) != speed) |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1371 | return -ENOTSUPP; |
| 1372 | |
| 1373 | return 0; |
| 1374 | } |
| 1375 | |
Marek Vasut | ec360e6 | 2018-04-15 00:36:45 +0200 | [diff] [blame] | 1376 | static int sd_select_bus_width(struct mmc *mmc, int w) |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1377 | { |
| 1378 | int err; |
| 1379 | struct mmc_cmd cmd; |
| 1380 | |
| 1381 | if ((w != 4) && (w != 1)) |
| 1382 | return -EINVAL; |
| 1383 | |
| 1384 | cmd.cmdidx = MMC_CMD_APP_CMD; |
| 1385 | cmd.resp_type = MMC_RSP_R1; |
| 1386 | cmd.cmdarg = mmc->rca << 16; |
| 1387 | |
| 1388 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1389 | if (err) |
| 1390 | return err; |
| 1391 | |
| 1392 | cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH; |
| 1393 | cmd.resp_type = MMC_RSP_R1; |
| 1394 | if (w == 4) |
| 1395 | cmd.cmdarg = 2; |
| 1396 | else if (w == 1) |
| 1397 | cmd.cmdarg = 0; |
| 1398 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1399 | if (err) |
| 1400 | return err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1401 | |
| 1402 | return 0; |
| 1403 | } |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 1404 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1405 | |
Jean-Jacques Hiblot | 5b2e72f | 2018-01-04 15:23:33 +0100 | [diff] [blame] | 1406 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Peng Fan | 3697e59 | 2016-09-01 11:13:38 +0800 | [diff] [blame] | 1407 | static int sd_read_ssr(struct mmc *mmc) |
| 1408 | { |
Jean-Jacques Hiblot | 5b2e72f | 2018-01-04 15:23:33 +0100 | [diff] [blame] | 1409 | static const unsigned int sd_au_size[] = { |
| 1410 | 0, SZ_16K / 512, SZ_32K / 512, |
| 1411 | SZ_64K / 512, SZ_128K / 512, SZ_256K / 512, |
| 1412 | SZ_512K / 512, SZ_1M / 512, SZ_2M / 512, |
| 1413 | SZ_4M / 512, SZ_8M / 512, (SZ_8M + SZ_4M) / 512, |
| 1414 | SZ_16M / 512, (SZ_16M + SZ_8M) / 512, SZ_32M / 512, |
| 1415 | SZ_64M / 512, |
| 1416 | }; |
Peng Fan | 3697e59 | 2016-09-01 11:13:38 +0800 | [diff] [blame] | 1417 | int err, i; |
| 1418 | struct mmc_cmd cmd; |
| 1419 | ALLOC_CACHE_ALIGN_BUFFER(uint, ssr, 16); |
| 1420 | struct mmc_data data; |
| 1421 | int timeout = 3; |
| 1422 | unsigned int au, eo, et, es; |
| 1423 | |
| 1424 | cmd.cmdidx = MMC_CMD_APP_CMD; |
| 1425 | cmd.resp_type = MMC_RSP_R1; |
| 1426 | cmd.cmdarg = mmc->rca << 16; |
| 1427 | |
| 1428 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1429 | if (err) |
| 1430 | return err; |
| 1431 | |
| 1432 | cmd.cmdidx = SD_CMD_APP_SD_STATUS; |
| 1433 | cmd.resp_type = MMC_RSP_R1; |
| 1434 | cmd.cmdarg = 0; |
| 1435 | |
| 1436 | retry_ssr: |
| 1437 | data.dest = (char *)ssr; |
| 1438 | data.blocksize = 64; |
| 1439 | data.blocks = 1; |
| 1440 | data.flags = MMC_DATA_READ; |
| 1441 | |
| 1442 | err = mmc_send_cmd(mmc, &cmd, &data); |
| 1443 | if (err) { |
| 1444 | if (timeout--) |
| 1445 | goto retry_ssr; |
| 1446 | |
| 1447 | return err; |
| 1448 | } |
| 1449 | |
| 1450 | for (i = 0; i < 16; i++) |
| 1451 | ssr[i] = be32_to_cpu(ssr[i]); |
| 1452 | |
| 1453 | au = (ssr[2] >> 12) & 0xF; |
| 1454 | if ((au <= 9) || (mmc->version == SD_VERSION_3)) { |
| 1455 | mmc->ssr.au = sd_au_size[au]; |
| 1456 | es = (ssr[3] >> 24) & 0xFF; |
| 1457 | es |= (ssr[2] & 0xFF) << 8; |
| 1458 | et = (ssr[3] >> 18) & 0x3F; |
| 1459 | if (es && et) { |
| 1460 | eo = (ssr[3] >> 16) & 0x3; |
| 1461 | mmc->ssr.erase_timeout = (et * 1000) / es; |
| 1462 | mmc->ssr.erase_offset = eo * 1000; |
| 1463 | } |
| 1464 | } else { |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1465 | pr_debug("Invalid Allocation Unit Size.\n"); |
Peng Fan | 3697e59 | 2016-09-01 11:13:38 +0800 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | return 0; |
| 1469 | } |
Jean-Jacques Hiblot | 5b2e72f | 2018-01-04 15:23:33 +0100 | [diff] [blame] | 1470 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1471 | /* frequency bases */ |
| 1472 | /* divided by 10 to be nice to platforms without floating point */ |
Mike Frysinger | 5f837c2 | 2010-10-20 01:15:53 +0000 | [diff] [blame] | 1473 | static const int fbase[] = { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1474 | 10000, |
| 1475 | 100000, |
| 1476 | 1000000, |
| 1477 | 10000000, |
| 1478 | }; |
| 1479 | |
| 1480 | /* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice |
| 1481 | * to platforms without floating point. |
| 1482 | */ |
Simon Glass | 61fe076 | 2016-05-14 14:02:57 -0600 | [diff] [blame] | 1483 | static const u8 multipliers[] = { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1484 | 0, /* reserved */ |
| 1485 | 10, |
| 1486 | 12, |
| 1487 | 13, |
| 1488 | 15, |
| 1489 | 20, |
| 1490 | 25, |
| 1491 | 30, |
| 1492 | 35, |
| 1493 | 40, |
| 1494 | 45, |
| 1495 | 50, |
| 1496 | 55, |
| 1497 | 60, |
| 1498 | 70, |
| 1499 | 80, |
| 1500 | }; |
| 1501 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1502 | static inline int bus_width(uint cap) |
| 1503 | { |
| 1504 | if (cap == MMC_MODE_8BIT) |
| 1505 | return 8; |
| 1506 | if (cap == MMC_MODE_4BIT) |
| 1507 | return 4; |
| 1508 | if (cap == MMC_MODE_1BIT) |
| 1509 | return 1; |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 1510 | pr_warn("invalid bus witdh capability 0x%x\n", cap); |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1511 | return 0; |
| 1512 | } |
| 1513 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 1514 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1515 | #ifdef MMC_SUPPORTS_TUNING |
Kishon Vijay Abraham I | ec84120 | 2017-09-21 16:30:05 +0200 | [diff] [blame] | 1516 | static int mmc_execute_tuning(struct mmc *mmc, uint opcode) |
| 1517 | { |
| 1518 | return -ENOTSUPP; |
| 1519 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1520 | #endif |
Kishon Vijay Abraham I | ec84120 | 2017-09-21 16:30:05 +0200 | [diff] [blame] | 1521 | |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1522 | static int mmc_set_ios(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1523 | { |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1524 | int ret = 0; |
| 1525 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 1526 | if (mmc->cfg->ops->set_ios) |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1527 | ret = mmc->cfg->ops->set_ios(mmc); |
| 1528 | |
| 1529 | return ret; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1530 | } |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 1531 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1532 | |
Kishon Vijay Abraham I | 35f6782 | 2017-09-21 16:30:03 +0200 | [diff] [blame] | 1533 | int mmc_set_clock(struct mmc *mmc, uint clock, bool disable) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1534 | { |
Jaehoon Chung | c0fafe6 | 2018-01-23 14:04:30 +0900 | [diff] [blame] | 1535 | if (!disable) { |
Jaehoon Chung | 9546eb9 | 2018-01-17 19:36:58 +0900 | [diff] [blame] | 1536 | if (clock > mmc->cfg->f_max) |
| 1537 | clock = mmc->cfg->f_max; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1538 | |
Jaehoon Chung | 9546eb9 | 2018-01-17 19:36:58 +0900 | [diff] [blame] | 1539 | if (clock < mmc->cfg->f_min) |
| 1540 | clock = mmc->cfg->f_min; |
| 1541 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1542 | |
| 1543 | mmc->clock = clock; |
Kishon Vijay Abraham I | 35f6782 | 2017-09-21 16:30:03 +0200 | [diff] [blame] | 1544 | mmc->clk_disable = disable; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1545 | |
Jaehoon Chung | d2faadb | 2018-01-26 19:25:30 +0900 | [diff] [blame] | 1546 | debug("clock is %s (%dHz)\n", disable ? "disabled" : "enabled", clock); |
| 1547 | |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1548 | return mmc_set_ios(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1549 | } |
| 1550 | |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1551 | static int mmc_set_bus_width(struct mmc *mmc, uint width) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1552 | { |
| 1553 | mmc->bus_width = width; |
| 1554 | |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1555 | return mmc_set_ios(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1556 | } |
| 1557 | |
Jean-Jacques Hiblot | 4c9d2aa | 2017-09-21 16:29:54 +0200 | [diff] [blame] | 1558 | #if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG) |
| 1559 | /* |
| 1560 | * helper function to display the capabilities in a human |
| 1561 | * friendly manner. The capabilities include bus width and |
| 1562 | * supported modes. |
| 1563 | */ |
| 1564 | void mmc_dump_capabilities(const char *text, uint caps) |
| 1565 | { |
| 1566 | enum bus_mode mode; |
| 1567 | |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1568 | pr_debug("%s: widths [", text); |
Jean-Jacques Hiblot | 4c9d2aa | 2017-09-21 16:29:54 +0200 | [diff] [blame] | 1569 | if (caps & MMC_MODE_8BIT) |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1570 | pr_debug("8, "); |
Jean-Jacques Hiblot | 4c9d2aa | 2017-09-21 16:29:54 +0200 | [diff] [blame] | 1571 | if (caps & MMC_MODE_4BIT) |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1572 | pr_debug("4, "); |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1573 | if (caps & MMC_MODE_1BIT) |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1574 | pr_debug("1, "); |
| 1575 | pr_debug("\b\b] modes ["); |
Jean-Jacques Hiblot | 4c9d2aa | 2017-09-21 16:29:54 +0200 | [diff] [blame] | 1576 | for (mode = MMC_LEGACY; mode < MMC_MODES_END; mode++) |
| 1577 | if (MMC_CAP(mode) & caps) |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1578 | pr_debug("%s, ", mmc_mode_name(mode)); |
| 1579 | pr_debug("\b\b]\n"); |
Jean-Jacques Hiblot | 4c9d2aa | 2017-09-21 16:29:54 +0200 | [diff] [blame] | 1580 | } |
| 1581 | #endif |
| 1582 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1583 | struct mode_width_tuning { |
| 1584 | enum bus_mode mode; |
| 1585 | uint widths; |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1586 | #ifdef MMC_SUPPORTS_TUNING |
Kishon Vijay Abraham I | 634d484 | 2017-09-21 16:30:06 +0200 | [diff] [blame] | 1587 | uint tuning; |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1588 | #endif |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1589 | }; |
| 1590 | |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1591 | #if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE) |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1592 | int mmc_voltage_to_mv(enum mmc_voltage voltage) |
| 1593 | { |
| 1594 | switch (voltage) { |
| 1595 | case MMC_SIGNAL_VOLTAGE_000: return 0; |
| 1596 | case MMC_SIGNAL_VOLTAGE_330: return 3300; |
| 1597 | case MMC_SIGNAL_VOLTAGE_180: return 1800; |
| 1598 | case MMC_SIGNAL_VOLTAGE_120: return 1200; |
| 1599 | } |
| 1600 | return -EINVAL; |
| 1601 | } |
| 1602 | |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 1603 | static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage) |
| 1604 | { |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1605 | int err; |
| 1606 | |
| 1607 | if (mmc->signal_voltage == signal_voltage) |
| 1608 | return 0; |
| 1609 | |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 1610 | mmc->signal_voltage = signal_voltage; |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1611 | err = mmc_set_ios(mmc); |
| 1612 | if (err) |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1613 | pr_debug("unable to set voltage (err %d)\n", err); |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1614 | |
| 1615 | return err; |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 1616 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1617 | #else |
| 1618 | static inline int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage) |
| 1619 | { |
| 1620 | return 0; |
| 1621 | } |
| 1622 | #endif |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 1623 | |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 1624 | #if !CONFIG_IS_ENABLED(MMC_TINY) |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1625 | static const struct mode_width_tuning sd_modes_by_pref[] = { |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1626 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) |
| 1627 | #ifdef MMC_SUPPORTS_TUNING |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1628 | { |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1629 | .mode = UHS_SDR104, |
| 1630 | .widths = MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1631 | .tuning = MMC_CMD_SEND_TUNING_BLOCK |
| 1632 | }, |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1633 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1634 | { |
| 1635 | .mode = UHS_SDR50, |
| 1636 | .widths = MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1637 | }, |
| 1638 | { |
| 1639 | .mode = UHS_DDR50, |
| 1640 | .widths = MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1641 | }, |
| 1642 | { |
| 1643 | .mode = UHS_SDR25, |
| 1644 | .widths = MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1645 | }, |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1646 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1647 | { |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1648 | .mode = SD_HS, |
| 1649 | .widths = MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1650 | }, |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1651 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1652 | { |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1653 | .mode = UHS_SDR12, |
| 1654 | .widths = MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1655 | }, |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1656 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1657 | { |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1658 | .mode = SD_LEGACY, |
| 1659 | .widths = MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1660 | } |
| 1661 | }; |
| 1662 | |
| 1663 | #define for_each_sd_mode_by_pref(caps, mwt) \ |
| 1664 | for (mwt = sd_modes_by_pref;\ |
| 1665 | mwt < sd_modes_by_pref + ARRAY_SIZE(sd_modes_by_pref);\ |
| 1666 | mwt++) \ |
| 1667 | if (caps & MMC_CAP(mwt->mode)) |
| 1668 | |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 1669 | static int sd_select_mode_and_width(struct mmc *mmc, uint card_caps) |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1670 | { |
| 1671 | int err; |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1672 | uint widths[] = {MMC_MODE_4BIT, MMC_MODE_1BIT}; |
| 1673 | const struct mode_width_tuning *mwt; |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1674 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1675 | bool uhs_en = (mmc->ocr & OCR_S18R) ? true : false; |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1676 | #else |
| 1677 | bool uhs_en = false; |
| 1678 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1679 | uint caps; |
| 1680 | |
Jean-Jacques Hiblot | 52d241d | 2017-11-30 17:43:54 +0100 | [diff] [blame] | 1681 | #ifdef DEBUG |
| 1682 | mmc_dump_capabilities("sd card", card_caps); |
Jean-Jacques Hiblot | 1da8eb5 | 2017-11-30 17:43:57 +0100 | [diff] [blame] | 1683 | mmc_dump_capabilities("host", mmc->host_caps); |
Jean-Jacques Hiblot | 52d241d | 2017-11-30 17:43:54 +0100 | [diff] [blame] | 1684 | #endif |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1685 | |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1686 | /* Restrict card's capabilities by what the host can do */ |
Jean-Jacques Hiblot | 1da8eb5 | 2017-11-30 17:43:57 +0100 | [diff] [blame] | 1687 | caps = card_caps & mmc->host_caps; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1688 | |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1689 | if (!uhs_en) |
| 1690 | caps &= ~UHS_CAPS; |
| 1691 | |
| 1692 | for_each_sd_mode_by_pref(caps, mwt) { |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1693 | uint *w; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1694 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1695 | for (w = widths; w < widths + ARRAY_SIZE(widths); w++) { |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1696 | if (*w & caps & mwt->widths) { |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1697 | pr_debug("trying mode %s width %d (at %d MHz)\n", |
| 1698 | mmc_mode_name(mwt->mode), |
| 1699 | bus_width(*w), |
| 1700 | mmc_mode2freq(mmc, mwt->mode) / 1000000); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1701 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1702 | /* configure the bus width (card + host) */ |
| 1703 | err = sd_select_bus_width(mmc, bus_width(*w)); |
| 1704 | if (err) |
| 1705 | goto error; |
| 1706 | mmc_set_bus_width(mmc, bus_width(*w)); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1707 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1708 | /* configure the bus mode (card) */ |
| 1709 | err = sd_set_card_speed(mmc, mwt->mode); |
| 1710 | if (err) |
| 1711 | goto error; |
| 1712 | |
| 1713 | /* configure the bus mode (host) */ |
| 1714 | mmc_select_mode(mmc, mwt->mode); |
Jaehoon Chung | 6511718 | 2018-01-26 19:25:29 +0900 | [diff] [blame] | 1715 | mmc_set_clock(mmc, mmc->tran_speed, |
| 1716 | MMC_CLK_ENABLE); |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1717 | |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1718 | #ifdef MMC_SUPPORTS_TUNING |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1719 | /* execute tuning if needed */ |
| 1720 | if (mwt->tuning && !mmc_host_is_spi(mmc)) { |
| 1721 | err = mmc_execute_tuning(mmc, |
| 1722 | mwt->tuning); |
| 1723 | if (err) { |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1724 | pr_debug("tuning failed\n"); |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1725 | goto error; |
| 1726 | } |
| 1727 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1728 | #endif |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 1729 | |
Jean-Jacques Hiblot | 5b2e72f | 2018-01-04 15:23:33 +0100 | [diff] [blame] | 1730 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1731 | err = sd_read_ssr(mmc); |
Peng Fan | 0a4c2b0 | 2018-03-05 16:20:40 +0800 | [diff] [blame] | 1732 | if (err) |
Jean-Jacques Hiblot | 5b2e72f | 2018-01-04 15:23:33 +0100 | [diff] [blame] | 1733 | pr_warn("unable to read ssr\n"); |
| 1734 | #endif |
| 1735 | if (!err) |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1736 | return 0; |
| 1737 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1738 | error: |
| 1739 | /* revert to a safer bus speed */ |
| 1740 | mmc_select_mode(mmc, SD_LEGACY); |
Jaehoon Chung | 6511718 | 2018-01-26 19:25:29 +0900 | [diff] [blame] | 1741 | mmc_set_clock(mmc, mmc->tran_speed, |
| 1742 | MMC_CLK_ENABLE); |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1743 | } |
| 1744 | } |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1745 | } |
| 1746 | |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1747 | pr_err("unable to select a mode\n"); |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1748 | return -ENOTSUPP; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1749 | } |
| 1750 | |
Jean-Jacques Hiblot | 7382e69 | 2017-09-21 16:29:52 +0200 | [diff] [blame] | 1751 | /* |
| 1752 | * read the compare the part of ext csd that is constant. |
| 1753 | * This can be used to check that the transfer is working |
| 1754 | * as expected. |
| 1755 | */ |
| 1756 | static int mmc_read_and_compare_ext_csd(struct mmc *mmc) |
| 1757 | { |
| 1758 | int err; |
| 1759 | const u8 *ext_csd = mmc->ext_csd; |
| 1760 | ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN); |
| 1761 | |
Jean-Jacques Hiblot | 1de06b9 | 2017-11-30 17:43:58 +0100 | [diff] [blame] | 1762 | if (mmc->version < MMC_VERSION_4) |
| 1763 | return 0; |
| 1764 | |
Jean-Jacques Hiblot | 7382e69 | 2017-09-21 16:29:52 +0200 | [diff] [blame] | 1765 | err = mmc_send_ext_csd(mmc, test_csd); |
| 1766 | if (err) |
| 1767 | return err; |
| 1768 | |
| 1769 | /* Only compare read only fields */ |
| 1770 | if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] |
| 1771 | == test_csd[EXT_CSD_PARTITIONING_SUPPORT] && |
| 1772 | ext_csd[EXT_CSD_HC_WP_GRP_SIZE] |
| 1773 | == test_csd[EXT_CSD_HC_WP_GRP_SIZE] && |
| 1774 | ext_csd[EXT_CSD_REV] |
| 1775 | == test_csd[EXT_CSD_REV] && |
| 1776 | ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] |
| 1777 | == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE] && |
| 1778 | memcmp(&ext_csd[EXT_CSD_SEC_CNT], |
| 1779 | &test_csd[EXT_CSD_SEC_CNT], 4) == 0) |
| 1780 | return 0; |
| 1781 | |
| 1782 | return -EBADMSG; |
| 1783 | } |
| 1784 | |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1785 | #if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE) |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1786 | static int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode, |
| 1787 | uint32_t allowed_mask) |
| 1788 | { |
| 1789 | u32 card_mask = 0; |
| 1790 | |
| 1791 | switch (mode) { |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1792 | case MMC_HS_400: |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1793 | case MMC_HS_200: |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1794 | if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_8V | |
| 1795 | EXT_CSD_CARD_TYPE_HS400_1_8V)) |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1796 | card_mask |= MMC_SIGNAL_VOLTAGE_180; |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1797 | if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V | |
| 1798 | EXT_CSD_CARD_TYPE_HS400_1_2V)) |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1799 | card_mask |= MMC_SIGNAL_VOLTAGE_120; |
| 1800 | break; |
| 1801 | case MMC_DDR_52: |
| 1802 | if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_8V) |
| 1803 | card_mask |= MMC_SIGNAL_VOLTAGE_330 | |
| 1804 | MMC_SIGNAL_VOLTAGE_180; |
| 1805 | if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_2V) |
| 1806 | card_mask |= MMC_SIGNAL_VOLTAGE_120; |
| 1807 | break; |
| 1808 | default: |
| 1809 | card_mask |= MMC_SIGNAL_VOLTAGE_330; |
| 1810 | break; |
| 1811 | } |
| 1812 | |
| 1813 | while (card_mask & allowed_mask) { |
| 1814 | enum mmc_voltage best_match; |
| 1815 | |
| 1816 | best_match = 1 << (ffs(card_mask & allowed_mask) - 1); |
| 1817 | if (!mmc_set_signal_voltage(mmc, best_match)) |
| 1818 | return 0; |
| 1819 | |
| 1820 | allowed_mask &= ~best_match; |
| 1821 | } |
| 1822 | |
| 1823 | return -ENOTSUPP; |
| 1824 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1825 | #else |
| 1826 | static inline int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode, |
| 1827 | uint32_t allowed_mask) |
| 1828 | { |
| 1829 | return 0; |
| 1830 | } |
| 1831 | #endif |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1832 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1833 | static const struct mode_width_tuning mmc_modes_by_pref[] = { |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1834 | #if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
| 1835 | { |
| 1836 | .mode = MMC_HS_400, |
| 1837 | .widths = MMC_MODE_8BIT, |
| 1838 | .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200 |
| 1839 | }, |
| 1840 | #endif |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1841 | #if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1842 | { |
| 1843 | .mode = MMC_HS_200, |
| 1844 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT, |
Kishon Vijay Abraham I | 634d484 | 2017-09-21 16:30:06 +0200 | [diff] [blame] | 1845 | .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200 |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1846 | }, |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 1847 | #endif |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1848 | { |
| 1849 | .mode = MMC_DDR_52, |
| 1850 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT, |
| 1851 | }, |
| 1852 | { |
| 1853 | .mode = MMC_HS_52, |
| 1854 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1855 | }, |
| 1856 | { |
| 1857 | .mode = MMC_HS, |
| 1858 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1859 | }, |
| 1860 | { |
| 1861 | .mode = MMC_LEGACY, |
| 1862 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1863 | } |
| 1864 | }; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1865 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1866 | #define for_each_mmc_mode_by_pref(caps, mwt) \ |
| 1867 | for (mwt = mmc_modes_by_pref;\ |
| 1868 | mwt < mmc_modes_by_pref + ARRAY_SIZE(mmc_modes_by_pref);\ |
| 1869 | mwt++) \ |
| 1870 | if (caps & MMC_CAP(mwt->mode)) |
| 1871 | |
| 1872 | static const struct ext_csd_bus_width { |
| 1873 | uint cap; |
| 1874 | bool is_ddr; |
| 1875 | uint ext_csd_bits; |
| 1876 | } ext_csd_bus_width[] = { |
| 1877 | {MMC_MODE_8BIT, true, EXT_CSD_DDR_BUS_WIDTH_8}, |
| 1878 | {MMC_MODE_4BIT, true, EXT_CSD_DDR_BUS_WIDTH_4}, |
| 1879 | {MMC_MODE_8BIT, false, EXT_CSD_BUS_WIDTH_8}, |
| 1880 | {MMC_MODE_4BIT, false, EXT_CSD_BUS_WIDTH_4}, |
| 1881 | {MMC_MODE_1BIT, false, EXT_CSD_BUS_WIDTH_1}, |
| 1882 | }; |
| 1883 | |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1884 | #if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
| 1885 | static int mmc_select_hs400(struct mmc *mmc) |
| 1886 | { |
| 1887 | int err; |
| 1888 | |
| 1889 | /* Set timing to HS200 for tuning */ |
Marek Vasut | b9a2a0e | 2019-01-03 21:19:24 +0100 | [diff] [blame] | 1890 | err = mmc_set_card_speed(mmc, MMC_HS_200, false); |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1891 | if (err) |
| 1892 | return err; |
| 1893 | |
| 1894 | /* configure the bus mode (host) */ |
| 1895 | mmc_select_mode(mmc, MMC_HS_200); |
| 1896 | mmc_set_clock(mmc, mmc->tran_speed, false); |
| 1897 | |
| 1898 | /* execute tuning if needed */ |
| 1899 | err = mmc_execute_tuning(mmc, MMC_CMD_SEND_TUNING_BLOCK_HS200); |
| 1900 | if (err) { |
| 1901 | debug("tuning failed\n"); |
| 1902 | return err; |
| 1903 | } |
| 1904 | |
| 1905 | /* Set back to HS */ |
BOUGH CHEN | 5cf1203 | 2019-03-26 06:24:17 +0000 | [diff] [blame] | 1906 | mmc_set_card_speed(mmc, MMC_HS, true); |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1907 | |
| 1908 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH, |
| 1909 | EXT_CSD_BUS_WIDTH_8 | EXT_CSD_DDR_FLAG); |
| 1910 | if (err) |
| 1911 | return err; |
| 1912 | |
Marek Vasut | b9a2a0e | 2019-01-03 21:19:24 +0100 | [diff] [blame] | 1913 | err = mmc_set_card_speed(mmc, MMC_HS_400, false); |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1914 | if (err) |
| 1915 | return err; |
| 1916 | |
| 1917 | mmc_select_mode(mmc, MMC_HS_400); |
| 1918 | err = mmc_set_clock(mmc, mmc->tran_speed, false); |
| 1919 | if (err) |
| 1920 | return err; |
| 1921 | |
| 1922 | return 0; |
| 1923 | } |
| 1924 | #else |
| 1925 | static int mmc_select_hs400(struct mmc *mmc) |
| 1926 | { |
| 1927 | return -ENOTSUPP; |
| 1928 | } |
| 1929 | #endif |
| 1930 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1931 | #define for_each_supported_width(caps, ddr, ecbv) \ |
| 1932 | for (ecbv = ext_csd_bus_width;\ |
| 1933 | ecbv < ext_csd_bus_width + ARRAY_SIZE(ext_csd_bus_width);\ |
| 1934 | ecbv++) \ |
| 1935 | if ((ddr == ecbv->is_ddr) && (caps & ecbv->cap)) |
| 1936 | |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 1937 | static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps) |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1938 | { |
| 1939 | int err; |
| 1940 | const struct mode_width_tuning *mwt; |
| 1941 | const struct ext_csd_bus_width *ecbw; |
| 1942 | |
Jean-Jacques Hiblot | 52d241d | 2017-11-30 17:43:54 +0100 | [diff] [blame] | 1943 | #ifdef DEBUG |
| 1944 | mmc_dump_capabilities("mmc", card_caps); |
Jean-Jacques Hiblot | 1da8eb5 | 2017-11-30 17:43:57 +0100 | [diff] [blame] | 1945 | mmc_dump_capabilities("host", mmc->host_caps); |
Jean-Jacques Hiblot | 52d241d | 2017-11-30 17:43:54 +0100 | [diff] [blame] | 1946 | #endif |
| 1947 | |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1948 | /* Restrict card's capabilities by what the host can do */ |
Jean-Jacques Hiblot | 1da8eb5 | 2017-11-30 17:43:57 +0100 | [diff] [blame] | 1949 | card_caps &= mmc->host_caps; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1950 | |
| 1951 | /* Only version 4 of MMC supports wider bus widths */ |
| 1952 | if (mmc->version < MMC_VERSION_4) |
| 1953 | return 0; |
| 1954 | |
Jean-Jacques Hiblot | dfda9d8 | 2017-09-21 16:29:51 +0200 | [diff] [blame] | 1955 | if (!mmc->ext_csd) { |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1956 | pr_debug("No ext_csd found!\n"); /* this should enver happen */ |
Jean-Jacques Hiblot | dfda9d8 | 2017-09-21 16:29:51 +0200 | [diff] [blame] | 1957 | return -ENOTSUPP; |
| 1958 | } |
| 1959 | |
Marek Vasut | b9a2a0e | 2019-01-03 21:19:24 +0100 | [diff] [blame] | 1960 | #if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \ |
| 1961 | CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
| 1962 | /* |
| 1963 | * In case the eMMC is in HS200/HS400 mode, downgrade to HS mode |
| 1964 | * before doing anything else, since a transition from either of |
| 1965 | * the HS200/HS400 mode directly to legacy mode is not supported. |
| 1966 | */ |
| 1967 | if (mmc->selected_mode == MMC_HS_200 || |
| 1968 | mmc->selected_mode == MMC_HS_400) |
| 1969 | mmc_set_card_speed(mmc, MMC_HS, true); |
| 1970 | else |
| 1971 | #endif |
| 1972 | mmc_set_clock(mmc, mmc->legacy_speed, MMC_CLK_ENABLE); |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 1973 | |
| 1974 | for_each_mmc_mode_by_pref(card_caps, mwt) { |
| 1975 | for_each_supported_width(card_caps & mwt->widths, |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1976 | mmc_is_mode_ddr(mwt->mode), ecbw) { |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1977 | enum mmc_voltage old_voltage; |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 1978 | pr_debug("trying mode %s width %d (at %d MHz)\n", |
| 1979 | mmc_mode_name(mwt->mode), |
| 1980 | bus_width(ecbw->cap), |
| 1981 | mmc_mode2freq(mmc, mwt->mode) / 1000000); |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 1982 | old_voltage = mmc->signal_voltage; |
| 1983 | err = mmc_set_lowest_voltage(mmc, mwt->mode, |
| 1984 | MMC_ALL_SIGNAL_VOLTAGE); |
| 1985 | if (err) |
| 1986 | continue; |
| 1987 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1988 | /* configure the bus width (card + host) */ |
| 1989 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1990 | EXT_CSD_BUS_WIDTH, |
| 1991 | ecbw->ext_csd_bits & ~EXT_CSD_DDR_FLAG); |
| 1992 | if (err) |
| 1993 | goto error; |
| 1994 | mmc_set_bus_width(mmc, bus_width(ecbw->cap)); |
| 1995 | |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1996 | if (mwt->mode == MMC_HS_400) { |
| 1997 | err = mmc_select_hs400(mmc); |
Kishon Vijay Abraham I | 634d484 | 2017-09-21 16:30:06 +0200 | [diff] [blame] | 1998 | if (err) { |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 1999 | printf("Select HS400 failed %d\n", err); |
Kishon Vijay Abraham I | 634d484 | 2017-09-21 16:30:06 +0200 | [diff] [blame] | 2000 | goto error; |
| 2001 | } |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 2002 | } else { |
| 2003 | /* configure the bus speed (card) */ |
Marek Vasut | b9a2a0e | 2019-01-03 21:19:24 +0100 | [diff] [blame] | 2004 | err = mmc_set_card_speed(mmc, mwt->mode, false); |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 2005 | if (err) |
| 2006 | goto error; |
| 2007 | |
| 2008 | /* |
| 2009 | * configure the bus width AND the ddr mode |
| 2010 | * (card). The host side will be taken care |
| 2011 | * of in the next step |
| 2012 | */ |
| 2013 | if (ecbw->ext_csd_bits & EXT_CSD_DDR_FLAG) { |
| 2014 | err = mmc_switch(mmc, |
| 2015 | EXT_CSD_CMD_SET_NORMAL, |
| 2016 | EXT_CSD_BUS_WIDTH, |
| 2017 | ecbw->ext_csd_bits); |
| 2018 | if (err) |
| 2019 | goto error; |
| 2020 | } |
| 2021 | |
| 2022 | /* configure the bus mode (host) */ |
| 2023 | mmc_select_mode(mmc, mwt->mode); |
| 2024 | mmc_set_clock(mmc, mmc->tran_speed, |
| 2025 | MMC_CLK_ENABLE); |
| 2026 | #ifdef MMC_SUPPORTS_TUNING |
| 2027 | |
| 2028 | /* execute tuning if needed */ |
| 2029 | if (mwt->tuning) { |
| 2030 | err = mmc_execute_tuning(mmc, |
| 2031 | mwt->tuning); |
| 2032 | if (err) { |
| 2033 | pr_debug("tuning failed\n"); |
| 2034 | goto error; |
| 2035 | } |
| 2036 | } |
Jean-Jacques Hiblot | f99c2ef | 2017-11-30 17:44:01 +0100 | [diff] [blame] | 2037 | #endif |
Peng Fan | 3dd2626 | 2018-08-10 14:07:54 +0800 | [diff] [blame] | 2038 | } |
Kishon Vijay Abraham I | 634d484 | 2017-09-21 16:30:06 +0200 | [diff] [blame] | 2039 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 2040 | /* do a transfer to check the configuration */ |
| 2041 | err = mmc_read_and_compare_ext_csd(mmc); |
| 2042 | if (!err) |
| 2043 | return 0; |
| 2044 | error: |
Jean-Jacques Hiblot | bc1e327 | 2017-09-21 16:30:11 +0200 | [diff] [blame] | 2045 | mmc_set_signal_voltage(mmc, old_voltage); |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 2046 | /* if an error occured, revert to a safer bus mode */ |
| 2047 | mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 2048 | EXT_CSD_BUS_WIDTH, EXT_CSD_BUS_WIDTH_1); |
| 2049 | mmc_select_mode(mmc, MMC_LEGACY); |
| 2050 | mmc_set_bus_width(mmc, 1); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 2051 | } |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 2052 | } |
| 2053 | |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 2054 | pr_err("unable to select a mode\n"); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 2055 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 2056 | return -ENOTSUPP; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 2057 | } |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 2058 | #endif |
| 2059 | |
| 2060 | #if CONFIG_IS_ENABLED(MMC_TINY) |
| 2061 | DEFINE_CACHE_ALIGN_BUFFER(u8, ext_csd_bkup, MMC_MAX_BLOCK_LEN); |
| 2062 | #endif |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 2063 | |
Jean-Jacques Hiblot | dfda9d8 | 2017-09-21 16:29:51 +0200 | [diff] [blame] | 2064 | static int mmc_startup_v4(struct mmc *mmc) |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2065 | { |
| 2066 | int err, i; |
| 2067 | u64 capacity; |
| 2068 | bool has_parts = false; |
| 2069 | bool part_completed; |
Jean-Jacques Hiblot | 58a6fb7 | 2018-01-04 15:23:31 +0100 | [diff] [blame] | 2070 | static const u32 mmc_versions[] = { |
| 2071 | MMC_VERSION_4, |
| 2072 | MMC_VERSION_4_1, |
| 2073 | MMC_VERSION_4_2, |
| 2074 | MMC_VERSION_4_3, |
Jean-Jacques Hiblot | ace1bed | 2018-02-09 12:09:28 +0100 | [diff] [blame] | 2075 | MMC_VERSION_4_4, |
Jean-Jacques Hiblot | 58a6fb7 | 2018-01-04 15:23:31 +0100 | [diff] [blame] | 2076 | MMC_VERSION_4_41, |
| 2077 | MMC_VERSION_4_5, |
| 2078 | MMC_VERSION_5_0, |
| 2079 | MMC_VERSION_5_1 |
| 2080 | }; |
| 2081 | |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 2082 | #if CONFIG_IS_ENABLED(MMC_TINY) |
| 2083 | u8 *ext_csd = ext_csd_bkup; |
| 2084 | |
| 2085 | if (IS_SD(mmc) || mmc->version < MMC_VERSION_4) |
| 2086 | return 0; |
| 2087 | |
| 2088 | if (!mmc->ext_csd) |
| 2089 | memset(ext_csd_bkup, 0, sizeof(ext_csd_bkup)); |
| 2090 | |
| 2091 | err = mmc_send_ext_csd(mmc, ext_csd); |
| 2092 | if (err) |
| 2093 | goto error; |
| 2094 | |
| 2095 | /* store the ext csd for future reference */ |
| 2096 | if (!mmc->ext_csd) |
| 2097 | mmc->ext_csd = ext_csd; |
| 2098 | #else |
Jean-Jacques Hiblot | f7d5dff | 2017-11-30 17:43:59 +0100 | [diff] [blame] | 2099 | ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN); |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2100 | |
| 2101 | if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4)) |
| 2102 | return 0; |
| 2103 | |
| 2104 | /* check ext_csd version and capacity */ |
| 2105 | err = mmc_send_ext_csd(mmc, ext_csd); |
| 2106 | if (err) |
Jean-Jacques Hiblot | f7d5dff | 2017-11-30 17:43:59 +0100 | [diff] [blame] | 2107 | goto error; |
| 2108 | |
| 2109 | /* store the ext csd for future reference */ |
| 2110 | if (!mmc->ext_csd) |
| 2111 | mmc->ext_csd = malloc(MMC_MAX_BLOCK_LEN); |
| 2112 | if (!mmc->ext_csd) |
| 2113 | return -ENOMEM; |
| 2114 | memcpy(mmc->ext_csd, ext_csd, MMC_MAX_BLOCK_LEN); |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 2115 | #endif |
Alexander Kochetkov | 76584e3 | 2018-02-20 14:35:55 +0300 | [diff] [blame] | 2116 | if (ext_csd[EXT_CSD_REV] >= ARRAY_SIZE(mmc_versions)) |
Jean-Jacques Hiblot | 58a6fb7 | 2018-01-04 15:23:31 +0100 | [diff] [blame] | 2117 | return -EINVAL; |
| 2118 | |
| 2119 | mmc->version = mmc_versions[ext_csd[EXT_CSD_REV]]; |
| 2120 | |
| 2121 | if (mmc->version >= MMC_VERSION_4_2) { |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2122 | /* |
| 2123 | * According to the JEDEC Standard, the value of |
| 2124 | * ext_csd's capacity is valid if the value is more |
| 2125 | * than 2GB |
| 2126 | */ |
| 2127 | capacity = ext_csd[EXT_CSD_SEC_CNT] << 0 |
| 2128 | | ext_csd[EXT_CSD_SEC_CNT + 1] << 8 |
| 2129 | | ext_csd[EXT_CSD_SEC_CNT + 2] << 16 |
| 2130 | | ext_csd[EXT_CSD_SEC_CNT + 3] << 24; |
| 2131 | capacity *= MMC_MAX_BLOCK_LEN; |
| 2132 | if ((capacity >> 20) > 2 * 1024) |
| 2133 | mmc->capacity_user = capacity; |
| 2134 | } |
| 2135 | |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2136 | /* The partition data may be non-zero but it is only |
| 2137 | * effective if PARTITION_SETTING_COMPLETED is set in |
| 2138 | * EXT_CSD, so ignore any data if this bit is not set, |
| 2139 | * except for enabling the high-capacity group size |
| 2140 | * definition (see below). |
| 2141 | */ |
| 2142 | part_completed = !!(ext_csd[EXT_CSD_PARTITION_SETTING] & |
| 2143 | EXT_CSD_PARTITION_SETTING_COMPLETED); |
| 2144 | |
| 2145 | /* store the partition info of emmc */ |
| 2146 | mmc->part_support = ext_csd[EXT_CSD_PARTITIONING_SUPPORT]; |
| 2147 | if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) || |
| 2148 | ext_csd[EXT_CSD_BOOT_MULT]) |
| 2149 | mmc->part_config = ext_csd[EXT_CSD_PART_CONF]; |
| 2150 | if (part_completed && |
| 2151 | (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & ENHNCD_SUPPORT)) |
| 2152 | mmc->part_attr = ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE]; |
| 2153 | |
| 2154 | mmc->capacity_boot = ext_csd[EXT_CSD_BOOT_MULT] << 17; |
| 2155 | |
| 2156 | mmc->capacity_rpmb = ext_csd[EXT_CSD_RPMB_MULT] << 17; |
| 2157 | |
| 2158 | for (i = 0; i < 4; i++) { |
| 2159 | int idx = EXT_CSD_GP_SIZE_MULT + i * 3; |
| 2160 | uint mult = (ext_csd[idx + 2] << 16) + |
| 2161 | (ext_csd[idx + 1] << 8) + ext_csd[idx]; |
| 2162 | if (mult) |
| 2163 | has_parts = true; |
| 2164 | if (!part_completed) |
| 2165 | continue; |
| 2166 | mmc->capacity_gp[i] = mult; |
| 2167 | mmc->capacity_gp[i] *= |
| 2168 | ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]; |
| 2169 | mmc->capacity_gp[i] *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE]; |
| 2170 | mmc->capacity_gp[i] <<= 19; |
| 2171 | } |
| 2172 | |
Jean-Jacques Hiblot | 173c06d | 2018-01-04 15:23:35 +0100 | [diff] [blame] | 2173 | #ifndef CONFIG_SPL_BUILD |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2174 | if (part_completed) { |
| 2175 | mmc->enh_user_size = |
| 2176 | (ext_csd[EXT_CSD_ENH_SIZE_MULT + 2] << 16) + |
| 2177 | (ext_csd[EXT_CSD_ENH_SIZE_MULT + 1] << 8) + |
| 2178 | ext_csd[EXT_CSD_ENH_SIZE_MULT]; |
| 2179 | mmc->enh_user_size *= ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]; |
| 2180 | mmc->enh_user_size *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE]; |
| 2181 | mmc->enh_user_size <<= 19; |
| 2182 | mmc->enh_user_start = |
| 2183 | (ext_csd[EXT_CSD_ENH_START_ADDR + 3] << 24) + |
| 2184 | (ext_csd[EXT_CSD_ENH_START_ADDR + 2] << 16) + |
| 2185 | (ext_csd[EXT_CSD_ENH_START_ADDR + 1] << 8) + |
| 2186 | ext_csd[EXT_CSD_ENH_START_ADDR]; |
| 2187 | if (mmc->high_capacity) |
| 2188 | mmc->enh_user_start <<= 9; |
| 2189 | } |
Jean-Jacques Hiblot | 173c06d | 2018-01-04 15:23:35 +0100 | [diff] [blame] | 2190 | #endif |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2191 | |
| 2192 | /* |
| 2193 | * Host needs to enable ERASE_GRP_DEF bit if device is |
| 2194 | * partitioned. This bit will be lost every time after a reset |
| 2195 | * or power off. This will affect erase size. |
| 2196 | */ |
| 2197 | if (part_completed) |
| 2198 | has_parts = true; |
| 2199 | if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) && |
| 2200 | (ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE] & PART_ENH_ATTRIB)) |
| 2201 | has_parts = true; |
| 2202 | if (has_parts) { |
| 2203 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 2204 | EXT_CSD_ERASE_GROUP_DEF, 1); |
| 2205 | |
| 2206 | if (err) |
Jean-Jacques Hiblot | f7d5dff | 2017-11-30 17:43:59 +0100 | [diff] [blame] | 2207 | goto error; |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2208 | |
| 2209 | ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1; |
| 2210 | } |
| 2211 | |
| 2212 | if (ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01) { |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2213 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2214 | /* Read out group size from ext_csd */ |
| 2215 | mmc->erase_grp_size = |
| 2216 | ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024; |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2217 | #endif |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2218 | /* |
| 2219 | * if high capacity and partition setting completed |
| 2220 | * SEC_COUNT is valid even if it is smaller than 2 GiB |
| 2221 | * JEDEC Standard JESD84-B45, 6.2.4 |
| 2222 | */ |
| 2223 | if (mmc->high_capacity && part_completed) { |
| 2224 | capacity = (ext_csd[EXT_CSD_SEC_CNT]) | |
| 2225 | (ext_csd[EXT_CSD_SEC_CNT + 1] << 8) | |
| 2226 | (ext_csd[EXT_CSD_SEC_CNT + 2] << 16) | |
| 2227 | (ext_csd[EXT_CSD_SEC_CNT + 3] << 24); |
| 2228 | capacity *= MMC_MAX_BLOCK_LEN; |
| 2229 | mmc->capacity_user = capacity; |
| 2230 | } |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2231 | } |
| 2232 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
| 2233 | else { |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2234 | /* Calculate the group size from the csd value. */ |
| 2235 | int erase_gsz, erase_gmul; |
| 2236 | |
| 2237 | erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10; |
| 2238 | erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5; |
| 2239 | mmc->erase_grp_size = (erase_gsz + 1) |
| 2240 | * (erase_gmul + 1); |
| 2241 | } |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2242 | #endif |
Jean-Jacques Hiblot | b7a6e2c | 2018-01-04 15:23:36 +0100 | [diff] [blame] | 2243 | #if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING) |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2244 | mmc->hc_wp_grp_size = 1024 |
| 2245 | * ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] |
| 2246 | * ext_csd[EXT_CSD_HC_WP_GRP_SIZE]; |
Jean-Jacques Hiblot | b7a6e2c | 2018-01-04 15:23:36 +0100 | [diff] [blame] | 2247 | #endif |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2248 | |
| 2249 | mmc->wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET]; |
| 2250 | |
| 2251 | return 0; |
Jean-Jacques Hiblot | f7d5dff | 2017-11-30 17:43:59 +0100 | [diff] [blame] | 2252 | error: |
| 2253 | if (mmc->ext_csd) { |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 2254 | #if !CONFIG_IS_ENABLED(MMC_TINY) |
Jean-Jacques Hiblot | f7d5dff | 2017-11-30 17:43:59 +0100 | [diff] [blame] | 2255 | free(mmc->ext_csd); |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 2256 | #endif |
Jean-Jacques Hiblot | f7d5dff | 2017-11-30 17:43:59 +0100 | [diff] [blame] | 2257 | mmc->ext_csd = NULL; |
| 2258 | } |
| 2259 | return err; |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2260 | } |
| 2261 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 2262 | static int mmc_startup(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2263 | { |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 2264 | int err, i; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2265 | uint mult, freq; |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2266 | u64 cmult, csize; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2267 | struct mmc_cmd cmd; |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2268 | struct blk_desc *bdesc; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2269 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2270 | #ifdef CONFIG_MMC_SPI_CRC_ON |
| 2271 | if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */ |
| 2272 | cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF; |
| 2273 | cmd.resp_type = MMC_RSP_R1; |
| 2274 | cmd.cmdarg = 1; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2275 | err = mmc_send_cmd(mmc, &cmd, NULL); |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2276 | if (err) |
| 2277 | return err; |
| 2278 | } |
| 2279 | #endif |
| 2280 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2281 | /* Put the Card in Identify Mode */ |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2282 | cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID : |
| 2283 | MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */ |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2284 | cmd.resp_type = MMC_RSP_R2; |
| 2285 | cmd.cmdarg = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2286 | |
| 2287 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 2288 | |
Kishon Vijay Abraham I | 83dc422 | 2017-09-21 16:30:10 +0200 | [diff] [blame] | 2289 | #ifdef CONFIG_MMC_QUIRKS |
| 2290 | if (err && (mmc->quirks & MMC_QUIRK_RETRY_SEND_CID)) { |
| 2291 | int retries = 4; |
| 2292 | /* |
| 2293 | * It has been seen that SEND_CID may fail on the first |
| 2294 | * attempt, let's try a few more time |
| 2295 | */ |
| 2296 | do { |
| 2297 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 2298 | if (!err) |
| 2299 | break; |
| 2300 | } while (retries--); |
| 2301 | } |
| 2302 | #endif |
| 2303 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2304 | if (err) |
| 2305 | return err; |
| 2306 | |
| 2307 | memcpy(mmc->cid, cmd.response, 16); |
| 2308 | |
| 2309 | /* |
| 2310 | * For MMC cards, set the Relative Address. |
| 2311 | * For SD cards, get the Relatvie Address. |
| 2312 | * This also puts the cards into Standby State |
| 2313 | */ |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2314 | if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */ |
| 2315 | cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR; |
| 2316 | cmd.cmdarg = mmc->rca << 16; |
| 2317 | cmd.resp_type = MMC_RSP_R6; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2318 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2319 | err = mmc_send_cmd(mmc, &cmd, NULL); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2320 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2321 | if (err) |
| 2322 | return err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2323 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2324 | if (IS_SD(mmc)) |
| 2325 | mmc->rca = (cmd.response[0] >> 16) & 0xffff; |
| 2326 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2327 | |
| 2328 | /* Get the Card-Specific Data */ |
| 2329 | cmd.cmdidx = MMC_CMD_SEND_CSD; |
| 2330 | cmd.resp_type = MMC_RSP_R2; |
| 2331 | cmd.cmdarg = mmc->rca << 16; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2332 | |
| 2333 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 2334 | |
| 2335 | if (err) |
| 2336 | return err; |
| 2337 | |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 2338 | mmc->csd[0] = cmd.response[0]; |
| 2339 | mmc->csd[1] = cmd.response[1]; |
| 2340 | mmc->csd[2] = cmd.response[2]; |
| 2341 | mmc->csd[3] = cmd.response[3]; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2342 | |
| 2343 | if (mmc->version == MMC_VERSION_UNKNOWN) { |
Rabin Vincent | 0b453ff | 2009-04-05 13:30:55 +0530 | [diff] [blame] | 2344 | int version = (cmd.response[0] >> 26) & 0xf; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2345 | |
| 2346 | switch (version) { |
Bin Meng | 53e8e40 | 2016-03-17 21:53:13 -0700 | [diff] [blame] | 2347 | case 0: |
| 2348 | mmc->version = MMC_VERSION_1_2; |
| 2349 | break; |
| 2350 | case 1: |
| 2351 | mmc->version = MMC_VERSION_1_4; |
| 2352 | break; |
| 2353 | case 2: |
| 2354 | mmc->version = MMC_VERSION_2_2; |
| 2355 | break; |
| 2356 | case 3: |
| 2357 | mmc->version = MMC_VERSION_3; |
| 2358 | break; |
| 2359 | case 4: |
| 2360 | mmc->version = MMC_VERSION_4; |
| 2361 | break; |
| 2362 | default: |
| 2363 | mmc->version = MMC_VERSION_1_2; |
| 2364 | break; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2365 | } |
| 2366 | } |
| 2367 | |
| 2368 | /* divide frequency by 10, since the mults are 10x bigger */ |
Rabin Vincent | 0b453ff | 2009-04-05 13:30:55 +0530 | [diff] [blame] | 2369 | freq = fbase[(cmd.response[0] & 0x7)]; |
| 2370 | mult = multipliers[((cmd.response[0] >> 3) & 0xf)]; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2371 | |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 2372 | mmc->legacy_speed = freq * mult; |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 2373 | mmc_select_mode(mmc, MMC_LEGACY); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2374 | |
Markus Niebel | ab71188 | 2013-12-16 13:40:46 +0100 | [diff] [blame] | 2375 | mmc->dsr_imp = ((cmd.response[1] >> 12) & 0x1); |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 2376 | mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf); |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2377 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2378 | |
| 2379 | if (IS_SD(mmc)) |
| 2380 | mmc->write_bl_len = mmc->read_bl_len; |
| 2381 | else |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 2382 | mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf); |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2383 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2384 | |
| 2385 | if (mmc->high_capacity) { |
| 2386 | csize = (mmc->csd[1] & 0x3f) << 16 |
| 2387 | | (mmc->csd[2] & 0xffff0000) >> 16; |
| 2388 | cmult = 8; |
| 2389 | } else { |
| 2390 | csize = (mmc->csd[1] & 0x3ff) << 2 |
| 2391 | | (mmc->csd[2] & 0xc0000000) >> 30; |
| 2392 | cmult = (mmc->csd[2] & 0x00038000) >> 15; |
| 2393 | } |
| 2394 | |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 2395 | mmc->capacity_user = (csize + 1) << (cmult + 2); |
| 2396 | mmc->capacity_user *= mmc->read_bl_len; |
| 2397 | mmc->capacity_boot = 0; |
| 2398 | mmc->capacity_rpmb = 0; |
| 2399 | for (i = 0; i < 4; i++) |
| 2400 | mmc->capacity_gp[i] = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2401 | |
Simon Glass | 8bfa195 | 2013-04-03 08:54:30 +0000 | [diff] [blame] | 2402 | if (mmc->read_bl_len > MMC_MAX_BLOCK_LEN) |
| 2403 | mmc->read_bl_len = MMC_MAX_BLOCK_LEN; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2404 | |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2405 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Simon Glass | 8bfa195 | 2013-04-03 08:54:30 +0000 | [diff] [blame] | 2406 | if (mmc->write_bl_len > MMC_MAX_BLOCK_LEN) |
| 2407 | mmc->write_bl_len = MMC_MAX_BLOCK_LEN; |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2408 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2409 | |
Markus Niebel | ab71188 | 2013-12-16 13:40:46 +0100 | [diff] [blame] | 2410 | if ((mmc->dsr_imp) && (0xffffffff != mmc->dsr)) { |
| 2411 | cmd.cmdidx = MMC_CMD_SET_DSR; |
| 2412 | cmd.cmdarg = (mmc->dsr & 0xffff) << 16; |
| 2413 | cmd.resp_type = MMC_RSP_NONE; |
| 2414 | if (mmc_send_cmd(mmc, &cmd, NULL)) |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 2415 | pr_warn("MMC: SET_DSR failed\n"); |
Markus Niebel | ab71188 | 2013-12-16 13:40:46 +0100 | [diff] [blame] | 2416 | } |
| 2417 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2418 | /* Select the card, and put it into Transfer Mode */ |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2419 | if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */ |
| 2420 | cmd.cmdidx = MMC_CMD_SELECT_CARD; |
Ajay Bhargav | fe8f706 | 2011-10-05 03:13:23 +0000 | [diff] [blame] | 2421 | cmd.resp_type = MMC_RSP_R1; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2422 | cmd.cmdarg = mmc->rca << 16; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2423 | err = mmc_send_cmd(mmc, &cmd, NULL); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2424 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 2425 | if (err) |
| 2426 | return err; |
| 2427 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2428 | |
Lei Wen | e6f99a5 | 2011-06-22 17:03:31 +0000 | [diff] [blame] | 2429 | /* |
| 2430 | * For SD, its erase group is always one sector |
| 2431 | */ |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2432 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Lei Wen | e6f99a5 | 2011-06-22 17:03:31 +0000 | [diff] [blame] | 2433 | mmc->erase_grp_size = 1; |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2434 | #endif |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2435 | mmc->part_config = MMCPART_NOAVAILABLE; |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2436 | |
Jean-Jacques Hiblot | dfda9d8 | 2017-09-21 16:29:51 +0200 | [diff] [blame] | 2437 | err = mmc_startup_v4(mmc); |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 2438 | if (err) |
| 2439 | return err; |
Sukumar Ghorai | d23e2c0 | 2010-09-20 18:29:29 +0530 | [diff] [blame] | 2440 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2441 | err = mmc_set_capacity(mmc, mmc_get_blk_desc(mmc)->hwpart); |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 2442 | if (err) |
| 2443 | return err; |
| 2444 | |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 2445 | #if CONFIG_IS_ENABLED(MMC_TINY) |
| 2446 | mmc_set_clock(mmc, mmc->legacy_speed, false); |
| 2447 | mmc_select_mode(mmc, IS_SD(mmc) ? SD_LEGACY : MMC_LEGACY); |
| 2448 | mmc_set_bus_width(mmc, 1); |
| 2449 | #else |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 2450 | if (IS_SD(mmc)) { |
| 2451 | err = sd_get_capabilities(mmc); |
| 2452 | if (err) |
| 2453 | return err; |
| 2454 | err = sd_select_mode_and_width(mmc, mmc->card_caps); |
| 2455 | } else { |
| 2456 | err = mmc_get_capabilities(mmc); |
| 2457 | if (err) |
| 2458 | return err; |
| 2459 | mmc_select_mode_and_width(mmc, mmc->card_caps); |
| 2460 | } |
Marek Vasut | 62d77ce | 2018-04-15 00:37:11 +0200 | [diff] [blame] | 2461 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2462 | if (err) |
| 2463 | return err; |
| 2464 | |
Jean-Jacques Hiblot | 01298da | 2017-09-21 16:30:09 +0200 | [diff] [blame] | 2465 | mmc->best_mode = mmc->selected_mode; |
Jaehoon Chung | ad5fd92 | 2012-03-26 21:16:03 +0000 | [diff] [blame] | 2466 | |
Andrew Gabbasov | 5af8f45 | 2014-12-01 06:59:11 -0600 | [diff] [blame] | 2467 | /* Fix the block length for DDR mode */ |
| 2468 | if (mmc->ddr_mode) { |
| 2469 | mmc->read_bl_len = MMC_MAX_BLOCK_LEN; |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2470 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Andrew Gabbasov | 5af8f45 | 2014-12-01 06:59:11 -0600 | [diff] [blame] | 2471 | mmc->write_bl_len = MMC_MAX_BLOCK_LEN; |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 2472 | #endif |
Andrew Gabbasov | 5af8f45 | 2014-12-01 06:59:11 -0600 | [diff] [blame] | 2473 | } |
| 2474 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2475 | /* fill in device description */ |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2476 | bdesc = mmc_get_blk_desc(mmc); |
| 2477 | bdesc->lun = 0; |
| 2478 | bdesc->hwpart = 0; |
| 2479 | bdesc->type = 0; |
| 2480 | bdesc->blksz = mmc->read_bl_len; |
| 2481 | bdesc->log2blksz = LOG2(bdesc->blksz); |
| 2482 | bdesc->lba = lldiv(mmc->capacity, mmc->read_bl_len); |
Sjoerd Simons | fc011f6 | 2015-12-04 23:27:40 +0100 | [diff] [blame] | 2483 | #if !defined(CONFIG_SPL_BUILD) || \ |
| 2484 | (defined(CONFIG_SPL_LIBCOMMON_SUPPORT) && \ |
| 2485 | !defined(CONFIG_USE_TINY_PRINTF)) |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2486 | sprintf(bdesc->vendor, "Man %06x Snr %04x%04x", |
Taylor Hutt | babce5f | 2012-10-20 17:15:59 +0000 | [diff] [blame] | 2487 | mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff), |
| 2488 | (mmc->cid[3] >> 16) & 0xffff); |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2489 | 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] | 2490 | (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff, |
| 2491 | (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff, |
| 2492 | (mmc->cid[2] >> 24) & 0xff); |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2493 | sprintf(bdesc->revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf, |
Taylor Hutt | babce5f | 2012-10-20 17:15:59 +0000 | [diff] [blame] | 2494 | (mmc->cid[2] >> 16) & 0xf); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 2495 | #else |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2496 | bdesc->vendor[0] = 0; |
| 2497 | bdesc->product[0] = 0; |
| 2498 | bdesc->revision[0] = 0; |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 2499 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2500 | |
Andre Przywara | eef05fd | 2018-12-17 10:05:45 +0000 | [diff] [blame] | 2501 | #if !defined(CONFIG_DM_MMC) && (!defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT)) |
| 2502 | part_init(bdesc); |
| 2503 | #endif |
| 2504 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2505 | return 0; |
| 2506 | } |
| 2507 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 2508 | static int mmc_send_if_cond(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2509 | { |
| 2510 | struct mmc_cmd cmd; |
| 2511 | int err; |
| 2512 | |
| 2513 | cmd.cmdidx = SD_CMD_SEND_IF_COND; |
| 2514 | /* 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] | 2515 | cmd.cmdarg = ((mmc->cfg->voltages & 0xff8000) != 0) << 8 | 0xaa; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2516 | cmd.resp_type = MMC_RSP_R7; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2517 | |
| 2518 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 2519 | |
| 2520 | if (err) |
| 2521 | return err; |
| 2522 | |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 2523 | if ((cmd.response[0] & 0xff) != 0xaa) |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 2524 | return -EOPNOTSUPP; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2525 | else |
| 2526 | mmc->version = SD_VERSION_2; |
| 2527 | |
| 2528 | return 0; |
| 2529 | } |
| 2530 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 2531 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Paul Kocialkowski | 95de9ab | 2014-11-08 20:55:45 +0100 | [diff] [blame] | 2532 | /* board-specific MMC power initializations. */ |
| 2533 | __weak void board_mmc_power_init(void) |
| 2534 | { |
| 2535 | } |
Simon Glass | 05cbeb7 | 2017-04-22 19:10:56 -0600 | [diff] [blame] | 2536 | #endif |
Paul Kocialkowski | 95de9ab | 2014-11-08 20:55:45 +0100 | [diff] [blame] | 2537 | |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 2538 | static int mmc_power_init(struct mmc *mmc) |
| 2539 | { |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 2540 | #if CONFIG_IS_ENABLED(DM_MMC) |
Jean-Jacques Hiblot | 06ec045 | 2017-09-21 16:29:48 +0200 | [diff] [blame] | 2541 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 2542 | int ret; |
| 2543 | |
| 2544 | ret = device_get_supply_regulator(mmc->dev, "vmmc-supply", |
Jean-Jacques Hiblot | 06ec045 | 2017-09-21 16:29:48 +0200 | [diff] [blame] | 2545 | &mmc->vmmc_supply); |
| 2546 | if (ret) |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 2547 | pr_debug("%s: No vmmc supply\n", mmc->dev->name); |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 2548 | |
Jean-Jacques Hiblot | 06ec045 | 2017-09-21 16:29:48 +0200 | [diff] [blame] | 2549 | ret = device_get_supply_regulator(mmc->dev, "vqmmc-supply", |
| 2550 | &mmc->vqmmc_supply); |
| 2551 | if (ret) |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 2552 | pr_debug("%s: No vqmmc supply\n", mmc->dev->name); |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 2553 | #endif |
Simon Glass | 05cbeb7 | 2017-04-22 19:10:56 -0600 | [diff] [blame] | 2554 | #else /* !CONFIG_DM_MMC */ |
| 2555 | /* |
| 2556 | * Driver model should use a regulator, as above, rather than calling |
| 2557 | * out to board code. |
| 2558 | */ |
| 2559 | board_mmc_power_init(); |
| 2560 | #endif |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 2561 | return 0; |
| 2562 | } |
| 2563 | |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 2564 | /* |
| 2565 | * put the host in the initial state: |
| 2566 | * - turn on Vdd (card power supply) |
| 2567 | * - configure the bus width and clock to minimal values |
| 2568 | */ |
| 2569 | static void mmc_set_initial_state(struct mmc *mmc) |
| 2570 | { |
| 2571 | int err; |
| 2572 | |
| 2573 | /* First try to set 3.3V. If it fails set to 1.8V */ |
| 2574 | err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_330); |
| 2575 | if (err != 0) |
| 2576 | err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_180); |
| 2577 | if (err != 0) |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 2578 | pr_warn("mmc: failed to set signal voltage\n"); |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 2579 | |
| 2580 | mmc_select_mode(mmc, MMC_LEGACY); |
| 2581 | mmc_set_bus_width(mmc, 1); |
Jaehoon Chung | 6511718 | 2018-01-26 19:25:29 +0900 | [diff] [blame] | 2582 | mmc_set_clock(mmc, 0, MMC_CLK_ENABLE); |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 2583 | } |
| 2584 | |
| 2585 | static int mmc_power_on(struct mmc *mmc) |
| 2586 | { |
| 2587 | #if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR) |
| 2588 | if (mmc->vmmc_supply) { |
| 2589 | int ret = regulator_set_enable(mmc->vmmc_supply, true); |
| 2590 | |
| 2591 | if (ret) { |
| 2592 | puts("Error enabling VMMC supply\n"); |
| 2593 | return ret; |
| 2594 | } |
| 2595 | } |
| 2596 | #endif |
| 2597 | return 0; |
| 2598 | } |
| 2599 | |
| 2600 | static int mmc_power_off(struct mmc *mmc) |
| 2601 | { |
Jaehoon Chung | 6511718 | 2018-01-26 19:25:29 +0900 | [diff] [blame] | 2602 | mmc_set_clock(mmc, 0, MMC_CLK_DISABLE); |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 2603 | #if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR) |
| 2604 | if (mmc->vmmc_supply) { |
| 2605 | int ret = regulator_set_enable(mmc->vmmc_supply, false); |
| 2606 | |
| 2607 | if (ret) { |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 2608 | pr_debug("Error disabling VMMC supply\n"); |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 2609 | return ret; |
| 2610 | } |
| 2611 | } |
| 2612 | #endif |
| 2613 | return 0; |
| 2614 | } |
| 2615 | |
| 2616 | static int mmc_power_cycle(struct mmc *mmc) |
| 2617 | { |
| 2618 | int ret; |
| 2619 | |
| 2620 | ret = mmc_power_off(mmc); |
| 2621 | if (ret) |
| 2622 | return ret; |
| 2623 | /* |
| 2624 | * SD spec recommends at least 1ms of delay. Let's wait for 2ms |
| 2625 | * to be on the safer side. |
| 2626 | */ |
| 2627 | udelay(2000); |
| 2628 | return mmc_power_on(mmc); |
| 2629 | } |
| 2630 | |
Jon Nettleton | 6c09eba | 2018-06-11 15:26:19 +0300 | [diff] [blame] | 2631 | int mmc_get_op_cond(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2632 | { |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 2633 | bool uhs_en = supports_uhs(mmc->cfg->host_caps); |
Macpaul Lin | afd5932 | 2011-11-14 23:35:39 +0000 | [diff] [blame] | 2634 | int err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2635 | |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2636 | if (mmc->has_init) |
| 2637 | return 0; |
| 2638 | |
Yangbo Lu | 5a8dbdc | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 2639 | #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT |
| 2640 | mmc_adapter_card_type_ident(); |
| 2641 | #endif |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 2642 | err = mmc_power_init(mmc); |
| 2643 | if (err) |
| 2644 | return err; |
Paul Kocialkowski | 95de9ab | 2014-11-08 20:55:45 +0100 | [diff] [blame] | 2645 | |
Kishon Vijay Abraham I | 83dc422 | 2017-09-21 16:30:10 +0200 | [diff] [blame] | 2646 | #ifdef CONFIG_MMC_QUIRKS |
| 2647 | mmc->quirks = MMC_QUIRK_RETRY_SET_BLOCKLEN | |
| 2648 | MMC_QUIRK_RETRY_SEND_CID; |
| 2649 | #endif |
| 2650 | |
Jean-Jacques Hiblot | 04a2ea2 | 2017-09-21 16:30:08 +0200 | [diff] [blame] | 2651 | err = mmc_power_cycle(mmc); |
| 2652 | if (err) { |
| 2653 | /* |
| 2654 | * if power cycling is not supported, we should not try |
| 2655 | * to use the UHS modes, because we wouldn't be able to |
| 2656 | * recover from an error during the UHS initialization. |
| 2657 | */ |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 2658 | pr_debug("Unable to do a full power cycle. Disabling the UHS modes for safety\n"); |
Jean-Jacques Hiblot | 04a2ea2 | 2017-09-21 16:30:08 +0200 | [diff] [blame] | 2659 | uhs_en = false; |
| 2660 | mmc->host_caps &= ~UHS_CAPS; |
| 2661 | err = mmc_power_on(mmc); |
| 2662 | } |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 2663 | if (err) |
| 2664 | return err; |
| 2665 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 2666 | #if CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 2667 | /* The device has already been probed ready for use */ |
| 2668 | #else |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 2669 | /* made sure it's not NULL earlier */ |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 2670 | err = mmc->cfg->ops->init(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2671 | if (err) |
| 2672 | return err; |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 2673 | #endif |
Andrew Gabbasov | 786e8f8 | 2014-12-01 06:59:09 -0600 | [diff] [blame] | 2674 | mmc->ddr_mode = 0; |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 2675 | |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 2676 | retry: |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 2677 | mmc_set_initial_state(mmc); |
Jean-Jacques Hiblot | 318a7a5 | 2017-09-21 16:30:01 +0200 | [diff] [blame] | 2678 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2679 | /* Reset the Card */ |
| 2680 | err = mmc_go_idle(mmc); |
| 2681 | |
| 2682 | if (err) |
| 2683 | return err; |
| 2684 | |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2685 | /* The internal partition reset to user partition(0) at every CMD0*/ |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2686 | mmc_get_blk_desc(mmc)->hwpart = 0; |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2687 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2688 | /* Test for SD version 2 */ |
Macpaul Lin | afd5932 | 2011-11-14 23:35:39 +0000 | [diff] [blame] | 2689 | err = mmc_send_if_cond(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2690 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2691 | /* Now try to get the SD card's operating condition */ |
Jean-Jacques Hiblot | c10b85d | 2017-09-21 16:30:07 +0200 | [diff] [blame] | 2692 | err = sd_send_op_cond(mmc, uhs_en); |
| 2693 | if (err && uhs_en) { |
| 2694 | uhs_en = false; |
| 2695 | mmc_power_cycle(mmc); |
| 2696 | goto retry; |
| 2697 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2698 | |
| 2699 | /* If the command timed out, we check for an MMC card */ |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 2700 | if (err == -ETIMEDOUT) { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2701 | err = mmc_send_op_cond(mmc); |
| 2702 | |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2703 | if (err) { |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 2704 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 2705 | pr_err("Card did not respond to voltage select!\n"); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 2706 | #endif |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 2707 | return -EOPNOTSUPP; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2708 | } |
| 2709 | } |
| 2710 | |
Jon Nettleton | 6c09eba | 2018-06-11 15:26:19 +0300 | [diff] [blame] | 2711 | return err; |
| 2712 | } |
| 2713 | |
| 2714 | int mmc_start_init(struct mmc *mmc) |
| 2715 | { |
| 2716 | bool no_card; |
| 2717 | int err = 0; |
| 2718 | |
| 2719 | /* |
| 2720 | * all hosts are capable of 1 bit bus-width and able to use the legacy |
| 2721 | * timings. |
| 2722 | */ |
| 2723 | mmc->host_caps = mmc->cfg->host_caps | MMC_CAP(SD_LEGACY) | |
| 2724 | MMC_CAP(MMC_LEGACY) | MMC_MODE_1BIT; |
| 2725 | |
| 2726 | #if !defined(CONFIG_MMC_BROKEN_CD) |
| 2727 | /* we pretend there's no card when init is NULL */ |
| 2728 | no_card = mmc_getcd(mmc) == 0; |
| 2729 | #else |
| 2730 | no_card = 0; |
| 2731 | #endif |
| 2732 | #if !CONFIG_IS_ENABLED(DM_MMC) |
| 2733 | no_card = no_card || (mmc->cfg->ops->init == NULL); |
| 2734 | #endif |
| 2735 | if (no_card) { |
| 2736 | mmc->has_init = 0; |
| 2737 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
| 2738 | pr_err("MMC: no card present\n"); |
| 2739 | #endif |
| 2740 | return -ENOMEDIUM; |
| 2741 | } |
| 2742 | |
| 2743 | err = mmc_get_op_cond(mmc); |
| 2744 | |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2745 | if (!err) |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2746 | mmc->init_in_progress = 1; |
| 2747 | |
| 2748 | return err; |
| 2749 | } |
| 2750 | |
| 2751 | static int mmc_complete_init(struct mmc *mmc) |
| 2752 | { |
| 2753 | int err = 0; |
| 2754 | |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2755 | mmc->init_in_progress = 0; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2756 | if (mmc->op_cond_pending) |
| 2757 | err = mmc_complete_op_cond(mmc); |
| 2758 | |
| 2759 | if (!err) |
| 2760 | err = mmc_startup(mmc); |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2761 | if (err) |
| 2762 | mmc->has_init = 0; |
| 2763 | else |
| 2764 | mmc->has_init = 1; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2765 | return err; |
| 2766 | } |
| 2767 | |
| 2768 | int mmc_init(struct mmc *mmc) |
| 2769 | { |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2770 | int err = 0; |
Vipul Kumar | 36332b6 | 2018-05-03 12:20:54 +0530 | [diff] [blame] | 2771 | __maybe_unused ulong start; |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 2772 | #if CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 2773 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc->dev); |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2774 | |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 2775 | upriv->mmc = mmc; |
| 2776 | #endif |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2777 | if (mmc->has_init) |
| 2778 | return 0; |
Mateusz Zalega | d803fea | 2014-04-29 20:15:30 +0200 | [diff] [blame] | 2779 | |
| 2780 | start = get_timer(0); |
| 2781 | |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2782 | if (!mmc->init_in_progress) |
| 2783 | err = mmc_start_init(mmc); |
| 2784 | |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2785 | if (!err) |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2786 | err = mmc_complete_init(mmc); |
Jagan Teki | 919b485 | 2017-01-10 11:18:43 +0100 | [diff] [blame] | 2787 | if (err) |
Masahiro Yamada | d4d6488 | 2018-01-28 19:11:42 +0900 | [diff] [blame] | 2788 | pr_info("%s: %d, time %lu\n", __func__, err, get_timer(start)); |
Jagan Teki | 919b485 | 2017-01-10 11:18:43 +0100 | [diff] [blame] | 2789 | |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2790 | return err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2791 | } |
| 2792 | |
Marek Vasut | fceea99 | 2019-01-29 04:45:51 +0100 | [diff] [blame] | 2793 | #if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \ |
| 2794 | CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \ |
| 2795 | CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) |
| 2796 | int mmc_deinit(struct mmc *mmc) |
| 2797 | { |
| 2798 | u32 caps_filtered; |
| 2799 | |
| 2800 | if (!mmc->has_init) |
| 2801 | return 0; |
| 2802 | |
| 2803 | if (IS_SD(mmc)) { |
| 2804 | caps_filtered = mmc->card_caps & |
| 2805 | ~(MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25) | |
| 2806 | MMC_CAP(UHS_SDR50) | MMC_CAP(UHS_DDR50) | |
| 2807 | MMC_CAP(UHS_SDR104)); |
| 2808 | |
| 2809 | return sd_select_mode_and_width(mmc, caps_filtered); |
| 2810 | } else { |
| 2811 | caps_filtered = mmc->card_caps & |
| 2812 | ~(MMC_CAP(MMC_HS_200) | MMC_CAP(MMC_HS_400)); |
| 2813 | |
| 2814 | return mmc_select_mode_and_width(mmc, caps_filtered); |
| 2815 | } |
| 2816 | } |
| 2817 | #endif |
| 2818 | |
Markus Niebel | ab71188 | 2013-12-16 13:40:46 +0100 | [diff] [blame] | 2819 | int mmc_set_dsr(struct mmc *mmc, u16 val) |
| 2820 | { |
| 2821 | mmc->dsr = val; |
| 2822 | return 0; |
| 2823 | } |
| 2824 | |
Jeroen Hofstee | cee9ab7 | 2014-07-10 22:46:28 +0200 | [diff] [blame] | 2825 | /* CPU-specific MMC initializations */ |
| 2826 | __weak int cpu_mmc_init(bd_t *bis) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2827 | { |
| 2828 | return -1; |
| 2829 | } |
| 2830 | |
Jeroen Hofstee | cee9ab7 | 2014-07-10 22:46:28 +0200 | [diff] [blame] | 2831 | /* board-specific MMC initializations. */ |
| 2832 | __weak int board_mmc_init(bd_t *bis) |
| 2833 | { |
| 2834 | return -1; |
| 2835 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2836 | |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2837 | void mmc_set_preinit(struct mmc *mmc, int preinit) |
| 2838 | { |
| 2839 | mmc->preinit = preinit; |
| 2840 | } |
| 2841 | |
Faiz Abbas | 8a856db | 2018-02-12 19:35:24 +0530 | [diff] [blame] | 2842 | #if CONFIG_IS_ENABLED(DM_MMC) |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2843 | static int mmc_probe(bd_t *bis) |
| 2844 | { |
Simon Glass | 4a1db6d | 2015-12-29 05:22:49 -0700 | [diff] [blame] | 2845 | int ret, i; |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2846 | struct uclass *uc; |
Simon Glass | 4a1db6d | 2015-12-29 05:22:49 -0700 | [diff] [blame] | 2847 | struct udevice *dev; |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2848 | |
| 2849 | ret = uclass_get(UCLASS_MMC, &uc); |
| 2850 | if (ret) |
| 2851 | return ret; |
| 2852 | |
Simon Glass | 4a1db6d | 2015-12-29 05:22:49 -0700 | [diff] [blame] | 2853 | /* |
| 2854 | * Try to add them in sequence order. Really with driver model we |
| 2855 | * should allow holes, but the current MMC list does not allow that. |
| 2856 | * So if we request 0, 1, 3 we will get 0, 1, 2. |
| 2857 | */ |
| 2858 | for (i = 0; ; i++) { |
| 2859 | ret = uclass_get_device_by_seq(UCLASS_MMC, i, &dev); |
| 2860 | if (ret == -ENODEV) |
| 2861 | break; |
| 2862 | } |
| 2863 | uclass_foreach_dev(dev, uc) { |
| 2864 | ret = device_probe(dev); |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2865 | if (ret) |
Jean-Jacques Hiblot | d8e3d42 | 2017-11-30 17:44:00 +0100 | [diff] [blame] | 2866 | pr_err("%s - probe failed: %d\n", dev->name, ret); |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2867 | } |
| 2868 | |
| 2869 | return 0; |
| 2870 | } |
| 2871 | #else |
| 2872 | static int mmc_probe(bd_t *bis) |
| 2873 | { |
| 2874 | if (board_mmc_init(bis) < 0) |
| 2875 | cpu_mmc_init(bis); |
| 2876 | |
| 2877 | return 0; |
| 2878 | } |
| 2879 | #endif |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2880 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2881 | int mmc_initialize(bd_t *bis) |
| 2882 | { |
Daniel Kochmański | 1b26bab | 2015-05-29 16:55:43 +0200 | [diff] [blame] | 2883 | static int initialized = 0; |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2884 | int ret; |
Daniel Kochmański | 1b26bab | 2015-05-29 16:55:43 +0200 | [diff] [blame] | 2885 | if (initialized) /* Avoid initializing mmc multiple times */ |
| 2886 | return 0; |
| 2887 | initialized = 1; |
| 2888 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 2889 | #if !CONFIG_IS_ENABLED(BLK) |
Marek Vasut | b5b838f | 2016-12-01 02:06:33 +0100 | [diff] [blame] | 2890 | #if !CONFIG_IS_ENABLED(MMC_TINY) |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2891 | mmc_list_init(); |
| 2892 | #endif |
Marek Vasut | b5b838f | 2016-12-01 02:06:33 +0100 | [diff] [blame] | 2893 | #endif |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2894 | ret = mmc_probe(bis); |
| 2895 | if (ret) |
| 2896 | return ret; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2897 | |
Ying Zhang | bb0dc10 | 2013-08-16 15:16:11 +0800 | [diff] [blame] | 2898 | #ifndef CONFIG_SPL_BUILD |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2899 | print_mmc_devices(','); |
Ying Zhang | bb0dc10 | 2013-08-16 15:16:11 +0800 | [diff] [blame] | 2900 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2901 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2902 | mmc_do_preinit(); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2903 | return 0; |
| 2904 | } |
Tomas Melin | cd3d488 | 2016-11-25 11:01:03 +0200 | [diff] [blame] | 2905 | |
| 2906 | #ifdef CONFIG_CMD_BKOPS_ENABLE |
| 2907 | int mmc_set_bkops_enable(struct mmc *mmc) |
| 2908 | { |
| 2909 | int err; |
| 2910 | ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN); |
| 2911 | |
| 2912 | err = mmc_send_ext_csd(mmc, ext_csd); |
| 2913 | if (err) { |
| 2914 | puts("Could not get ext_csd register values\n"); |
| 2915 | return err; |
| 2916 | } |
| 2917 | |
| 2918 | if (!(ext_csd[EXT_CSD_BKOPS_SUPPORT] & 0x1)) { |
| 2919 | puts("Background operations not supported on device\n"); |
| 2920 | return -EMEDIUMTYPE; |
| 2921 | } |
| 2922 | |
| 2923 | if (ext_csd[EXT_CSD_BKOPS_EN] & 0x1) { |
| 2924 | puts("Background operations already enabled\n"); |
| 2925 | return 0; |
| 2926 | } |
| 2927 | |
| 2928 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BKOPS_EN, 1); |
| 2929 | if (err) { |
| 2930 | puts("Failed to enable manual background operations\n"); |
| 2931 | return err; |
| 2932 | } |
| 2933 | |
| 2934 | puts("Enabled manual background operations\n"); |
| 2935 | |
| 2936 | return 0; |
| 2937 | } |
| 2938 | #endif |