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