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