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