blob: d79cdef62ed21d1ce1993074cd625ba98f2d805e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Andy Fleming272cc702008-10-30 16:41:01 -05002/*
3 * Copyright 2008, Freescale Semiconductor, Inc
Yangbo Lu39913ac2020-06-17 18:08:58 +08004 * Copyright 2020 NXP
Andy Fleming272cc702008-10-30 16:41:01 -05005 * Andy Fleming
6 *
7 * Based vaguely on the Linux code
Andy Fleming272cc702008-10-30 16:41:01 -05008 */
9
10#include <config.h>
11#include <common.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060012#include <blk.h>
Andy Fleming272cc702008-10-30 16:41:01 -050013#include <command.h>
Sjoerd Simons8e3332e2015-08-30 16:55:45 -060014#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Sjoerd Simons8e3332e2015-08-30 16:55:45 -060016#include <dm/device-internal.h>
Stephen Warrend4622df2014-05-23 12:47:06 -060017#include <errno.h>
Andy Fleming272cc702008-10-30 16:41:01 -050018#include <mmc.h>
19#include <part.h>
Simon Glasscd93d622020-05-10 11:40:13 -060020#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060021#include <linux/delay.h>
Peng Fan2051aef2016-10-11 15:08:43 +080022#include <power/regulator.h>
Andy Fleming272cc702008-10-30 16:41:01 -050023#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060024#include <memalign.h>
Andy Fleming272cc702008-10-30 16:41:01 -050025#include <linux/list.h>
Rabin Vincent9b1f9422009-04-05 13:30:54 +053026#include <div64.h>
Paul Burtonda61fa52013-09-09 15:30:26 +010027#include "mmc_private.h"
Andy Fleming272cc702008-10-30 16:41:01 -050028
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +020029#define DEFAULT_CMD6_TIMEOUT_MS 500
30
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +020031static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage);
Marek Vasutb5b838f2016-12-01 02:06:33 +010032
Simon Glasse7881d82017-07-29 11:35:31 -060033#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020034
Sam Protsenko6cf8a902019-08-14 22:52:51 +030035static int mmc_wait_dat0(struct mmc *mmc, int state, int timeout_us)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020036{
37 return -ENOSYS;
38}
39
Jeroen Hofstee750121c2014-07-12 21:24:08 +020040__weak int board_mmc_getwp(struct mmc *mmc)
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000041{
42 return -1;
43}
44
45int mmc_getwp(struct mmc *mmc)
46{
47 int wp;
48
49 wp = board_mmc_getwp(mmc);
50
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000051 if (wp < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020052 if (mmc->cfg->ops->getwp)
53 wp = mmc->cfg->ops->getwp(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000054 else
55 wp = 0;
56 }
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000057
58 return wp;
59}
60
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +020061__weak int board_mmc_getcd(struct mmc *mmc)
62{
Stefano Babic11fdade2010-02-05 15:04:43 +010063 return -1;
64}
Simon Glass8ca51e52016-06-12 23:30:22 -060065#endif
Stefano Babic11fdade2010-02-05 15:04:43 +010066
Marek Vasut8635ff92012-03-15 18:41:35 +000067#ifdef CONFIG_MMC_TRACE
Simon Glassc0c76eb2016-06-12 23:30:20 -060068void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd)
69{
70 printf("CMD_SEND:%d\n", cmd->cmdidx);
Marek Vasut7d5ccb12019-03-23 18:54:45 +010071 printf("\t\tARG\t\t\t 0x%08x\n", cmd->cmdarg);
Simon Glassc0c76eb2016-06-12 23:30:20 -060072}
73
74void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, int ret)
75{
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +000076 int i;
77 u8 *ptr;
78
Bin Meng7863ce52016-03-17 21:53:14 -070079 if (ret) {
80 printf("\t\tRET\t\t\t %d\n", ret);
81 } else {
82 switch (cmd->resp_type) {
83 case MMC_RSP_NONE:
84 printf("\t\tMMC_RSP_NONE\n");
85 break;
86 case MMC_RSP_R1:
Marek Vasut7d5ccb12019-03-23 18:54:45 +010087 printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070088 cmd->response[0]);
89 break;
90 case MMC_RSP_R1b:
Marek Vasut7d5ccb12019-03-23 18:54:45 +010091 printf("\t\tMMC_RSP_R1b\t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070092 cmd->response[0]);
93 break;
94 case MMC_RSP_R2:
Marek Vasut7d5ccb12019-03-23 18:54:45 +010095 printf("\t\tMMC_RSP_R2\t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070096 cmd->response[0]);
Marek Vasut7d5ccb12019-03-23 18:54:45 +010097 printf("\t\t \t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070098 cmd->response[1]);
Marek Vasut7d5ccb12019-03-23 18:54:45 +010099 printf("\t\t \t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -0700100 cmd->response[2]);
Marek Vasut7d5ccb12019-03-23 18:54:45 +0100101 printf("\t\t \t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -0700102 cmd->response[3]);
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000103 printf("\n");
Bin Meng7863ce52016-03-17 21:53:14 -0700104 printf("\t\t\t\t\tDUMPING DATA\n");
105 for (i = 0; i < 4; i++) {
106 int j;
107 printf("\t\t\t\t\t%03d - ", i*4);
108 ptr = (u8 *)&cmd->response[i];
109 ptr += 3;
110 for (j = 0; j < 4; j++)
Marek Vasut7d5ccb12019-03-23 18:54:45 +0100111 printf("%02x ", *ptr--);
Bin Meng7863ce52016-03-17 21:53:14 -0700112 printf("\n");
113 }
114 break;
115 case MMC_RSP_R3:
Marek Vasut7d5ccb12019-03-23 18:54:45 +0100116 printf("\t\tMMC_RSP_R3,4\t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -0700117 cmd->response[0]);
118 break;
119 default:
120 printf("\t\tERROR MMC rsp not supported\n");
121 break;
Bin Meng53e8e402016-03-17 21:53:13 -0700122 }
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000123 }
Simon Glassc0c76eb2016-06-12 23:30:20 -0600124}
125
126void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd)
127{
128 int status;
129
130 status = (cmd->response[0] & MMC_STATUS_CURR_STATE) >> 9;
131 printf("CURR STATE:%d\n", status);
132}
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000133#endif
Simon Glassc0c76eb2016-06-12 23:30:20 -0600134
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200135#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
136const char *mmc_mode_name(enum bus_mode mode)
137{
138 static const char *const names[] = {
139 [MMC_LEGACY] = "MMC legacy",
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200140 [MMC_HS] = "MMC High Speed (26MHz)",
141 [SD_HS] = "SD High Speed (50MHz)",
142 [UHS_SDR12] = "UHS SDR12 (25MHz)",
143 [UHS_SDR25] = "UHS SDR25 (50MHz)",
144 [UHS_SDR50] = "UHS SDR50 (100MHz)",
145 [UHS_SDR104] = "UHS SDR104 (208MHz)",
146 [UHS_DDR50] = "UHS DDR50 (50MHz)",
147 [MMC_HS_52] = "MMC High Speed (52MHz)",
148 [MMC_DDR_52] = "MMC DDR52 (52MHz)",
149 [MMC_HS_200] = "HS200 (200MHz)",
Peng Fan3dd26262018-08-10 14:07:54 +0800150 [MMC_HS_400] = "HS400 (200MHz)",
Peng Fan44acd492019-07-10 14:43:07 +0800151 [MMC_HS_400_ES] = "HS400ES (200MHz)",
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200152 };
153
154 if (mode >= MMC_MODES_END)
155 return "Unknown mode";
156 else
157 return names[mode];
158}
159#endif
160
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200161static uint mmc_mode2freq(struct mmc *mmc, enum bus_mode mode)
162{
163 static const int freqs[] = {
Jaehoon Chung1b313aa2018-01-30 14:10:16 +0900164 [MMC_LEGACY] = 25000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200165 [MMC_HS] = 26000000,
166 [SD_HS] = 50000000,
Jaehoon Chung1b313aa2018-01-30 14:10:16 +0900167 [MMC_HS_52] = 52000000,
168 [MMC_DDR_52] = 52000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200169 [UHS_SDR12] = 25000000,
170 [UHS_SDR25] = 50000000,
171 [UHS_SDR50] = 100000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200172 [UHS_DDR50] = 50000000,
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100173 [UHS_SDR104] = 208000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200174 [MMC_HS_200] = 200000000,
Peng Fan3dd26262018-08-10 14:07:54 +0800175 [MMC_HS_400] = 200000000,
Peng Fan44acd492019-07-10 14:43:07 +0800176 [MMC_HS_400_ES] = 200000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200177 };
178
179 if (mode == MMC_LEGACY)
180 return mmc->legacy_speed;
181 else if (mode >= MMC_MODES_END)
182 return 0;
183 else
184 return freqs[mode];
185}
186
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200187static int mmc_select_mode(struct mmc *mmc, enum bus_mode mode)
188{
189 mmc->selected_mode = mode;
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200190 mmc->tran_speed = mmc_mode2freq(mmc, mode);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200191 mmc->ddr_mode = mmc_is_mode_ddr(mode);
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900192 pr_debug("selecting mode %s (freq : %d MHz)\n", mmc_mode_name(mode),
193 mmc->tran_speed / 1000000);
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200194 return 0;
195}
196
Simon Glasse7881d82017-07-29 11:35:31 -0600197#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glassc0c76eb2016-06-12 23:30:20 -0600198int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
199{
200 int ret;
201
202 mmmc_trace_before_send(mmc, cmd);
203 ret = mmc->cfg->ops->send_cmd(mmc, cmd, data);
204 mmmc_trace_after_send(mmc, cmd, ret);
205
Marek Vasut8635ff92012-03-15 18:41:35 +0000206 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500207}
Simon Glass8ca51e52016-06-12 23:30:22 -0600208#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500209
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200210int mmc_send_status(struct mmc *mmc, unsigned int *status)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000211{
212 struct mmc_cmd cmd;
Jan Kloetzked617c422012-02-05 22:29:12 +0000213 int err, retries = 5;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000214
215 cmd.cmdidx = MMC_CMD_SEND_STATUS;
216 cmd.resp_type = MMC_RSP_R1;
Marek Vasutaaf3d412011-08-10 09:24:48 +0200217 if (!mmc_host_is_spi(mmc))
218 cmd.cmdarg = mmc->rca << 16;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000219
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200220 while (retries--) {
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000221 err = mmc_send_cmd(mmc, &cmd, NULL);
Jan Kloetzked617c422012-02-05 22:29:12 +0000222 if (!err) {
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200223 mmc_trace_state(mmc, &cmd);
224 *status = cmd.response[0];
225 return 0;
226 }
227 }
228 mmc_trace_state(mmc, &cmd);
229 return -ECOMM;
230}
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +0200231
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300232int mmc_poll_for_busy(struct mmc *mmc, int timeout_ms)
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200233{
234 unsigned int status;
235 int err;
236
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300237 err = mmc_wait_dat0(mmc, 1, timeout_ms * 1000);
Jean-Jacques Hiblotcd0b80e2019-07-02 10:53:53 +0200238 if (err != -ENOSYS)
239 return err;
240
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200241 while (1) {
242 err = mmc_send_status(mmc, &status);
243 if (err)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000244 return err;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000245
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200246 if ((status & MMC_STATUS_RDY_FOR_DATA) &&
247 (status & MMC_STATUS_CURR_STATE) !=
248 MMC_STATE_PRG)
249 break;
250
251 if (status & MMC_STATUS_MASK) {
252#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
253 pr_err("Status Error: 0x%08x\n", status);
254#endif
255 return -ECOMM;
256 }
257
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300258 if (timeout_ms-- <= 0)
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500259 break;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000260
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500261 udelay(1000);
262 }
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000263
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300264 if (timeout_ms <= 0) {
Paul Burton56196822013-09-04 16:12:25 +0100265#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100266 pr_err("Timeout waiting card ready\n");
Paul Burton56196822013-09-04 16:12:25 +0100267#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900268 return -ETIMEDOUT;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000269 }
270
271 return 0;
272}
273
Paul Burtonda61fa52013-09-09 15:30:26 +0100274int mmc_set_blocklen(struct mmc *mmc, int len)
Andy Fleming272cc702008-10-30 16:41:01 -0500275{
276 struct mmc_cmd cmd;
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200277 int err;
Andy Fleming272cc702008-10-30 16:41:01 -0500278
Andrew Gabbasov786e8f82014-12-01 06:59:09 -0600279 if (mmc->ddr_mode)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900280 return 0;
281
Andy Fleming272cc702008-10-30 16:41:01 -0500282 cmd.cmdidx = MMC_CMD_SET_BLOCKLEN;
283 cmd.resp_type = MMC_RSP_R1;
284 cmd.cmdarg = len;
Andy Fleming272cc702008-10-30 16:41:01 -0500285
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200286 err = mmc_send_cmd(mmc, &cmd, NULL);
287
288#ifdef CONFIG_MMC_QUIRKS
289 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SET_BLOCKLEN)) {
290 int retries = 4;
291 /*
292 * It has been seen that SET_BLOCKLEN may fail on the first
293 * attempt, let's try a few more time
294 */
295 do {
296 err = mmc_send_cmd(mmc, &cmd, NULL);
297 if (!err)
298 break;
299 } while (retries--);
300 }
301#endif
302
303 return err;
Andy Fleming272cc702008-10-30 16:41:01 -0500304}
305
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100306#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200307static const u8 tuning_blk_pattern_4bit[] = {
308 0xff, 0x0f, 0xff, 0x00, 0xff, 0xcc, 0xc3, 0xcc,
309 0xc3, 0x3c, 0xcc, 0xff, 0xfe, 0xff, 0xfe, 0xef,
310 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xfb, 0xff, 0xfb,
311 0xbf, 0xff, 0x7f, 0xff, 0x77, 0xf7, 0xbd, 0xef,
312 0xff, 0xf0, 0xff, 0xf0, 0x0f, 0xfc, 0xcc, 0x3c,
313 0xcc, 0x33, 0xcc, 0xcf, 0xff, 0xef, 0xff, 0xee,
314 0xff, 0xfd, 0xff, 0xfd, 0xdf, 0xff, 0xbf, 0xff,
315 0xbb, 0xff, 0xf7, 0xff, 0xf7, 0x7f, 0x7b, 0xde,
316};
317
318static const u8 tuning_blk_pattern_8bit[] = {
319 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
320 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc, 0xcc,
321 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff, 0xff,
322 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee, 0xff,
323 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd, 0xdd,
324 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff, 0xbb,
325 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff,
326 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee, 0xff,
327 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00,
328 0x00, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc,
329 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff,
330 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee,
331 0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd,
332 0xdd, 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff,
333 0xbb, 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff,
334 0xff, 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee,
335};
336
337int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error)
338{
339 struct mmc_cmd cmd;
340 struct mmc_data data;
341 const u8 *tuning_block_pattern;
342 int size, err;
343
344 if (mmc->bus_width == 8) {
345 tuning_block_pattern = tuning_blk_pattern_8bit;
346 size = sizeof(tuning_blk_pattern_8bit);
347 } else if (mmc->bus_width == 4) {
348 tuning_block_pattern = tuning_blk_pattern_4bit;
349 size = sizeof(tuning_blk_pattern_4bit);
350 } else {
351 return -EINVAL;
352 }
353
354 ALLOC_CACHE_ALIGN_BUFFER(u8, data_buf, size);
355
356 cmd.cmdidx = opcode;
357 cmd.cmdarg = 0;
358 cmd.resp_type = MMC_RSP_R1;
359
360 data.dest = (void *)data_buf;
361 data.blocks = 1;
362 data.blocksize = size;
363 data.flags = MMC_DATA_READ;
364
365 err = mmc_send_cmd(mmc, &cmd, &data);
366 if (err)
367 return err;
368
369 if (memcmp(data_buf, tuning_block_pattern, size))
370 return -EIO;
371
372 return 0;
373}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100374#endif
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200375
Sascha Silbeff8fef52013-06-14 13:07:25 +0200376static int mmc_read_blocks(struct mmc *mmc, void *dst, lbaint_t start,
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000377 lbaint_t blkcnt)
Andy Fleming272cc702008-10-30 16:41:01 -0500378{
379 struct mmc_cmd cmd;
380 struct mmc_data data;
381
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700382 if (blkcnt > 1)
383 cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK;
384 else
385 cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK;
Andy Fleming272cc702008-10-30 16:41:01 -0500386
387 if (mmc->high_capacity)
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700388 cmd.cmdarg = start;
Andy Fleming272cc702008-10-30 16:41:01 -0500389 else
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700390 cmd.cmdarg = start * mmc->read_bl_len;
Andy Fleming272cc702008-10-30 16:41:01 -0500391
392 cmd.resp_type = MMC_RSP_R1;
Andy Fleming272cc702008-10-30 16:41:01 -0500393
394 data.dest = dst;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700395 data.blocks = blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500396 data.blocksize = mmc->read_bl_len;
397 data.flags = MMC_DATA_READ;
398
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700399 if (mmc_send_cmd(mmc, &cmd, &data))
400 return 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500401
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700402 if (blkcnt > 1) {
403 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
404 cmd.cmdarg = 0;
405 cmd.resp_type = MMC_RSP_R1b;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700406 if (mmc_send_cmd(mmc, &cmd, NULL)) {
Paul Burton56196822013-09-04 16:12:25 +0100407#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100408 pr_err("mmc fail to send stop cmd\n");
Paul Burton56196822013-09-04 16:12:25 +0100409#endif
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700410 return 0;
411 }
Andy Fleming272cc702008-10-30 16:41:01 -0500412 }
413
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700414 return blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500415}
416
Marek Vasut145429a2020-04-04 12:45:05 +0200417#if !CONFIG_IS_ENABLED(DM_MMC)
418static int mmc_get_b_max(struct mmc *mmc, void *dst, lbaint_t blkcnt)
419{
420 if (mmc->cfg->ops->get_b_max)
421 return mmc->cfg->ops->get_b_max(mmc, dst, blkcnt);
422 else
423 return mmc->cfg->b_max;
424}
425#endif
426
Simon Glassc4d660d2017-07-04 13:31:19 -0600427#if CONFIG_IS_ENABLED(BLK)
Simon Glass7dba0b92016-06-12 23:30:15 -0600428ulong mmc_bread(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600429#else
Simon Glass7dba0b92016-06-12 23:30:15 -0600430ulong mmc_bread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt,
431 void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600432#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500433{
Simon Glassc4d660d2017-07-04 13:31:19 -0600434#if CONFIG_IS_ENABLED(BLK)
Simon Glass33fb2112016-05-01 13:52:41 -0600435 struct blk_desc *block_dev = dev_get_uclass_platdata(dev);
436#endif
Simon Glassbcce53d2016-02-29 15:25:51 -0700437 int dev_num = block_dev->devnum;
Stephen Warren873cc1d2015-12-07 11:38:49 -0700438 int err;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700439 lbaint_t cur, blocks_todo = blkcnt;
Marek Vasut145429a2020-04-04 12:45:05 +0200440 uint b_max;
Andy Fleming272cc702008-10-30 16:41:01 -0500441
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700442 if (blkcnt == 0)
443 return 0;
444
445 struct mmc *mmc = find_mmc_device(dev_num);
Andy Fleming272cc702008-10-30 16:41:01 -0500446 if (!mmc)
447 return 0;
448
Marek Vasutb5b838f2016-12-01 02:06:33 +0100449 if (CONFIG_IS_ENABLED(MMC_TINY))
450 err = mmc_switch_part(mmc, block_dev->hwpart);
451 else
452 err = blk_dselect_hwpart(block_dev, block_dev->hwpart);
453
Stephen Warren873cc1d2015-12-07 11:38:49 -0700454 if (err < 0)
455 return 0;
456
Simon Glassc40fdca2016-05-01 13:52:35 -0600457 if ((start + blkcnt) > block_dev->lba) {
Paul Burton56196822013-09-04 16:12:25 +0100458#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100459 pr_err("MMC: block number 0x" LBAF " exceeds max(0x" LBAF ")\n",
460 start + blkcnt, block_dev->lba);
Paul Burton56196822013-09-04 16:12:25 +0100461#endif
Lei Wend2bf29e2010-09-13 22:07:27 +0800462 return 0;
463 }
Andy Fleming272cc702008-10-30 16:41:01 -0500464
Simon Glass11692992015-06-23 15:38:50 -0600465 if (mmc_set_blocklen(mmc, mmc->read_bl_len)) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900466 pr_debug("%s: Failed to set blocklen\n", __func__);
Andy Fleming272cc702008-10-30 16:41:01 -0500467 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600468 }
Andy Fleming272cc702008-10-30 16:41:01 -0500469
Marek Vasut145429a2020-04-04 12:45:05 +0200470 b_max = mmc_get_b_max(mmc, dst, blkcnt);
471
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700472 do {
Marek Vasut145429a2020-04-04 12:45:05 +0200473 cur = (blocks_todo > b_max) ? b_max : blocks_todo;
Simon Glass11692992015-06-23 15:38:50 -0600474 if (mmc_read_blocks(mmc, dst, start, cur) != cur) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900475 pr_debug("%s: Failed to read blocks\n", __func__);
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700476 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600477 }
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700478 blocks_todo -= cur;
479 start += cur;
480 dst += cur * mmc->read_bl_len;
481 } while (blocks_todo > 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500482
483 return blkcnt;
484}
485
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000486static int mmc_go_idle(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -0500487{
488 struct mmc_cmd cmd;
489 int err;
490
491 udelay(1000);
492
493 cmd.cmdidx = MMC_CMD_GO_IDLE_STATE;
494 cmd.cmdarg = 0;
495 cmd.resp_type = MMC_RSP_NONE;
Andy Fleming272cc702008-10-30 16:41:01 -0500496
497 err = mmc_send_cmd(mmc, &cmd, NULL);
498
499 if (err)
500 return err;
501
502 udelay(2000);
503
504 return 0;
505}
506
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100507#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200508static int mmc_switch_voltage(struct mmc *mmc, int signal_voltage)
509{
510 struct mmc_cmd cmd;
511 int err = 0;
512
513 /*
514 * Send CMD11 only if the request is to switch the card to
515 * 1.8V signalling.
516 */
517 if (signal_voltage == MMC_SIGNAL_VOLTAGE_330)
518 return mmc_set_signal_voltage(mmc, signal_voltage);
519
520 cmd.cmdidx = SD_CMD_SWITCH_UHS18V;
521 cmd.cmdarg = 0;
522 cmd.resp_type = MMC_RSP_R1;
523
524 err = mmc_send_cmd(mmc, &cmd, NULL);
525 if (err)
526 return err;
527
528 if (!mmc_host_is_spi(mmc) && (cmd.response[0] & MMC_STATUS_ERROR))
529 return -EIO;
530
531 /*
532 * The card should drive cmd and dat[0:3] low immediately
533 * after the response of cmd11, but wait 100 us to be sure
534 */
535 err = mmc_wait_dat0(mmc, 0, 100);
536 if (err == -ENOSYS)
537 udelay(100);
538 else if (err)
539 return -ETIMEDOUT;
540
541 /*
542 * During a signal voltage level switch, the clock must be gated
543 * for 5 ms according to the SD spec
544 */
Jaehoon Chung65117182018-01-26 19:25:29 +0900545 mmc_set_clock(mmc, mmc->clock, MMC_CLK_DISABLE);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200546
547 err = mmc_set_signal_voltage(mmc, signal_voltage);
548 if (err)
549 return err;
550
551 /* Keep clock gated for at least 10 ms, though spec only says 5 ms */
552 mdelay(10);
Jaehoon Chung65117182018-01-26 19:25:29 +0900553 mmc_set_clock(mmc, mmc->clock, MMC_CLK_ENABLE);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200554
555 /*
556 * Failure to switch is indicated by the card holding
557 * dat[0:3] low. Wait for at least 1 ms according to spec
558 */
559 err = mmc_wait_dat0(mmc, 1, 1000);
560 if (err == -ENOSYS)
561 udelay(1000);
562 else if (err)
563 return -ETIMEDOUT;
564
565 return 0;
566}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100567#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200568
569static int sd_send_op_cond(struct mmc *mmc, bool uhs_en)
Andy Fleming272cc702008-10-30 16:41:01 -0500570{
571 int timeout = 1000;
572 int err;
573 struct mmc_cmd cmd;
574
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500575 while (1) {
Andy Fleming272cc702008-10-30 16:41:01 -0500576 cmd.cmdidx = MMC_CMD_APP_CMD;
577 cmd.resp_type = MMC_RSP_R1;
578 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500579
580 err = mmc_send_cmd(mmc, &cmd, NULL);
581
582 if (err)
583 return err;
584
585 cmd.cmdidx = SD_CMD_APP_SEND_OP_COND;
586 cmd.resp_type = MMC_RSP_R3;
Stefano Babic250de122010-01-20 18:20:39 +0100587
588 /*
589 * Most cards do not answer if some reserved bits
590 * in the ocr are set. However, Some controller
591 * can set bit 7 (reserved for low voltages), but
592 * how to manage low voltages SD card is not yet
593 * specified.
594 */
Thomas Choud52ebf12010-12-24 13:12:21 +0000595 cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 :
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200596 (mmc->cfg->voltages & 0xff8000);
Andy Fleming272cc702008-10-30 16:41:01 -0500597
598 if (mmc->version == SD_VERSION_2)
599 cmd.cmdarg |= OCR_HCS;
600
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200601 if (uhs_en)
602 cmd.cmdarg |= OCR_S18R;
603
Andy Fleming272cc702008-10-30 16:41:01 -0500604 err = mmc_send_cmd(mmc, &cmd, NULL);
605
606 if (err)
607 return err;
608
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500609 if (cmd.response[0] & OCR_BUSY)
610 break;
Andy Fleming272cc702008-10-30 16:41:01 -0500611
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500612 if (timeout-- <= 0)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900613 return -EOPNOTSUPP;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500614
615 udelay(1000);
616 }
Andy Fleming272cc702008-10-30 16:41:01 -0500617
618 if (mmc->version != SD_VERSION_2)
619 mmc->version = SD_VERSION_1_0;
620
Thomas Choud52ebf12010-12-24 13:12:21 +0000621 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
622 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
623 cmd.resp_type = MMC_RSP_R3;
624 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000625
626 err = mmc_send_cmd(mmc, &cmd, NULL);
627
628 if (err)
629 return err;
630 }
631
Rabin Vincent998be3d2009-04-05 13:30:56 +0530632 mmc->ocr = cmd.response[0];
Andy Fleming272cc702008-10-30 16:41:01 -0500633
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100634#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200635 if (uhs_en && !(mmc_host_is_spi(mmc)) && (cmd.response[0] & 0x41000000)
636 == 0x41000000) {
637 err = mmc_switch_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
638 if (err)
639 return err;
640 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100641#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200642
Andy Fleming272cc702008-10-30 16:41:01 -0500643 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
644 mmc->rca = 0;
645
646 return 0;
647}
648
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500649static int mmc_send_op_cond_iter(struct mmc *mmc, int use_arg)
Andy Fleming272cc702008-10-30 16:41:01 -0500650{
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500651 struct mmc_cmd cmd;
Andy Fleming272cc702008-10-30 16:41:01 -0500652 int err;
653
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500654 cmd.cmdidx = MMC_CMD_SEND_OP_COND;
655 cmd.resp_type = MMC_RSP_R3;
656 cmd.cmdarg = 0;
Rob Herring5a203972015-03-23 17:56:59 -0500657 if (use_arg && !mmc_host_is_spi(mmc))
658 cmd.cmdarg = OCR_HCS |
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200659 (mmc->cfg->voltages &
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500660 (mmc->ocr & OCR_VOLTAGE_MASK)) |
661 (mmc->ocr & OCR_ACCESS_MODE);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000662
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500663 err = mmc_send_cmd(mmc, &cmd, NULL);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000664 if (err)
665 return err;
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500666 mmc->ocr = cmd.response[0];
Che-Liang Chioue9550442012-11-28 15:21:13 +0000667 return 0;
668}
669
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200670static int mmc_send_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000671{
Che-Liang Chioue9550442012-11-28 15:21:13 +0000672 int err, i;
Haibo Chenfe959052020-06-15 17:18:12 +0800673 int timeout = 1000;
674 uint start;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000675
Andy Fleming272cc702008-10-30 16:41:01 -0500676 /* Some cards seem to need this */
677 mmc_go_idle(mmc);
678
Haibo Chenfe959052020-06-15 17:18:12 +0800679 start = get_timer(0);
Raffaele Recalcati31cacba2011-03-11 02:01:13 +0000680 /* Asking to the card its capabilities */
Haibo Chenfe959052020-06-15 17:18:12 +0800681 for (i = 0; ; i++) {
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500682 err = mmc_send_op_cond_iter(mmc, i != 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500683 if (err)
684 return err;
685
Che-Liang Chioue9550442012-11-28 15:21:13 +0000686 /* exit if not busy (flag seems to be inverted) */
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500687 if (mmc->ocr & OCR_BUSY)
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500688 break;
Haibo Chenfe959052020-06-15 17:18:12 +0800689
690 if (get_timer(start) > timeout)
691 return -ETIMEDOUT;
692 udelay(100);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000693 }
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500694 mmc->op_cond_pending = 1;
695 return 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000696}
Andy Fleming272cc702008-10-30 16:41:01 -0500697
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200698static int mmc_complete_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000699{
700 struct mmc_cmd cmd;
701 int timeout = 1000;
Vipul Kumar36332b62018-05-03 12:20:54 +0530702 ulong start;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000703 int err;
704
705 mmc->op_cond_pending = 0;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500706 if (!(mmc->ocr & OCR_BUSY)) {
Yangbo Lud188b112016-08-02 15:33:18 +0800707 /* Some cards seem to need this */
708 mmc_go_idle(mmc);
709
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500710 start = get_timer(0);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500711 while (1) {
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500712 err = mmc_send_op_cond_iter(mmc, 1);
713 if (err)
714 return err;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500715 if (mmc->ocr & OCR_BUSY)
716 break;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500717 if (get_timer(start) > timeout)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900718 return -EOPNOTSUPP;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500719 udelay(100);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500720 }
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500721 }
Andy Fleming272cc702008-10-30 16:41:01 -0500722
Thomas Choud52ebf12010-12-24 13:12:21 +0000723 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
724 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
725 cmd.resp_type = MMC_RSP_R3;
726 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000727
728 err = mmc_send_cmd(mmc, &cmd, NULL);
729
730 if (err)
731 return err;
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500732
733 mmc->ocr = cmd.response[0];
Thomas Choud52ebf12010-12-24 13:12:21 +0000734 }
735
Andy Fleming272cc702008-10-30 16:41:01 -0500736 mmc->version = MMC_VERSION_UNKNOWN;
Andy Fleming272cc702008-10-30 16:41:01 -0500737
738 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
Stephen Warrendef816a2014-01-30 16:11:12 -0700739 mmc->rca = 1;
Andy Fleming272cc702008-10-30 16:41:01 -0500740
741 return 0;
742}
743
744
Heinrich Schuchardt1601ea22020-03-30 07:24:17 +0200745int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd)
Andy Fleming272cc702008-10-30 16:41:01 -0500746{
747 struct mmc_cmd cmd;
748 struct mmc_data data;
749 int err;
750
751 /* Get the Card Status Register */
752 cmd.cmdidx = MMC_CMD_SEND_EXT_CSD;
753 cmd.resp_type = MMC_RSP_R1;
754 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500755
Yoshihiro Shimodacdfd1ac2012-06-07 19:09:11 +0000756 data.dest = (char *)ext_csd;
Andy Fleming272cc702008-10-30 16:41:01 -0500757 data.blocks = 1;
Simon Glass8bfa1952013-04-03 08:54:30 +0000758 data.blocksize = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -0500759 data.flags = MMC_DATA_READ;
760
761 err = mmc_send_cmd(mmc, &cmd, &data);
762
763 return err;
764}
765
Marek Vasut68925502019-02-06 11:34:27 +0100766static int __mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value,
767 bool send_status)
Andy Fleming272cc702008-10-30 16:41:01 -0500768{
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200769 unsigned int status, start;
Andy Fleming272cc702008-10-30 16:41:01 -0500770 struct mmc_cmd cmd;
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300771 int timeout_ms = DEFAULT_CMD6_TIMEOUT_MS;
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +0200772 bool is_part_switch = (set == EXT_CSD_CMD_SET_NORMAL) &&
773 (index == EXT_CSD_PART_CONF);
Maxime Riparda9003dc2016-11-04 16:18:08 +0100774 int retries = 3;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000775 int ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500776
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +0200777 if (mmc->gen_cmd6_time)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300778 timeout_ms = mmc->gen_cmd6_time * 10;
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +0200779
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +0200780 if (is_part_switch && mmc->part_switch_time)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300781 timeout_ms = mmc->part_switch_time * 10;
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +0200782
Andy Fleming272cc702008-10-30 16:41:01 -0500783 cmd.cmdidx = MMC_CMD_SWITCH;
784 cmd.resp_type = MMC_RSP_R1b;
785 cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000786 (index << 16) |
787 (value << 8);
Andy Fleming272cc702008-10-30 16:41:01 -0500788
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200789 do {
Maxime Riparda9003dc2016-11-04 16:18:08 +0100790 ret = mmc_send_cmd(mmc, &cmd, NULL);
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200791 } while (ret && retries-- > 0);
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000792
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200793 if (ret)
794 return ret;
795
796 start = get_timer(0);
797
798 /* poll dat0 for rdy/buys status */
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300799 ret = mmc_wait_dat0(mmc, 1, timeout_ms * 1000);
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200800 if (ret && ret != -ENOSYS)
801 return ret;
802
803 /*
804 * In cases when not allowed to poll by using CMD13 or because we aren't
805 * capable of polling by using mmc_wait_dat0, then rely on waiting the
806 * stated timeout to be sufficient.
807 */
808 if (ret == -ENOSYS && !send_status)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300809 mdelay(timeout_ms);
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200810
811 /* Finally wait until the card is ready or indicates a failure
812 * to switch. It doesn't hurt to use CMD13 here even if send_status
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300813 * is false, because by now (after 'timeout_ms' ms) the bus should be
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200814 * reliable.
815 */
816 do {
817 ret = mmc_send_status(mmc, &status);
818
819 if (!ret && (status & MMC_STATUS_SWITCH_ERROR)) {
820 pr_debug("switch failed %d/%d/0x%x !\n", set, index,
821 value);
822 return -EIO;
Maxime Riparda9003dc2016-11-04 16:18:08 +0100823 }
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200824 if (!ret && (status & MMC_STATUS_RDY_FOR_DATA))
Marek Vasut68925502019-02-06 11:34:27 +0100825 return 0;
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200826 udelay(100);
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300827 } while (get_timer(start) < timeout_ms);
Marek Vasut68925502019-02-06 11:34:27 +0100828
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200829 return -ETIMEDOUT;
Andy Fleming272cc702008-10-30 16:41:01 -0500830}
831
Marek Vasut68925502019-02-06 11:34:27 +0100832int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value)
833{
834 return __mmc_switch(mmc, set, index, value, true);
835}
836
Heinrich Schuchardt0469d842020-03-30 07:24:19 +0200837int mmc_boot_wp(struct mmc *mmc)
838{
839 return mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP, 1);
840}
841
Marek Vasut62d77ce2018-04-15 00:37:11 +0200842#if !CONFIG_IS_ENABLED(MMC_TINY)
Marek Vasutb9a2a0e2019-01-03 21:19:24 +0100843static int mmc_set_card_speed(struct mmc *mmc, enum bus_mode mode,
844 bool hsdowngrade)
Andy Fleming272cc702008-10-30 16:41:01 -0500845{
Andy Fleming272cc702008-10-30 16:41:01 -0500846 int err;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200847 int speed_bits;
848
849 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
850
851 switch (mode) {
852 case MMC_HS:
853 case MMC_HS_52:
854 case MMC_DDR_52:
855 speed_bits = EXT_CSD_TIMING_HS;
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200856 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100857#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200858 case MMC_HS_200:
859 speed_bits = EXT_CSD_TIMING_HS200;
860 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100861#endif
Peng Fan3dd26262018-08-10 14:07:54 +0800862#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
863 case MMC_HS_400:
864 speed_bits = EXT_CSD_TIMING_HS400;
865 break;
866#endif
Peng Fan44acd492019-07-10 14:43:07 +0800867#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
868 case MMC_HS_400_ES:
869 speed_bits = EXT_CSD_TIMING_HS400;
870 break;
871#endif
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200872 case MMC_LEGACY:
873 speed_bits = EXT_CSD_TIMING_LEGACY;
874 break;
875 default:
876 return -EINVAL;
877 }
Marek Vasut68925502019-02-06 11:34:27 +0100878
879 err = __mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING,
880 speed_bits, !hsdowngrade);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200881 if (err)
882 return err;
883
Marek Vasutb9a2a0e2019-01-03 21:19:24 +0100884#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
885 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
886 /*
887 * In case the eMMC is in HS200/HS400 mode and we are downgrading
888 * to HS mode, the card clock are still running much faster than
889 * the supported HS mode clock, so we can not reliably read out
890 * Extended CSD. Reconfigure the controller to run at HS mode.
891 */
892 if (hsdowngrade) {
893 mmc_select_mode(mmc, MMC_HS);
894 mmc_set_clock(mmc, mmc_mode2freq(mmc, MMC_HS), false);
895 }
896#endif
897
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200898 if ((mode == MMC_HS) || (mode == MMC_HS_52)) {
899 /* Now check to see that it worked */
900 err = mmc_send_ext_csd(mmc, test_csd);
901 if (err)
902 return err;
903
904 /* No high-speed support */
905 if (!test_csd[EXT_CSD_HS_TIMING])
906 return -ENOTSUPP;
907 }
908
909 return 0;
910}
911
912static int mmc_get_capabilities(struct mmc *mmc)
913{
914 u8 *ext_csd = mmc->ext_csd;
915 char cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500916
Jean-Jacques Hiblot00e446f2017-11-30 17:43:56 +0100917 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -0500918
Thomas Choud52ebf12010-12-24 13:12:21 +0000919 if (mmc_host_is_spi(mmc))
920 return 0;
921
Andy Fleming272cc702008-10-30 16:41:01 -0500922 /* Only version 4 supports high-speed */
923 if (mmc->version < MMC_VERSION_4)
924 return 0;
925
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200926 if (!ext_csd) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100927 pr_err("No ext_csd found!\n"); /* this should enver happen */
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200928 return -ENOTSUPP;
929 }
930
Andrew Gabbasovfc5b32f2014-12-25 10:22:25 -0600931 mmc->card_caps |= MMC_MODE_4BIT | MMC_MODE_8BIT;
932
Peng Fan3dd26262018-08-10 14:07:54 +0800933 cardtype = ext_csd[EXT_CSD_CARD_TYPE];
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +0200934 mmc->cardtype = cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500935
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100936#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200937 if (cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V |
938 EXT_CSD_CARD_TYPE_HS200_1_8V)) {
939 mmc->card_caps |= MMC_MODE_HS200;
940 }
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100941#endif
Peng Fan44acd492019-07-10 14:43:07 +0800942#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) || \
943 CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
Peng Fan3dd26262018-08-10 14:07:54 +0800944 if (cardtype & (EXT_CSD_CARD_TYPE_HS400_1_2V |
945 EXT_CSD_CARD_TYPE_HS400_1_8V)) {
946 mmc->card_caps |= MMC_MODE_HS400;
947 }
948#endif
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900949 if (cardtype & EXT_CSD_CARD_TYPE_52) {
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200950 if (cardtype & EXT_CSD_CARD_TYPE_DDR_52)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900951 mmc->card_caps |= MMC_MODE_DDR_52MHz;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200952 mmc->card_caps |= MMC_MODE_HS_52MHz;
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900953 }
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200954 if (cardtype & EXT_CSD_CARD_TYPE_26)
955 mmc->card_caps |= MMC_MODE_HS;
Andy Fleming272cc702008-10-30 16:41:01 -0500956
Peng Fan44acd492019-07-10 14:43:07 +0800957#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
958 if (ext_csd[EXT_CSD_STROBE_SUPPORT] &&
959 (mmc->card_caps & MMC_MODE_HS400)) {
960 mmc->card_caps |= MMC_MODE_HS400_ES;
961 }
962#endif
963
Andy Fleming272cc702008-10-30 16:41:01 -0500964 return 0;
965}
Marek Vasut62d77ce2018-04-15 00:37:11 +0200966#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500967
Stephen Warrenf866a462013-06-11 15:14:01 -0600968static int mmc_set_capacity(struct mmc *mmc, int part_num)
969{
970 switch (part_num) {
971 case 0:
972 mmc->capacity = mmc->capacity_user;
973 break;
974 case 1:
975 case 2:
976 mmc->capacity = mmc->capacity_boot;
977 break;
978 case 3:
979 mmc->capacity = mmc->capacity_rpmb;
980 break;
981 case 4:
982 case 5:
983 case 6:
984 case 7:
985 mmc->capacity = mmc->capacity_gp[part_num - 4];
986 break;
987 default:
988 return -1;
989 }
990
Simon Glassc40fdca2016-05-01 13:52:35 -0600991 mmc_get_blk_desc(mmc)->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Stephen Warrenf866a462013-06-11 15:14:01 -0600992
993 return 0;
994}
995
Simon Glass7dba0b92016-06-12 23:30:15 -0600996int mmc_switch_part(struct mmc *mmc, unsigned int part_num)
Lei Wenbc897b12011-05-02 16:26:26 +0000997{
Stephen Warrenf866a462013-06-11 15:14:01 -0600998 int ret;
Jean-Jacques Hiblot05384772019-07-02 10:53:58 +0200999 int retry = 3;
Lei Wenbc897b12011-05-02 16:26:26 +00001000
Jean-Jacques Hiblot05384772019-07-02 10:53:58 +02001001 do {
1002 ret = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1003 EXT_CSD_PART_CONF,
1004 (mmc->part_config & ~PART_ACCESS_MASK)
1005 | (part_num & PART_ACCESS_MASK));
1006 } while (ret && retry--);
Stephen Warrenf866a462013-06-11 15:14:01 -06001007
Peter Bigot6dc93e72014-09-02 18:31:23 -05001008 /*
1009 * Set the capacity if the switch succeeded or was intended
1010 * to return to representing the raw device.
1011 */
Stephen Warren873cc1d2015-12-07 11:38:49 -07001012 if ((ret == 0) || ((ret == -ENODEV) && (part_num == 0))) {
Peter Bigot6dc93e72014-09-02 18:31:23 -05001013 ret = mmc_set_capacity(mmc, part_num);
Simon Glassfdbb1392016-05-01 13:52:37 -06001014 mmc_get_blk_desc(mmc)->hwpart = part_num;
Stephen Warren873cc1d2015-12-07 11:38:49 -07001015 }
Peter Bigot6dc93e72014-09-02 18:31:23 -05001016
1017 return ret;
Lei Wenbc897b12011-05-02 16:26:26 +00001018}
1019
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +01001020#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001021int mmc_hwpart_config(struct mmc *mmc,
1022 const struct mmc_hwpart_conf *conf,
1023 enum mmc_hwpart_conf_mode mode)
1024{
1025 u8 part_attrs = 0;
1026 u32 enh_size_mult;
1027 u32 enh_start_addr;
1028 u32 gp_size_mult[4];
1029 u32 max_enh_size_mult;
1030 u32 tot_enh_size_mult = 0;
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001031 u8 wr_rel_set;
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001032 int i, pidx, err;
1033 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
1034
1035 if (mode < MMC_HWPART_CONF_CHECK || mode > MMC_HWPART_CONF_COMPLETE)
1036 return -EINVAL;
1037
1038 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001039 pr_err("eMMC >= 4.4 required for enhanced user data area\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001040 return -EMEDIUMTYPE;
1041 }
1042
1043 if (!(mmc->part_support & PART_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001044 pr_err("Card does not support partitioning\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001045 return -EMEDIUMTYPE;
1046 }
1047
1048 if (!mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001049 pr_err("Card does not define HC WP group size\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001050 return -EMEDIUMTYPE;
1051 }
1052
1053 /* check partition alignment and total enhanced size */
1054 if (conf->user.enh_size) {
1055 if (conf->user.enh_size % mmc->hc_wp_grp_size ||
1056 conf->user.enh_start % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001057 pr_err("User data enhanced area not HC WP group "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001058 "size aligned\n");
1059 return -EINVAL;
1060 }
1061 part_attrs |= EXT_CSD_ENH_USR;
1062 enh_size_mult = conf->user.enh_size / mmc->hc_wp_grp_size;
1063 if (mmc->high_capacity) {
1064 enh_start_addr = conf->user.enh_start;
1065 } else {
1066 enh_start_addr = (conf->user.enh_start << 9);
1067 }
1068 } else {
1069 enh_size_mult = 0;
1070 enh_start_addr = 0;
1071 }
1072 tot_enh_size_mult += enh_size_mult;
1073
1074 for (pidx = 0; pidx < 4; pidx++) {
1075 if (conf->gp_part[pidx].size % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001076 pr_err("GP%i partition not HC WP group size "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001077 "aligned\n", pidx+1);
1078 return -EINVAL;
1079 }
1080 gp_size_mult[pidx] = conf->gp_part[pidx].size / mmc->hc_wp_grp_size;
1081 if (conf->gp_part[pidx].size && conf->gp_part[pidx].enhanced) {
1082 part_attrs |= EXT_CSD_ENH_GP(pidx);
1083 tot_enh_size_mult += gp_size_mult[pidx];
1084 }
1085 }
1086
1087 if (part_attrs && ! (mmc->part_support & ENHNCD_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001088 pr_err("Card does not support enhanced attribute\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001089 return -EMEDIUMTYPE;
1090 }
1091
1092 err = mmc_send_ext_csd(mmc, ext_csd);
1093 if (err)
1094 return err;
1095
1096 max_enh_size_mult =
1097 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+2] << 16) +
1098 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+1] << 8) +
1099 ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT];
1100 if (tot_enh_size_mult > max_enh_size_mult) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001101 pr_err("Total enhanced size exceeds maximum (%u > %u)\n",
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001102 tot_enh_size_mult, max_enh_size_mult);
1103 return -EMEDIUMTYPE;
1104 }
1105
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001106 /* The default value of EXT_CSD_WR_REL_SET is device
1107 * dependent, the values can only be changed if the
1108 * EXT_CSD_HS_CTRL_REL bit is set. The values can be
1109 * changed only once and before partitioning is completed. */
1110 wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
1111 if (conf->user.wr_rel_change) {
1112 if (conf->user.wr_rel_set)
1113 wr_rel_set |= EXT_CSD_WR_DATA_REL_USR;
1114 else
1115 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_USR;
1116 }
1117 for (pidx = 0; pidx < 4; pidx++) {
1118 if (conf->gp_part[pidx].wr_rel_change) {
1119 if (conf->gp_part[pidx].wr_rel_set)
1120 wr_rel_set |= EXT_CSD_WR_DATA_REL_GP(pidx);
1121 else
1122 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_GP(pidx);
1123 }
1124 }
1125
1126 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET] &&
1127 !(ext_csd[EXT_CSD_WR_REL_PARAM] & EXT_CSD_HS_CTRL_REL)) {
1128 puts("Card does not support host controlled partition write "
1129 "reliability settings\n");
1130 return -EMEDIUMTYPE;
1131 }
1132
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001133 if (ext_csd[EXT_CSD_PARTITION_SETTING] &
1134 EXT_CSD_PARTITION_SETTING_COMPLETED) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001135 pr_err("Card already partitioned\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001136 return -EPERM;
1137 }
1138
1139 if (mode == MMC_HWPART_CONF_CHECK)
1140 return 0;
1141
1142 /* Partitioning requires high-capacity size definitions */
1143 if (!(ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01)) {
1144 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1145 EXT_CSD_ERASE_GROUP_DEF, 1);
1146
1147 if (err)
1148 return err;
1149
1150 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
1151
Jaehoon Chung4af66592020-01-17 15:06:54 +09001152#if CONFIG_IS_ENABLED(MMC_WRITE)
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001153 /* update erase group size to be high-capacity */
1154 mmc->erase_grp_size =
1155 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
Jaehoon Chung4af66592020-01-17 15:06:54 +09001156#endif
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001157
1158 }
1159
1160 /* all OK, write the configuration */
1161 for (i = 0; i < 4; i++) {
1162 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1163 EXT_CSD_ENH_START_ADDR+i,
1164 (enh_start_addr >> (i*8)) & 0xFF);
1165 if (err)
1166 return err;
1167 }
1168 for (i = 0; i < 3; i++) {
1169 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1170 EXT_CSD_ENH_SIZE_MULT+i,
1171 (enh_size_mult >> (i*8)) & 0xFF);
1172 if (err)
1173 return err;
1174 }
1175 for (pidx = 0; pidx < 4; pidx++) {
1176 for (i = 0; i < 3; i++) {
1177 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1178 EXT_CSD_GP_SIZE_MULT+pidx*3+i,
1179 (gp_size_mult[pidx] >> (i*8)) & 0xFF);
1180 if (err)
1181 return err;
1182 }
1183 }
1184 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1185 EXT_CSD_PARTITIONS_ATTRIBUTE, part_attrs);
1186 if (err)
1187 return err;
1188
1189 if (mode == MMC_HWPART_CONF_SET)
1190 return 0;
1191
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001192 /* The WR_REL_SET is a write-once register but shall be
1193 * written before setting PART_SETTING_COMPLETED. As it is
1194 * write-once we can only write it when completing the
1195 * partitioning. */
1196 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET]) {
1197 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1198 EXT_CSD_WR_REL_SET, wr_rel_set);
1199 if (err)
1200 return err;
1201 }
1202
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001203 /* Setting PART_SETTING_COMPLETED confirms the partition
1204 * configuration but it only becomes effective after power
1205 * cycle, so we do not adjust the partition related settings
1206 * in the mmc struct. */
1207
1208 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1209 EXT_CSD_PARTITION_SETTING,
1210 EXT_CSD_PARTITION_SETTING_COMPLETED);
1211 if (err)
1212 return err;
1213
1214 return 0;
1215}
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +01001216#endif
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001217
Simon Glasse7881d82017-07-29 11:35:31 -06001218#if !CONFIG_IS_ENABLED(DM_MMC)
Thierry Reding48972d92012-01-02 01:15:37 +00001219int mmc_getcd(struct mmc *mmc)
1220{
1221 int cd;
1222
1223 cd = board_mmc_getcd(mmc);
1224
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001225 if (cd < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001226 if (mmc->cfg->ops->getcd)
1227 cd = mmc->cfg->ops->getcd(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001228 else
1229 cd = 1;
1230 }
Thierry Reding48972d92012-01-02 01:15:37 +00001231
1232 return cd;
1233}
Simon Glass8ca51e52016-06-12 23:30:22 -06001234#endif
Thierry Reding48972d92012-01-02 01:15:37 +00001235
Marek Vasut62d77ce2018-04-15 00:37:11 +02001236#if !CONFIG_IS_ENABLED(MMC_TINY)
Kim Phillipsfdbb8732012-10-29 13:34:43 +00001237static int sd_switch(struct mmc *mmc, int mode, int group, u8 value, u8 *resp)
Andy Fleming272cc702008-10-30 16:41:01 -05001238{
1239 struct mmc_cmd cmd;
1240 struct mmc_data data;
1241
1242 /* Switch the frequency */
1243 cmd.cmdidx = SD_CMD_SWITCH_FUNC;
1244 cmd.resp_type = MMC_RSP_R1;
1245 cmd.cmdarg = (mode << 31) | 0xffffff;
1246 cmd.cmdarg &= ~(0xf << (group * 4));
1247 cmd.cmdarg |= value << (group * 4);
Andy Fleming272cc702008-10-30 16:41:01 -05001248
1249 data.dest = (char *)resp;
1250 data.blocksize = 64;
1251 data.blocks = 1;
1252 data.flags = MMC_DATA_READ;
1253
1254 return mmc_send_cmd(mmc, &cmd, &data);
1255}
1256
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001257static int sd_get_capabilities(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001258{
1259 int err;
1260 struct mmc_cmd cmd;
Suniel Mahesh18e7c8f2017-10-05 11:32:00 +05301261 ALLOC_CACHE_ALIGN_BUFFER(__be32, scr, 2);
1262 ALLOC_CACHE_ALIGN_BUFFER(__be32, switch_status, 16);
Andy Fleming272cc702008-10-30 16:41:01 -05001263 struct mmc_data data;
1264 int timeout;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001265#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001266 u32 sd3_bus_mode;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001267#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001268
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301269 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05001270
Thomas Choud52ebf12010-12-24 13:12:21 +00001271 if (mmc_host_is_spi(mmc))
1272 return 0;
1273
Andy Fleming272cc702008-10-30 16:41:01 -05001274 /* Read the SCR to find out if this card supports higher speeds */
1275 cmd.cmdidx = MMC_CMD_APP_CMD;
1276 cmd.resp_type = MMC_RSP_R1;
1277 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05001278
1279 err = mmc_send_cmd(mmc, &cmd, NULL);
1280
1281 if (err)
1282 return err;
1283
1284 cmd.cmdidx = SD_CMD_APP_SEND_SCR;
1285 cmd.resp_type = MMC_RSP_R1;
1286 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05001287
1288 timeout = 3;
1289
1290retry_scr:
Anton staaff781dd32011-10-03 13:54:59 +00001291 data.dest = (char *)scr;
Andy Fleming272cc702008-10-30 16:41:01 -05001292 data.blocksize = 8;
1293 data.blocks = 1;
1294 data.flags = MMC_DATA_READ;
1295
1296 err = mmc_send_cmd(mmc, &cmd, &data);
1297
1298 if (err) {
1299 if (timeout--)
1300 goto retry_scr;
1301
1302 return err;
1303 }
1304
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001305 mmc->scr[0] = __be32_to_cpu(scr[0]);
1306 mmc->scr[1] = __be32_to_cpu(scr[1]);
Andy Fleming272cc702008-10-30 16:41:01 -05001307
1308 switch ((mmc->scr[0] >> 24) & 0xf) {
Bin Meng53e8e402016-03-17 21:53:13 -07001309 case 0:
1310 mmc->version = SD_VERSION_1_0;
1311 break;
1312 case 1:
1313 mmc->version = SD_VERSION_1_10;
1314 break;
1315 case 2:
1316 mmc->version = SD_VERSION_2;
1317 if ((mmc->scr[0] >> 15) & 0x1)
1318 mmc->version = SD_VERSION_3;
1319 break;
1320 default:
1321 mmc->version = SD_VERSION_1_0;
1322 break;
Andy Fleming272cc702008-10-30 16:41:01 -05001323 }
1324
Alagu Sankarb44c7082010-05-12 15:08:24 +05301325 if (mmc->scr[0] & SD_DATA_4BIT)
1326 mmc->card_caps |= MMC_MODE_4BIT;
1327
Andy Fleming272cc702008-10-30 16:41:01 -05001328 /* Version 1.0 doesn't support switching */
1329 if (mmc->version == SD_VERSION_1_0)
1330 return 0;
1331
1332 timeout = 4;
1333 while (timeout--) {
1334 err = sd_switch(mmc, SD_SWITCH_CHECK, 0, 1,
Anton staaff781dd32011-10-03 13:54:59 +00001335 (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001336
1337 if (err)
1338 return err;
1339
1340 /* The high-speed function is busy. Try again */
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001341 if (!(__be32_to_cpu(switch_status[7]) & SD_HIGHSPEED_BUSY))
Andy Fleming272cc702008-10-30 16:41:01 -05001342 break;
1343 }
1344
Andy Fleming272cc702008-10-30 16:41:01 -05001345 /* If high-speed isn't supported, we return */
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001346 if (__be32_to_cpu(switch_status[3]) & SD_HIGHSPEED_SUPPORTED)
1347 mmc->card_caps |= MMC_CAP(SD_HS);
Andy Fleming272cc702008-10-30 16:41:01 -05001348
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001349#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001350 /* Version before 3.0 don't support UHS modes */
1351 if (mmc->version < SD_VERSION_3)
1352 return 0;
1353
1354 sd3_bus_mode = __be32_to_cpu(switch_status[3]) >> 16 & 0x1f;
1355 if (sd3_bus_mode & SD_MODE_UHS_SDR104)
1356 mmc->card_caps |= MMC_CAP(UHS_SDR104);
1357 if (sd3_bus_mode & SD_MODE_UHS_SDR50)
1358 mmc->card_caps |= MMC_CAP(UHS_SDR50);
1359 if (sd3_bus_mode & SD_MODE_UHS_SDR25)
1360 mmc->card_caps |= MMC_CAP(UHS_SDR25);
1361 if (sd3_bus_mode & SD_MODE_UHS_SDR12)
1362 mmc->card_caps |= MMC_CAP(UHS_SDR12);
1363 if (sd3_bus_mode & SD_MODE_UHS_DDR50)
1364 mmc->card_caps |= MMC_CAP(UHS_DDR50);
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001365#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001366
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001367 return 0;
1368}
1369
1370static int sd_set_card_speed(struct mmc *mmc, enum bus_mode mode)
1371{
1372 int err;
1373
1374 ALLOC_CACHE_ALIGN_BUFFER(uint, switch_status, 16);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001375 int speed;
Macpaul Lin2c3fbf42011-11-28 16:31:09 +00001376
Marek Vasutcf345762018-11-18 03:25:08 +01001377 /* SD version 1.00 and 1.01 does not support CMD 6 */
1378 if (mmc->version == SD_VERSION_1_0)
1379 return 0;
1380
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001381 switch (mode) {
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301382 case MMC_LEGACY:
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001383 speed = UHS_SDR12_BUS_SPEED;
1384 break;
1385 case SD_HS:
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +01001386 speed = HIGH_SPEED_BUS_SPEED;
1387 break;
1388#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1389 case UHS_SDR12:
1390 speed = UHS_SDR12_BUS_SPEED;
1391 break;
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001392 case UHS_SDR25:
1393 speed = UHS_SDR25_BUS_SPEED;
1394 break;
1395 case UHS_SDR50:
1396 speed = UHS_SDR50_BUS_SPEED;
1397 break;
1398 case UHS_DDR50:
1399 speed = UHS_DDR50_BUS_SPEED;
1400 break;
1401 case UHS_SDR104:
1402 speed = UHS_SDR104_BUS_SPEED;
1403 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +01001404#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001405 default:
1406 return -EINVAL;
1407 }
1408
1409 err = sd_switch(mmc, SD_SWITCH_SWITCH, 0, speed, (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001410 if (err)
1411 return err;
1412
Jean-Jacques Hiblota0276f32018-02-09 12:09:27 +01001413 if (((__be32_to_cpu(switch_status[4]) >> 24) & 0xF) != speed)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001414 return -ENOTSUPP;
1415
1416 return 0;
1417}
1418
Marek Vasutec360e62018-04-15 00:36:45 +02001419static int sd_select_bus_width(struct mmc *mmc, int w)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001420{
1421 int err;
1422 struct mmc_cmd cmd;
1423
1424 if ((w != 4) && (w != 1))
1425 return -EINVAL;
1426
1427 cmd.cmdidx = MMC_CMD_APP_CMD;
1428 cmd.resp_type = MMC_RSP_R1;
1429 cmd.cmdarg = mmc->rca << 16;
1430
1431 err = mmc_send_cmd(mmc, &cmd, NULL);
1432 if (err)
1433 return err;
1434
1435 cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH;
1436 cmd.resp_type = MMC_RSP_R1;
1437 if (w == 4)
1438 cmd.cmdarg = 2;
1439 else if (w == 1)
1440 cmd.cmdarg = 0;
1441 err = mmc_send_cmd(mmc, &cmd, NULL);
1442 if (err)
1443 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05001444
1445 return 0;
1446}
Marek Vasut62d77ce2018-04-15 00:37:11 +02001447#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001448
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001449#if CONFIG_IS_ENABLED(MMC_WRITE)
Peng Fan3697e592016-09-01 11:13:38 +08001450static int sd_read_ssr(struct mmc *mmc)
1451{
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001452 static const unsigned int sd_au_size[] = {
1453 0, SZ_16K / 512, SZ_32K / 512,
1454 SZ_64K / 512, SZ_128K / 512, SZ_256K / 512,
1455 SZ_512K / 512, SZ_1M / 512, SZ_2M / 512,
1456 SZ_4M / 512, SZ_8M / 512, (SZ_8M + SZ_4M) / 512,
1457 SZ_16M / 512, (SZ_16M + SZ_8M) / 512, SZ_32M / 512,
1458 SZ_64M / 512,
1459 };
Peng Fan3697e592016-09-01 11:13:38 +08001460 int err, i;
1461 struct mmc_cmd cmd;
1462 ALLOC_CACHE_ALIGN_BUFFER(uint, ssr, 16);
1463 struct mmc_data data;
1464 int timeout = 3;
1465 unsigned int au, eo, et, es;
1466
1467 cmd.cmdidx = MMC_CMD_APP_CMD;
1468 cmd.resp_type = MMC_RSP_R1;
1469 cmd.cmdarg = mmc->rca << 16;
1470
1471 err = mmc_send_cmd(mmc, &cmd, NULL);
Joel Johnsond4a5fa32020-01-11 09:08:14 -07001472#ifdef CONFIG_MMC_QUIRKS
1473 if (err && (mmc->quirks & MMC_QUIRK_RETRY_APP_CMD)) {
1474 int retries = 4;
1475 /*
1476 * It has been seen that APP_CMD may fail on the first
1477 * attempt, let's try a few more times
1478 */
1479 do {
1480 err = mmc_send_cmd(mmc, &cmd, NULL);
1481 if (!err)
1482 break;
1483 } while (retries--);
1484 }
1485#endif
Peng Fan3697e592016-09-01 11:13:38 +08001486 if (err)
1487 return err;
1488
1489 cmd.cmdidx = SD_CMD_APP_SD_STATUS;
1490 cmd.resp_type = MMC_RSP_R1;
1491 cmd.cmdarg = 0;
1492
1493retry_ssr:
1494 data.dest = (char *)ssr;
1495 data.blocksize = 64;
1496 data.blocks = 1;
1497 data.flags = MMC_DATA_READ;
1498
1499 err = mmc_send_cmd(mmc, &cmd, &data);
1500 if (err) {
1501 if (timeout--)
1502 goto retry_ssr;
1503
1504 return err;
1505 }
1506
1507 for (i = 0; i < 16; i++)
1508 ssr[i] = be32_to_cpu(ssr[i]);
1509
1510 au = (ssr[2] >> 12) & 0xF;
1511 if ((au <= 9) || (mmc->version == SD_VERSION_3)) {
1512 mmc->ssr.au = sd_au_size[au];
1513 es = (ssr[3] >> 24) & 0xFF;
1514 es |= (ssr[2] & 0xFF) << 8;
1515 et = (ssr[3] >> 18) & 0x3F;
1516 if (es && et) {
1517 eo = (ssr[3] >> 16) & 0x3;
1518 mmc->ssr.erase_timeout = (et * 1000) / es;
1519 mmc->ssr.erase_offset = eo * 1000;
1520 }
1521 } else {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001522 pr_debug("Invalid Allocation Unit Size.\n");
Peng Fan3697e592016-09-01 11:13:38 +08001523 }
1524
1525 return 0;
1526}
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001527#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001528/* frequency bases */
1529/* divided by 10 to be nice to platforms without floating point */
Mike Frysinger5f837c22010-10-20 01:15:53 +00001530static const int fbase[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001531 10000,
1532 100000,
1533 1000000,
1534 10000000,
1535};
1536
1537/* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
1538 * to platforms without floating point.
1539 */
Simon Glass61fe0762016-05-14 14:02:57 -06001540static const u8 multipliers[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001541 0, /* reserved */
1542 10,
1543 12,
1544 13,
1545 15,
1546 20,
1547 25,
1548 30,
1549 35,
1550 40,
1551 45,
1552 50,
1553 55,
1554 60,
1555 70,
1556 80,
1557};
1558
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001559static inline int bus_width(uint cap)
1560{
1561 if (cap == MMC_MODE_8BIT)
1562 return 8;
1563 if (cap == MMC_MODE_4BIT)
1564 return 4;
1565 if (cap == MMC_MODE_1BIT)
1566 return 1;
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001567 pr_warn("invalid bus witdh capability 0x%x\n", cap);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001568 return 0;
1569}
1570
Simon Glasse7881d82017-07-29 11:35:31 -06001571#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001572#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001573static int mmc_execute_tuning(struct mmc *mmc, uint opcode)
1574{
1575 return -ENOTSUPP;
1576}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001577#endif
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001578
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001579static int mmc_set_ios(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001580{
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001581 int ret = 0;
1582
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001583 if (mmc->cfg->ops->set_ios)
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001584 ret = mmc->cfg->ops->set_ios(mmc);
1585
1586 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05001587}
Yann Gautier3602a562019-09-19 17:56:12 +02001588
1589static int mmc_host_power_cycle(struct mmc *mmc)
1590{
1591 int ret = 0;
1592
1593 if (mmc->cfg->ops->host_power_cycle)
1594 ret = mmc->cfg->ops->host_power_cycle(mmc);
1595
1596 return ret;
1597}
Simon Glass8ca51e52016-06-12 23:30:22 -06001598#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001599
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001600int mmc_set_clock(struct mmc *mmc, uint clock, bool disable)
Andy Fleming272cc702008-10-30 16:41:01 -05001601{
Jaehoon Chungc0fafe62018-01-23 14:04:30 +09001602 if (!disable) {
Jaehoon Chung9546eb92018-01-17 19:36:58 +09001603 if (clock > mmc->cfg->f_max)
1604 clock = mmc->cfg->f_max;
Andy Fleming272cc702008-10-30 16:41:01 -05001605
Jaehoon Chung9546eb92018-01-17 19:36:58 +09001606 if (clock < mmc->cfg->f_min)
1607 clock = mmc->cfg->f_min;
1608 }
Andy Fleming272cc702008-10-30 16:41:01 -05001609
1610 mmc->clock = clock;
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001611 mmc->clk_disable = disable;
Andy Fleming272cc702008-10-30 16:41:01 -05001612
Jaehoon Chungd2faadb2018-01-26 19:25:30 +09001613 debug("clock is %s (%dHz)\n", disable ? "disabled" : "enabled", clock);
1614
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001615 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001616}
1617
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001618static int mmc_set_bus_width(struct mmc *mmc, uint width)
Andy Fleming272cc702008-10-30 16:41:01 -05001619{
1620 mmc->bus_width = width;
1621
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001622 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001623}
1624
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001625#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
1626/*
1627 * helper function to display the capabilities in a human
1628 * friendly manner. The capabilities include bus width and
1629 * supported modes.
1630 */
1631void mmc_dump_capabilities(const char *text, uint caps)
1632{
1633 enum bus_mode mode;
1634
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001635 pr_debug("%s: widths [", text);
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001636 if (caps & MMC_MODE_8BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001637 pr_debug("8, ");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001638 if (caps & MMC_MODE_4BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001639 pr_debug("4, ");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001640 if (caps & MMC_MODE_1BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001641 pr_debug("1, ");
1642 pr_debug("\b\b] modes [");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001643 for (mode = MMC_LEGACY; mode < MMC_MODES_END; mode++)
1644 if (MMC_CAP(mode) & caps)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001645 pr_debug("%s, ", mmc_mode_name(mode));
1646 pr_debug("\b\b]\n");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001647}
1648#endif
1649
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001650struct mode_width_tuning {
1651 enum bus_mode mode;
1652 uint widths;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001653#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001654 uint tuning;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001655#endif
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001656};
1657
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001658#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001659int mmc_voltage_to_mv(enum mmc_voltage voltage)
1660{
1661 switch (voltage) {
1662 case MMC_SIGNAL_VOLTAGE_000: return 0;
1663 case MMC_SIGNAL_VOLTAGE_330: return 3300;
1664 case MMC_SIGNAL_VOLTAGE_180: return 1800;
1665 case MMC_SIGNAL_VOLTAGE_120: return 1200;
1666 }
1667 return -EINVAL;
1668}
1669
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001670static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1671{
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001672 int err;
1673
1674 if (mmc->signal_voltage == signal_voltage)
1675 return 0;
1676
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001677 mmc->signal_voltage = signal_voltage;
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001678 err = mmc_set_ios(mmc);
1679 if (err)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001680 pr_debug("unable to set voltage (err %d)\n", err);
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001681
1682 return err;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001683}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001684#else
1685static inline int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1686{
1687 return 0;
1688}
1689#endif
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001690
Marek Vasut62d77ce2018-04-15 00:37:11 +02001691#if !CONFIG_IS_ENABLED(MMC_TINY)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001692static const struct mode_width_tuning sd_modes_by_pref[] = {
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001693#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1694#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001695 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001696 .mode = UHS_SDR104,
1697 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1698 .tuning = MMC_CMD_SEND_TUNING_BLOCK
1699 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001700#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001701 {
1702 .mode = UHS_SDR50,
1703 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1704 },
1705 {
1706 .mode = UHS_DDR50,
1707 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1708 },
1709 {
1710 .mode = UHS_SDR25,
1711 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1712 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001713#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001714 {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001715 .mode = SD_HS,
1716 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1717 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001718#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001719 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001720 .mode = UHS_SDR12,
1721 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1722 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001723#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001724 {
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301725 .mode = MMC_LEGACY,
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001726 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1727 }
1728};
1729
1730#define for_each_sd_mode_by_pref(caps, mwt) \
1731 for (mwt = sd_modes_by_pref;\
1732 mwt < sd_modes_by_pref + ARRAY_SIZE(sd_modes_by_pref);\
1733 mwt++) \
1734 if (caps & MMC_CAP(mwt->mode))
1735
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02001736static int sd_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001737{
1738 int err;
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001739 uint widths[] = {MMC_MODE_4BIT, MMC_MODE_1BIT};
1740 const struct mode_width_tuning *mwt;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001741#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001742 bool uhs_en = (mmc->ocr & OCR_S18R) ? true : false;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001743#else
1744 bool uhs_en = false;
1745#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001746 uint caps;
1747
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001748#ifdef DEBUG
1749 mmc_dump_capabilities("sd card", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001750 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001751#endif
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001752
Anup Patelf49ff792019-07-08 04:10:43 +00001753 if (mmc_host_is_spi(mmc)) {
1754 mmc_set_bus_width(mmc, 1);
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301755 mmc_select_mode(mmc, MMC_LEGACY);
Anup Patelf49ff792019-07-08 04:10:43 +00001756 mmc_set_clock(mmc, mmc->tran_speed, MMC_CLK_ENABLE);
Pragnesh Patel810bc132020-06-29 15:17:26 +05301757#if CONFIG_IS_ENABLED(MMC_WRITE)
1758 err = sd_read_ssr(mmc);
1759 if (err)
1760 pr_warn("unable to read ssr\n");
1761#endif
Anup Patelf49ff792019-07-08 04:10:43 +00001762 return 0;
1763 }
1764
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001765 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001766 caps = card_caps & mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001767
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001768 if (!uhs_en)
1769 caps &= ~UHS_CAPS;
1770
1771 for_each_sd_mode_by_pref(caps, mwt) {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001772 uint *w;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001773
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001774 for (w = widths; w < widths + ARRAY_SIZE(widths); w++) {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001775 if (*w & caps & mwt->widths) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001776 pr_debug("trying mode %s width %d (at %d MHz)\n",
1777 mmc_mode_name(mwt->mode),
1778 bus_width(*w),
1779 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001780
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001781 /* configure the bus width (card + host) */
1782 err = sd_select_bus_width(mmc, bus_width(*w));
1783 if (err)
1784 goto error;
1785 mmc_set_bus_width(mmc, bus_width(*w));
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001786
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001787 /* configure the bus mode (card) */
1788 err = sd_set_card_speed(mmc, mwt->mode);
1789 if (err)
1790 goto error;
1791
1792 /* configure the bus mode (host) */
1793 mmc_select_mode(mmc, mwt->mode);
Jaehoon Chung65117182018-01-26 19:25:29 +09001794 mmc_set_clock(mmc, mmc->tran_speed,
1795 MMC_CLK_ENABLE);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001796
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001797#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001798 /* execute tuning if needed */
1799 if (mwt->tuning && !mmc_host_is_spi(mmc)) {
1800 err = mmc_execute_tuning(mmc,
1801 mwt->tuning);
1802 if (err) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001803 pr_debug("tuning failed\n");
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001804 goto error;
1805 }
1806 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001807#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001808
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001809#if CONFIG_IS_ENABLED(MMC_WRITE)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001810 err = sd_read_ssr(mmc);
Peng Fan0a4c2b02018-03-05 16:20:40 +08001811 if (err)
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001812 pr_warn("unable to read ssr\n");
1813#endif
1814 if (!err)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001815 return 0;
1816
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001817error:
1818 /* revert to a safer bus speed */
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301819 mmc_select_mode(mmc, MMC_LEGACY);
Jaehoon Chung65117182018-01-26 19:25:29 +09001820 mmc_set_clock(mmc, mmc->tran_speed,
1821 MMC_CLK_ENABLE);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001822 }
1823 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001824 }
1825
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001826 pr_err("unable to select a mode\n");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001827 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001828}
1829
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001830/*
1831 * read the compare the part of ext csd that is constant.
1832 * This can be used to check that the transfer is working
1833 * as expected.
1834 */
1835static int mmc_read_and_compare_ext_csd(struct mmc *mmc)
1836{
1837 int err;
1838 const u8 *ext_csd = mmc->ext_csd;
1839 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
1840
Jean-Jacques Hiblot1de06b92017-11-30 17:43:58 +01001841 if (mmc->version < MMC_VERSION_4)
1842 return 0;
1843
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001844 err = mmc_send_ext_csd(mmc, test_csd);
1845 if (err)
1846 return err;
1847
1848 /* Only compare read only fields */
1849 if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT]
1850 == test_csd[EXT_CSD_PARTITIONING_SUPPORT] &&
1851 ext_csd[EXT_CSD_HC_WP_GRP_SIZE]
1852 == test_csd[EXT_CSD_HC_WP_GRP_SIZE] &&
1853 ext_csd[EXT_CSD_REV]
1854 == test_csd[EXT_CSD_REV] &&
1855 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1856 == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE] &&
1857 memcmp(&ext_csd[EXT_CSD_SEC_CNT],
1858 &test_csd[EXT_CSD_SEC_CNT], 4) == 0)
1859 return 0;
1860
1861 return -EBADMSG;
1862}
1863
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001864#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001865static int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1866 uint32_t allowed_mask)
1867{
1868 u32 card_mask = 0;
1869
1870 switch (mode) {
Peng Fan44acd492019-07-10 14:43:07 +08001871 case MMC_HS_400_ES:
Peng Fan3dd26262018-08-10 14:07:54 +08001872 case MMC_HS_400:
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001873 case MMC_HS_200:
Peng Fan3dd26262018-08-10 14:07:54 +08001874 if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_8V |
1875 EXT_CSD_CARD_TYPE_HS400_1_8V))
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001876 card_mask |= MMC_SIGNAL_VOLTAGE_180;
Peng Fan3dd26262018-08-10 14:07:54 +08001877 if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V |
1878 EXT_CSD_CARD_TYPE_HS400_1_2V))
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001879 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1880 break;
1881 case MMC_DDR_52:
1882 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_8V)
1883 card_mask |= MMC_SIGNAL_VOLTAGE_330 |
1884 MMC_SIGNAL_VOLTAGE_180;
1885 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_2V)
1886 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1887 break;
1888 default:
1889 card_mask |= MMC_SIGNAL_VOLTAGE_330;
1890 break;
1891 }
1892
1893 while (card_mask & allowed_mask) {
1894 enum mmc_voltage best_match;
1895
1896 best_match = 1 << (ffs(card_mask & allowed_mask) - 1);
1897 if (!mmc_set_signal_voltage(mmc, best_match))
1898 return 0;
1899
1900 allowed_mask &= ~best_match;
1901 }
1902
1903 return -ENOTSUPP;
1904}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001905#else
1906static inline int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1907 uint32_t allowed_mask)
1908{
1909 return 0;
1910}
1911#endif
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001912
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001913static const struct mode_width_tuning mmc_modes_by_pref[] = {
Peng Fan44acd492019-07-10 14:43:07 +08001914#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
1915 {
1916 .mode = MMC_HS_400_ES,
1917 .widths = MMC_MODE_8BIT,
1918 },
1919#endif
Peng Fan3dd26262018-08-10 14:07:54 +08001920#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
1921 {
1922 .mode = MMC_HS_400,
1923 .widths = MMC_MODE_8BIT,
1924 .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200
1925 },
1926#endif
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001927#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001928 {
1929 .mode = MMC_HS_200,
1930 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001931 .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001932 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001933#endif
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001934 {
1935 .mode = MMC_DDR_52,
1936 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
1937 },
1938 {
1939 .mode = MMC_HS_52,
1940 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1941 },
1942 {
1943 .mode = MMC_HS,
1944 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1945 },
1946 {
1947 .mode = MMC_LEGACY,
1948 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1949 }
1950};
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001951
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001952#define for_each_mmc_mode_by_pref(caps, mwt) \
1953 for (mwt = mmc_modes_by_pref;\
1954 mwt < mmc_modes_by_pref + ARRAY_SIZE(mmc_modes_by_pref);\
1955 mwt++) \
1956 if (caps & MMC_CAP(mwt->mode))
1957
1958static const struct ext_csd_bus_width {
1959 uint cap;
1960 bool is_ddr;
1961 uint ext_csd_bits;
1962} ext_csd_bus_width[] = {
1963 {MMC_MODE_8BIT, true, EXT_CSD_DDR_BUS_WIDTH_8},
1964 {MMC_MODE_4BIT, true, EXT_CSD_DDR_BUS_WIDTH_4},
1965 {MMC_MODE_8BIT, false, EXT_CSD_BUS_WIDTH_8},
1966 {MMC_MODE_4BIT, false, EXT_CSD_BUS_WIDTH_4},
1967 {MMC_MODE_1BIT, false, EXT_CSD_BUS_WIDTH_1},
1968};
1969
Peng Fan3dd26262018-08-10 14:07:54 +08001970#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
1971static int mmc_select_hs400(struct mmc *mmc)
1972{
1973 int err;
1974
1975 /* Set timing to HS200 for tuning */
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001976 err = mmc_set_card_speed(mmc, MMC_HS_200, false);
Peng Fan3dd26262018-08-10 14:07:54 +08001977 if (err)
1978 return err;
1979
1980 /* configure the bus mode (host) */
1981 mmc_select_mode(mmc, MMC_HS_200);
1982 mmc_set_clock(mmc, mmc->tran_speed, false);
1983
1984 /* execute tuning if needed */
1985 err = mmc_execute_tuning(mmc, MMC_CMD_SEND_TUNING_BLOCK_HS200);
1986 if (err) {
1987 debug("tuning failed\n");
1988 return err;
1989 }
1990
1991 /* Set back to HS */
BOUGH CHEN5cf12032019-03-26 06:24:17 +00001992 mmc_set_card_speed(mmc, MMC_HS, true);
Peng Fan3dd26262018-08-10 14:07:54 +08001993
1994 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH,
1995 EXT_CSD_BUS_WIDTH_8 | EXT_CSD_DDR_FLAG);
1996 if (err)
1997 return err;
1998
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001999 err = mmc_set_card_speed(mmc, MMC_HS_400, false);
Peng Fan3dd26262018-08-10 14:07:54 +08002000 if (err)
2001 return err;
2002
2003 mmc_select_mode(mmc, MMC_HS_400);
2004 err = mmc_set_clock(mmc, mmc->tran_speed, false);
2005 if (err)
2006 return err;
2007
2008 return 0;
2009}
2010#else
2011static int mmc_select_hs400(struct mmc *mmc)
2012{
2013 return -ENOTSUPP;
2014}
2015#endif
2016
Peng Fan44acd492019-07-10 14:43:07 +08002017#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
2018#if !CONFIG_IS_ENABLED(DM_MMC)
2019static int mmc_set_enhanced_strobe(struct mmc *mmc)
2020{
2021 return -ENOTSUPP;
2022}
2023#endif
2024static int mmc_select_hs400es(struct mmc *mmc)
2025{
2026 int err;
2027
2028 err = mmc_set_card_speed(mmc, MMC_HS, true);
2029 if (err)
2030 return err;
2031
2032 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH,
2033 EXT_CSD_BUS_WIDTH_8 | EXT_CSD_DDR_FLAG |
2034 EXT_CSD_BUS_WIDTH_STROBE);
2035 if (err) {
2036 printf("switch to bus width for hs400 failed\n");
2037 return err;
2038 }
2039 /* TODO: driver strength */
2040 err = mmc_set_card_speed(mmc, MMC_HS_400_ES, false);
2041 if (err)
2042 return err;
2043
2044 mmc_select_mode(mmc, MMC_HS_400_ES);
2045 err = mmc_set_clock(mmc, mmc->tran_speed, false);
2046 if (err)
2047 return err;
2048
2049 return mmc_set_enhanced_strobe(mmc);
2050}
2051#else
2052static int mmc_select_hs400es(struct mmc *mmc)
2053{
2054 return -ENOTSUPP;
2055}
2056#endif
2057
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002058#define for_each_supported_width(caps, ddr, ecbv) \
2059 for (ecbv = ext_csd_bus_width;\
2060 ecbv < ext_csd_bus_width + ARRAY_SIZE(ext_csd_bus_width);\
2061 ecbv++) \
2062 if ((ddr == ecbv->is_ddr) && (caps & ecbv->cap))
2063
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002064static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002065{
2066 int err;
2067 const struct mode_width_tuning *mwt;
2068 const struct ext_csd_bus_width *ecbw;
2069
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01002070#ifdef DEBUG
2071 mmc_dump_capabilities("mmc", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01002072 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01002073#endif
2074
Anup Patelf49ff792019-07-08 04:10:43 +00002075 if (mmc_host_is_spi(mmc)) {
2076 mmc_set_bus_width(mmc, 1);
2077 mmc_select_mode(mmc, MMC_LEGACY);
2078 mmc_set_clock(mmc, mmc->tran_speed, MMC_CLK_ENABLE);
2079 return 0;
2080 }
2081
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002082 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01002083 card_caps &= mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002084
2085 /* Only version 4 of MMC supports wider bus widths */
2086 if (mmc->version < MMC_VERSION_4)
2087 return 0;
2088
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002089 if (!mmc->ext_csd) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002090 pr_debug("No ext_csd found!\n"); /* this should enver happen */
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002091 return -ENOTSUPP;
2092 }
2093
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01002094#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
2095 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
2096 /*
2097 * In case the eMMC is in HS200/HS400 mode, downgrade to HS mode
2098 * before doing anything else, since a transition from either of
2099 * the HS200/HS400 mode directly to legacy mode is not supported.
2100 */
2101 if (mmc->selected_mode == MMC_HS_200 ||
2102 mmc->selected_mode == MMC_HS_400)
2103 mmc_set_card_speed(mmc, MMC_HS, true);
2104 else
2105#endif
2106 mmc_set_clock(mmc, mmc->legacy_speed, MMC_CLK_ENABLE);
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002107
2108 for_each_mmc_mode_by_pref(card_caps, mwt) {
2109 for_each_supported_width(card_caps & mwt->widths,
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002110 mmc_is_mode_ddr(mwt->mode), ecbw) {
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002111 enum mmc_voltage old_voltage;
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002112 pr_debug("trying mode %s width %d (at %d MHz)\n",
2113 mmc_mode_name(mwt->mode),
2114 bus_width(ecbw->cap),
2115 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002116 old_voltage = mmc->signal_voltage;
2117 err = mmc_set_lowest_voltage(mmc, mwt->mode,
2118 MMC_ALL_SIGNAL_VOLTAGE);
2119 if (err)
2120 continue;
2121
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002122 /* configure the bus width (card + host) */
2123 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2124 EXT_CSD_BUS_WIDTH,
2125 ecbw->ext_csd_bits & ~EXT_CSD_DDR_FLAG);
2126 if (err)
2127 goto error;
2128 mmc_set_bus_width(mmc, bus_width(ecbw->cap));
2129
Peng Fan3dd26262018-08-10 14:07:54 +08002130 if (mwt->mode == MMC_HS_400) {
2131 err = mmc_select_hs400(mmc);
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002132 if (err) {
Peng Fan3dd26262018-08-10 14:07:54 +08002133 printf("Select HS400 failed %d\n", err);
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002134 goto error;
2135 }
Peng Fan44acd492019-07-10 14:43:07 +08002136 } else if (mwt->mode == MMC_HS_400_ES) {
2137 err = mmc_select_hs400es(mmc);
2138 if (err) {
2139 printf("Select HS400ES failed %d\n",
2140 err);
2141 goto error;
2142 }
Peng Fan3dd26262018-08-10 14:07:54 +08002143 } else {
2144 /* configure the bus speed (card) */
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01002145 err = mmc_set_card_speed(mmc, mwt->mode, false);
Peng Fan3dd26262018-08-10 14:07:54 +08002146 if (err)
2147 goto error;
2148
2149 /*
2150 * configure the bus width AND the ddr mode
2151 * (card). The host side will be taken care
2152 * of in the next step
2153 */
2154 if (ecbw->ext_csd_bits & EXT_CSD_DDR_FLAG) {
2155 err = mmc_switch(mmc,
2156 EXT_CSD_CMD_SET_NORMAL,
2157 EXT_CSD_BUS_WIDTH,
2158 ecbw->ext_csd_bits);
2159 if (err)
2160 goto error;
2161 }
2162
2163 /* configure the bus mode (host) */
2164 mmc_select_mode(mmc, mwt->mode);
2165 mmc_set_clock(mmc, mmc->tran_speed,
2166 MMC_CLK_ENABLE);
2167#ifdef MMC_SUPPORTS_TUNING
2168
2169 /* execute tuning if needed */
2170 if (mwt->tuning) {
2171 err = mmc_execute_tuning(mmc,
2172 mwt->tuning);
2173 if (err) {
2174 pr_debug("tuning failed\n");
2175 goto error;
2176 }
2177 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01002178#endif
Peng Fan3dd26262018-08-10 14:07:54 +08002179 }
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002180
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002181 /* do a transfer to check the configuration */
2182 err = mmc_read_and_compare_ext_csd(mmc);
2183 if (!err)
2184 return 0;
2185error:
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002186 mmc_set_signal_voltage(mmc, old_voltage);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002187 /* if an error occured, revert to a safer bus mode */
2188 mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2189 EXT_CSD_BUS_WIDTH, EXT_CSD_BUS_WIDTH_1);
2190 mmc_select_mode(mmc, MMC_LEGACY);
2191 mmc_set_bus_width(mmc, 1);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002192 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002193 }
2194
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002195 pr_err("unable to select a mode\n");
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002196
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002197 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002198}
Marek Vasut62d77ce2018-04-15 00:37:11 +02002199#endif
2200
2201#if CONFIG_IS_ENABLED(MMC_TINY)
2202DEFINE_CACHE_ALIGN_BUFFER(u8, ext_csd_bkup, MMC_MAX_BLOCK_LEN);
2203#endif
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002204
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002205static int mmc_startup_v4(struct mmc *mmc)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002206{
2207 int err, i;
2208 u64 capacity;
2209 bool has_parts = false;
2210 bool part_completed;
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002211 static const u32 mmc_versions[] = {
2212 MMC_VERSION_4,
2213 MMC_VERSION_4_1,
2214 MMC_VERSION_4_2,
2215 MMC_VERSION_4_3,
Jean-Jacques Hiblotace1bed2018-02-09 12:09:28 +01002216 MMC_VERSION_4_4,
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002217 MMC_VERSION_4_41,
2218 MMC_VERSION_4_5,
2219 MMC_VERSION_5_0,
2220 MMC_VERSION_5_1
2221 };
2222
Marek Vasut62d77ce2018-04-15 00:37:11 +02002223#if CONFIG_IS_ENABLED(MMC_TINY)
2224 u8 *ext_csd = ext_csd_bkup;
2225
2226 if (IS_SD(mmc) || mmc->version < MMC_VERSION_4)
2227 return 0;
2228
2229 if (!mmc->ext_csd)
2230 memset(ext_csd_bkup, 0, sizeof(ext_csd_bkup));
2231
2232 err = mmc_send_ext_csd(mmc, ext_csd);
2233 if (err)
2234 goto error;
2235
2236 /* store the ext csd for future reference */
2237 if (!mmc->ext_csd)
2238 mmc->ext_csd = ext_csd;
2239#else
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002240 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002241
2242 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4))
2243 return 0;
2244
2245 /* check ext_csd version and capacity */
2246 err = mmc_send_ext_csd(mmc, ext_csd);
2247 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002248 goto error;
2249
2250 /* store the ext csd for future reference */
2251 if (!mmc->ext_csd)
2252 mmc->ext_csd = malloc(MMC_MAX_BLOCK_LEN);
2253 if (!mmc->ext_csd)
2254 return -ENOMEM;
2255 memcpy(mmc->ext_csd, ext_csd, MMC_MAX_BLOCK_LEN);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002256#endif
Alexander Kochetkov76584e32018-02-20 14:35:55 +03002257 if (ext_csd[EXT_CSD_REV] >= ARRAY_SIZE(mmc_versions))
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002258 return -EINVAL;
2259
2260 mmc->version = mmc_versions[ext_csd[EXT_CSD_REV]];
2261
2262 if (mmc->version >= MMC_VERSION_4_2) {
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002263 /*
2264 * According to the JEDEC Standard, the value of
2265 * ext_csd's capacity is valid if the value is more
2266 * than 2GB
2267 */
2268 capacity = ext_csd[EXT_CSD_SEC_CNT] << 0
2269 | ext_csd[EXT_CSD_SEC_CNT + 1] << 8
2270 | ext_csd[EXT_CSD_SEC_CNT + 2] << 16
2271 | ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
2272 capacity *= MMC_MAX_BLOCK_LEN;
2273 if ((capacity >> 20) > 2 * 1024)
2274 mmc->capacity_user = capacity;
2275 }
2276
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +02002277 if (mmc->version >= MMC_VERSION_4_5)
2278 mmc->gen_cmd6_time = ext_csd[EXT_CSD_GENERIC_CMD6_TIME];
2279
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002280 /* The partition data may be non-zero but it is only
2281 * effective if PARTITION_SETTING_COMPLETED is set in
2282 * EXT_CSD, so ignore any data if this bit is not set,
2283 * except for enabling the high-capacity group size
2284 * definition (see below).
2285 */
2286 part_completed = !!(ext_csd[EXT_CSD_PARTITION_SETTING] &
2287 EXT_CSD_PARTITION_SETTING_COMPLETED);
2288
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +02002289 mmc->part_switch_time = ext_csd[EXT_CSD_PART_SWITCH_TIME];
2290 /* Some eMMC set the value too low so set a minimum */
2291 if (mmc->part_switch_time < MMC_MIN_PART_SWITCH_TIME && mmc->part_switch_time)
2292 mmc->part_switch_time = MMC_MIN_PART_SWITCH_TIME;
2293
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002294 /* store the partition info of emmc */
2295 mmc->part_support = ext_csd[EXT_CSD_PARTITIONING_SUPPORT];
2296 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) ||
2297 ext_csd[EXT_CSD_BOOT_MULT])
2298 mmc->part_config = ext_csd[EXT_CSD_PART_CONF];
2299 if (part_completed &&
2300 (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & ENHNCD_SUPPORT))
2301 mmc->part_attr = ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE];
2302
2303 mmc->capacity_boot = ext_csd[EXT_CSD_BOOT_MULT] << 17;
2304
2305 mmc->capacity_rpmb = ext_csd[EXT_CSD_RPMB_MULT] << 17;
2306
2307 for (i = 0; i < 4; i++) {
2308 int idx = EXT_CSD_GP_SIZE_MULT + i * 3;
2309 uint mult = (ext_csd[idx + 2] << 16) +
2310 (ext_csd[idx + 1] << 8) + ext_csd[idx];
2311 if (mult)
2312 has_parts = true;
2313 if (!part_completed)
2314 continue;
2315 mmc->capacity_gp[i] = mult;
2316 mmc->capacity_gp[i] *=
2317 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2318 mmc->capacity_gp[i] *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2319 mmc->capacity_gp[i] <<= 19;
2320 }
2321
Jean-Jacques Hiblot173c06d2018-01-04 15:23:35 +01002322#ifndef CONFIG_SPL_BUILD
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002323 if (part_completed) {
2324 mmc->enh_user_size =
2325 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 2] << 16) +
2326 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 1] << 8) +
2327 ext_csd[EXT_CSD_ENH_SIZE_MULT];
2328 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2329 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2330 mmc->enh_user_size <<= 19;
2331 mmc->enh_user_start =
2332 (ext_csd[EXT_CSD_ENH_START_ADDR + 3] << 24) +
2333 (ext_csd[EXT_CSD_ENH_START_ADDR + 2] << 16) +
2334 (ext_csd[EXT_CSD_ENH_START_ADDR + 1] << 8) +
2335 ext_csd[EXT_CSD_ENH_START_ADDR];
2336 if (mmc->high_capacity)
2337 mmc->enh_user_start <<= 9;
2338 }
Jean-Jacques Hiblot173c06d2018-01-04 15:23:35 +01002339#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002340
2341 /*
2342 * Host needs to enable ERASE_GRP_DEF bit if device is
2343 * partitioned. This bit will be lost every time after a reset
2344 * or power off. This will affect erase size.
2345 */
2346 if (part_completed)
2347 has_parts = true;
2348 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) &&
2349 (ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE] & PART_ENH_ATTRIB))
2350 has_parts = true;
2351 if (has_parts) {
2352 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2353 EXT_CSD_ERASE_GROUP_DEF, 1);
2354
2355 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002356 goto error;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002357
2358 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
2359 }
2360
2361 if (ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01) {
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002362#if CONFIG_IS_ENABLED(MMC_WRITE)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002363 /* Read out group size from ext_csd */
2364 mmc->erase_grp_size =
2365 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002366#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002367 /*
2368 * if high capacity and partition setting completed
2369 * SEC_COUNT is valid even if it is smaller than 2 GiB
2370 * JEDEC Standard JESD84-B45, 6.2.4
2371 */
2372 if (mmc->high_capacity && part_completed) {
2373 capacity = (ext_csd[EXT_CSD_SEC_CNT]) |
2374 (ext_csd[EXT_CSD_SEC_CNT + 1] << 8) |
2375 (ext_csd[EXT_CSD_SEC_CNT + 2] << 16) |
2376 (ext_csd[EXT_CSD_SEC_CNT + 3] << 24);
2377 capacity *= MMC_MAX_BLOCK_LEN;
2378 mmc->capacity_user = capacity;
2379 }
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002380 }
2381#if CONFIG_IS_ENABLED(MMC_WRITE)
2382 else {
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002383 /* Calculate the group size from the csd value. */
2384 int erase_gsz, erase_gmul;
2385
2386 erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10;
2387 erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5;
2388 mmc->erase_grp_size = (erase_gsz + 1)
2389 * (erase_gmul + 1);
2390 }
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002391#endif
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +01002392#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002393 mmc->hc_wp_grp_size = 1024
2394 * ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
2395 * ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +01002396#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002397
2398 mmc->wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
2399
2400 return 0;
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002401error:
2402 if (mmc->ext_csd) {
Marek Vasut62d77ce2018-04-15 00:37:11 +02002403#if !CONFIG_IS_ENABLED(MMC_TINY)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002404 free(mmc->ext_csd);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002405#endif
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002406 mmc->ext_csd = NULL;
2407 }
2408 return err;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002409}
2410
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002411static int mmc_startup(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002412{
Stephen Warrenf866a462013-06-11 15:14:01 -06002413 int err, i;
Andy Fleming272cc702008-10-30 16:41:01 -05002414 uint mult, freq;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002415 u64 cmult, csize;
Andy Fleming272cc702008-10-30 16:41:01 -05002416 struct mmc_cmd cmd;
Simon Glassc40fdca2016-05-01 13:52:35 -06002417 struct blk_desc *bdesc;
Andy Fleming272cc702008-10-30 16:41:01 -05002418
Thomas Choud52ebf12010-12-24 13:12:21 +00002419#ifdef CONFIG_MMC_SPI_CRC_ON
2420 if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */
2421 cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF;
2422 cmd.resp_type = MMC_RSP_R1;
2423 cmd.cmdarg = 1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002424 err = mmc_send_cmd(mmc, &cmd, NULL);
Thomas Choud52ebf12010-12-24 13:12:21 +00002425 if (err)
2426 return err;
2427 }
2428#endif
2429
Andy Fleming272cc702008-10-30 16:41:01 -05002430 /* Put the Card in Identify Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002431 cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID :
2432 MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */
Andy Fleming272cc702008-10-30 16:41:01 -05002433 cmd.resp_type = MMC_RSP_R2;
2434 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002435
2436 err = mmc_send_cmd(mmc, &cmd, NULL);
2437
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002438#ifdef CONFIG_MMC_QUIRKS
2439 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SEND_CID)) {
2440 int retries = 4;
2441 /*
2442 * It has been seen that SEND_CID may fail on the first
2443 * attempt, let's try a few more time
2444 */
2445 do {
2446 err = mmc_send_cmd(mmc, &cmd, NULL);
2447 if (!err)
2448 break;
2449 } while (retries--);
2450 }
2451#endif
2452
Andy Fleming272cc702008-10-30 16:41:01 -05002453 if (err)
2454 return err;
2455
2456 memcpy(mmc->cid, cmd.response, 16);
2457
2458 /*
2459 * For MMC cards, set the Relative Address.
2460 * For SD cards, get the Relatvie Address.
2461 * This also puts the cards into Standby State
2462 */
Thomas Choud52ebf12010-12-24 13:12:21 +00002463 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2464 cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR;
2465 cmd.cmdarg = mmc->rca << 16;
2466 cmd.resp_type = MMC_RSP_R6;
Andy Fleming272cc702008-10-30 16:41:01 -05002467
Thomas Choud52ebf12010-12-24 13:12:21 +00002468 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002469
Thomas Choud52ebf12010-12-24 13:12:21 +00002470 if (err)
2471 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002472
Thomas Choud52ebf12010-12-24 13:12:21 +00002473 if (IS_SD(mmc))
2474 mmc->rca = (cmd.response[0] >> 16) & 0xffff;
2475 }
Andy Fleming272cc702008-10-30 16:41:01 -05002476
2477 /* Get the Card-Specific Data */
2478 cmd.cmdidx = MMC_CMD_SEND_CSD;
2479 cmd.resp_type = MMC_RSP_R2;
2480 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05002481
2482 err = mmc_send_cmd(mmc, &cmd, NULL);
2483
2484 if (err)
2485 return err;
2486
Rabin Vincent998be3d2009-04-05 13:30:56 +05302487 mmc->csd[0] = cmd.response[0];
2488 mmc->csd[1] = cmd.response[1];
2489 mmc->csd[2] = cmd.response[2];
2490 mmc->csd[3] = cmd.response[3];
Andy Fleming272cc702008-10-30 16:41:01 -05002491
2492 if (mmc->version == MMC_VERSION_UNKNOWN) {
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302493 int version = (cmd.response[0] >> 26) & 0xf;
Andy Fleming272cc702008-10-30 16:41:01 -05002494
2495 switch (version) {
Bin Meng53e8e402016-03-17 21:53:13 -07002496 case 0:
2497 mmc->version = MMC_VERSION_1_2;
2498 break;
2499 case 1:
2500 mmc->version = MMC_VERSION_1_4;
2501 break;
2502 case 2:
2503 mmc->version = MMC_VERSION_2_2;
2504 break;
2505 case 3:
2506 mmc->version = MMC_VERSION_3;
2507 break;
2508 case 4:
2509 mmc->version = MMC_VERSION_4;
2510 break;
2511 default:
2512 mmc->version = MMC_VERSION_1_2;
2513 break;
Andy Fleming272cc702008-10-30 16:41:01 -05002514 }
2515 }
2516
2517 /* divide frequency by 10, since the mults are 10x bigger */
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302518 freq = fbase[(cmd.response[0] & 0x7)];
2519 mult = multipliers[((cmd.response[0] >> 3) & 0xf)];
Andy Fleming272cc702008-10-30 16:41:01 -05002520
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002521 mmc->legacy_speed = freq * mult;
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002522 mmc_select_mode(mmc, MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05002523
Markus Niebelab711882013-12-16 13:40:46 +01002524 mmc->dsr_imp = ((cmd.response[1] >> 12) & 0x1);
Rabin Vincent998be3d2009-04-05 13:30:56 +05302525 mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf);
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002526#if CONFIG_IS_ENABLED(MMC_WRITE)
Andy Fleming272cc702008-10-30 16:41:01 -05002527
2528 if (IS_SD(mmc))
2529 mmc->write_bl_len = mmc->read_bl_len;
2530 else
Rabin Vincent998be3d2009-04-05 13:30:56 +05302531 mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf);
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002532#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002533
2534 if (mmc->high_capacity) {
2535 csize = (mmc->csd[1] & 0x3f) << 16
2536 | (mmc->csd[2] & 0xffff0000) >> 16;
2537 cmult = 8;
2538 } else {
2539 csize = (mmc->csd[1] & 0x3ff) << 2
2540 | (mmc->csd[2] & 0xc0000000) >> 30;
2541 cmult = (mmc->csd[2] & 0x00038000) >> 15;
2542 }
2543
Stephen Warrenf866a462013-06-11 15:14:01 -06002544 mmc->capacity_user = (csize + 1) << (cmult + 2);
2545 mmc->capacity_user *= mmc->read_bl_len;
2546 mmc->capacity_boot = 0;
2547 mmc->capacity_rpmb = 0;
2548 for (i = 0; i < 4; i++)
2549 mmc->capacity_gp[i] = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002550
Simon Glass8bfa1952013-04-03 08:54:30 +00002551 if (mmc->read_bl_len > MMC_MAX_BLOCK_LEN)
2552 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -05002553
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002554#if CONFIG_IS_ENABLED(MMC_WRITE)
Simon Glass8bfa1952013-04-03 08:54:30 +00002555 if (mmc->write_bl_len > MMC_MAX_BLOCK_LEN)
2556 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002557#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002558
Markus Niebelab711882013-12-16 13:40:46 +01002559 if ((mmc->dsr_imp) && (0xffffffff != mmc->dsr)) {
2560 cmd.cmdidx = MMC_CMD_SET_DSR;
2561 cmd.cmdarg = (mmc->dsr & 0xffff) << 16;
2562 cmd.resp_type = MMC_RSP_NONE;
2563 if (mmc_send_cmd(mmc, &cmd, NULL))
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002564 pr_warn("MMC: SET_DSR failed\n");
Markus Niebelab711882013-12-16 13:40:46 +01002565 }
2566
Andy Fleming272cc702008-10-30 16:41:01 -05002567 /* Select the card, and put it into Transfer Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002568 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2569 cmd.cmdidx = MMC_CMD_SELECT_CARD;
Ajay Bhargavfe8f7062011-10-05 03:13:23 +00002570 cmd.resp_type = MMC_RSP_R1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002571 cmd.cmdarg = mmc->rca << 16;
Thomas Choud52ebf12010-12-24 13:12:21 +00002572 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002573
Thomas Choud52ebf12010-12-24 13:12:21 +00002574 if (err)
2575 return err;
2576 }
Andy Fleming272cc702008-10-30 16:41:01 -05002577
Lei Wene6f99a52011-06-22 17:03:31 +00002578 /*
2579 * For SD, its erase group is always one sector
2580 */
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002581#if CONFIG_IS_ENABLED(MMC_WRITE)
Lei Wene6f99a52011-06-22 17:03:31 +00002582 mmc->erase_grp_size = 1;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002583#endif
Lei Wenbc897b12011-05-02 16:26:26 +00002584 mmc->part_config = MMCPART_NOAVAILABLE;
Lei Wenbc897b12011-05-02 16:26:26 +00002585
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002586 err = mmc_startup_v4(mmc);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002587 if (err)
2588 return err;
Sukumar Ghoraid23e2c02010-09-20 18:29:29 +05302589
Simon Glassc40fdca2016-05-01 13:52:35 -06002590 err = mmc_set_capacity(mmc, mmc_get_blk_desc(mmc)->hwpart);
Stephen Warrenf866a462013-06-11 15:14:01 -06002591 if (err)
2592 return err;
2593
Marek Vasut62d77ce2018-04-15 00:37:11 +02002594#if CONFIG_IS_ENABLED(MMC_TINY)
2595 mmc_set_clock(mmc, mmc->legacy_speed, false);
Faiz Abbase8d5dde2020-02-26 13:44:32 +05302596 mmc_select_mode(mmc, MMC_LEGACY);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002597 mmc_set_bus_width(mmc, 1);
2598#else
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002599 if (IS_SD(mmc)) {
2600 err = sd_get_capabilities(mmc);
2601 if (err)
2602 return err;
2603 err = sd_select_mode_and_width(mmc, mmc->card_caps);
2604 } else {
2605 err = mmc_get_capabilities(mmc);
2606 if (err)
2607 return err;
Masahiro Yamada8adf50e2020-01-23 14:31:12 +09002608 err = mmc_select_mode_and_width(mmc, mmc->card_caps);
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002609 }
Marek Vasut62d77ce2018-04-15 00:37:11 +02002610#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002611 if (err)
2612 return err;
2613
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002614 mmc->best_mode = mmc->selected_mode;
Jaehoon Chungad5fd922012-03-26 21:16:03 +00002615
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002616 /* Fix the block length for DDR mode */
2617 if (mmc->ddr_mode) {
2618 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002619#if CONFIG_IS_ENABLED(MMC_WRITE)
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002620 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002621#endif
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002622 }
2623
Andy Fleming272cc702008-10-30 16:41:01 -05002624 /* fill in device description */
Simon Glassc40fdca2016-05-01 13:52:35 -06002625 bdesc = mmc_get_blk_desc(mmc);
2626 bdesc->lun = 0;
2627 bdesc->hwpart = 0;
2628 bdesc->type = 0;
2629 bdesc->blksz = mmc->read_bl_len;
2630 bdesc->log2blksz = LOG2(bdesc->blksz);
2631 bdesc->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Sjoerd Simonsfc011f62015-12-04 23:27:40 +01002632#if !defined(CONFIG_SPL_BUILD) || \
2633 (defined(CONFIG_SPL_LIBCOMMON_SUPPORT) && \
Simon Glass27084c02019-09-25 08:56:27 -06002634 !CONFIG_IS_ENABLED(USE_TINY_PRINTF))
Simon Glassc40fdca2016-05-01 13:52:35 -06002635 sprintf(bdesc->vendor, "Man %06x Snr %04x%04x",
Taylor Huttbabce5f2012-10-20 17:15:59 +00002636 mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff),
2637 (mmc->cid[3] >> 16) & 0xffff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002638 sprintf(bdesc->product, "%c%c%c%c%c%c", mmc->cid[0] & 0xff,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002639 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
2640 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff,
2641 (mmc->cid[2] >> 24) & 0xff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002642 sprintf(bdesc->revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002643 (mmc->cid[2] >> 16) & 0xf);
Paul Burton56196822013-09-04 16:12:25 +01002644#else
Simon Glassc40fdca2016-05-01 13:52:35 -06002645 bdesc->vendor[0] = 0;
2646 bdesc->product[0] = 0;
2647 bdesc->revision[0] = 0;
Paul Burton56196822013-09-04 16:12:25 +01002648#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002649
Andre Przywaraeef05fd2018-12-17 10:05:45 +00002650#if !defined(CONFIG_DM_MMC) && (!defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT))
2651 part_init(bdesc);
2652#endif
2653
Andy Fleming272cc702008-10-30 16:41:01 -05002654 return 0;
2655}
2656
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002657static int mmc_send_if_cond(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002658{
2659 struct mmc_cmd cmd;
2660 int err;
2661
2662 cmd.cmdidx = SD_CMD_SEND_IF_COND;
2663 /* We set the bit if the host supports voltages between 2.7 and 3.6 V */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002664 cmd.cmdarg = ((mmc->cfg->voltages & 0xff8000) != 0) << 8 | 0xaa;
Andy Fleming272cc702008-10-30 16:41:01 -05002665 cmd.resp_type = MMC_RSP_R7;
Andy Fleming272cc702008-10-30 16:41:01 -05002666
2667 err = mmc_send_cmd(mmc, &cmd, NULL);
2668
2669 if (err)
2670 return err;
2671
Rabin Vincent998be3d2009-04-05 13:30:56 +05302672 if ((cmd.response[0] & 0xff) != 0xaa)
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002673 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002674 else
2675 mmc->version = SD_VERSION_2;
2676
2677 return 0;
2678}
2679
Simon Glassc4d660d2017-07-04 13:31:19 -06002680#if !CONFIG_IS_ENABLED(DM_MMC)
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002681/* board-specific MMC power initializations. */
2682__weak void board_mmc_power_init(void)
2683{
2684}
Simon Glass05cbeb72017-04-22 19:10:56 -06002685#endif
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002686
Peng Fan2051aef2016-10-11 15:08:43 +08002687static int mmc_power_init(struct mmc *mmc)
2688{
Simon Glassc4d660d2017-07-04 13:31:19 -06002689#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002690#if CONFIG_IS_ENABLED(DM_REGULATOR)
Peng Fan2051aef2016-10-11 15:08:43 +08002691 int ret;
2692
2693 ret = device_get_supply_regulator(mmc->dev, "vmmc-supply",
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002694 &mmc->vmmc_supply);
2695 if (ret)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002696 pr_debug("%s: No vmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002697
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002698 ret = device_get_supply_regulator(mmc->dev, "vqmmc-supply",
2699 &mmc->vqmmc_supply);
2700 if (ret)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002701 pr_debug("%s: No vqmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002702#endif
Simon Glass05cbeb72017-04-22 19:10:56 -06002703#else /* !CONFIG_DM_MMC */
2704 /*
2705 * Driver model should use a regulator, as above, rather than calling
2706 * out to board code.
2707 */
2708 board_mmc_power_init();
2709#endif
Peng Fan2051aef2016-10-11 15:08:43 +08002710 return 0;
2711}
2712
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002713/*
2714 * put the host in the initial state:
2715 * - turn on Vdd (card power supply)
2716 * - configure the bus width and clock to minimal values
2717 */
2718static void mmc_set_initial_state(struct mmc *mmc)
2719{
2720 int err;
2721
2722 /* First try to set 3.3V. If it fails set to 1.8V */
2723 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_330);
2724 if (err != 0)
2725 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
2726 if (err != 0)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002727 pr_warn("mmc: failed to set signal voltage\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002728
2729 mmc_select_mode(mmc, MMC_LEGACY);
2730 mmc_set_bus_width(mmc, 1);
Jaehoon Chung65117182018-01-26 19:25:29 +09002731 mmc_set_clock(mmc, 0, MMC_CLK_ENABLE);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002732}
2733
2734static int mmc_power_on(struct mmc *mmc)
2735{
2736#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2737 if (mmc->vmmc_supply) {
2738 int ret = regulator_set_enable(mmc->vmmc_supply, true);
2739
2740 if (ret) {
2741 puts("Error enabling VMMC supply\n");
2742 return ret;
2743 }
2744 }
2745#endif
2746 return 0;
2747}
2748
2749static int mmc_power_off(struct mmc *mmc)
2750{
Jaehoon Chung65117182018-01-26 19:25:29 +09002751 mmc_set_clock(mmc, 0, MMC_CLK_DISABLE);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002752#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2753 if (mmc->vmmc_supply) {
2754 int ret = regulator_set_enable(mmc->vmmc_supply, false);
2755
2756 if (ret) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002757 pr_debug("Error disabling VMMC supply\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002758 return ret;
2759 }
2760 }
2761#endif
2762 return 0;
2763}
2764
2765static int mmc_power_cycle(struct mmc *mmc)
2766{
2767 int ret;
2768
2769 ret = mmc_power_off(mmc);
2770 if (ret)
2771 return ret;
Yann Gautier3602a562019-09-19 17:56:12 +02002772
2773 ret = mmc_host_power_cycle(mmc);
2774 if (ret)
2775 return ret;
2776
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002777 /*
2778 * SD spec recommends at least 1ms of delay. Let's wait for 2ms
2779 * to be on the safer side.
2780 */
2781 udelay(2000);
2782 return mmc_power_on(mmc);
2783}
2784
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002785int mmc_get_op_cond(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002786{
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002787 bool uhs_en = supports_uhs(mmc->cfg->host_caps);
Macpaul Linafd59322011-11-14 23:35:39 +00002788 int err;
Andy Fleming272cc702008-10-30 16:41:01 -05002789
Lei Wenbc897b12011-05-02 16:26:26 +00002790 if (mmc->has_init)
2791 return 0;
2792
Peng Fan2051aef2016-10-11 15:08:43 +08002793 err = mmc_power_init(mmc);
2794 if (err)
2795 return err;
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002796
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002797#ifdef CONFIG_MMC_QUIRKS
2798 mmc->quirks = MMC_QUIRK_RETRY_SET_BLOCKLEN |
Joel Johnsond4a5fa32020-01-11 09:08:14 -07002799 MMC_QUIRK_RETRY_SEND_CID |
2800 MMC_QUIRK_RETRY_APP_CMD;
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002801#endif
2802
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002803 err = mmc_power_cycle(mmc);
2804 if (err) {
2805 /*
2806 * if power cycling is not supported, we should not try
2807 * to use the UHS modes, because we wouldn't be able to
2808 * recover from an error during the UHS initialization.
2809 */
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002810 pr_debug("Unable to do a full power cycle. Disabling the UHS modes for safety\n");
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002811 uhs_en = false;
2812 mmc->host_caps &= ~UHS_CAPS;
2813 err = mmc_power_on(mmc);
2814 }
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002815 if (err)
2816 return err;
2817
Simon Glasse7881d82017-07-29 11:35:31 -06002818#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass8ca51e52016-06-12 23:30:22 -06002819 /* The device has already been probed ready for use */
2820#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +02002821 /* made sure it's not NULL earlier */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002822 err = mmc->cfg->ops->init(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002823 if (err)
2824 return err;
Simon Glass8ca51e52016-06-12 23:30:22 -06002825#endif
Andrew Gabbasov786e8f82014-12-01 06:59:09 -06002826 mmc->ddr_mode = 0;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02002827
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002828retry:
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002829 mmc_set_initial_state(mmc);
Jean-Jacques Hiblot318a7a52017-09-21 16:30:01 +02002830
Andy Fleming272cc702008-10-30 16:41:01 -05002831 /* Reset the Card */
2832 err = mmc_go_idle(mmc);
2833
2834 if (err)
2835 return err;
2836
Marcel Ziswilerf5624b12019-05-20 02:44:53 +02002837 /* The internal partition reset to user partition(0) at every CMD0 */
Simon Glassc40fdca2016-05-01 13:52:35 -06002838 mmc_get_blk_desc(mmc)->hwpart = 0;
Lei Wenbc897b12011-05-02 16:26:26 +00002839
Andy Fleming272cc702008-10-30 16:41:01 -05002840 /* Test for SD version 2 */
Macpaul Linafd59322011-11-14 23:35:39 +00002841 err = mmc_send_if_cond(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002842
Andy Fleming272cc702008-10-30 16:41:01 -05002843 /* Now try to get the SD card's operating condition */
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002844 err = sd_send_op_cond(mmc, uhs_en);
2845 if (err && uhs_en) {
2846 uhs_en = false;
2847 mmc_power_cycle(mmc);
2848 goto retry;
2849 }
Andy Fleming272cc702008-10-30 16:41:01 -05002850
2851 /* If the command timed out, we check for an MMC card */
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002852 if (err == -ETIMEDOUT) {
Andy Fleming272cc702008-10-30 16:41:01 -05002853 err = mmc_send_op_cond(mmc);
2854
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002855 if (err) {
Paul Burton56196822013-09-04 16:12:25 +01002856#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002857 pr_err("Card did not respond to voltage select!\n");
Paul Burton56196822013-09-04 16:12:25 +01002858#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002859 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002860 }
2861 }
2862
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002863 return err;
2864}
2865
2866int mmc_start_init(struct mmc *mmc)
2867{
2868 bool no_card;
2869 int err = 0;
2870
2871 /*
2872 * all hosts are capable of 1 bit bus-width and able to use the legacy
2873 * timings.
2874 */
Faiz Abbase8d5dde2020-02-26 13:44:32 +05302875 mmc->host_caps = mmc->cfg->host_caps | MMC_CAP(MMC_LEGACY) |
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002876 MMC_CAP(MMC_LEGACY) | MMC_MODE_1BIT;
Faiz Abbas32860bd2020-02-26 13:44:30 +05302877#if CONFIG_IS_ENABLED(DM_MMC)
2878 mmc_deferred_probe(mmc);
2879#endif
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002880#if !defined(CONFIG_MMC_BROKEN_CD)
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002881 no_card = mmc_getcd(mmc) == 0;
2882#else
2883 no_card = 0;
2884#endif
2885#if !CONFIG_IS_ENABLED(DM_MMC)
Baruch Siachfea39392019-07-22 15:52:12 +03002886 /* we pretend there's no card when init is NULL */
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002887 no_card = no_card || (mmc->cfg->ops->init == NULL);
2888#endif
2889 if (no_card) {
2890 mmc->has_init = 0;
2891#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
2892 pr_err("MMC: no card present\n");
2893#endif
2894 return -ENOMEDIUM;
2895 }
2896
2897 err = mmc_get_op_cond(mmc);
2898
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002899 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002900 mmc->init_in_progress = 1;
2901
2902 return err;
2903}
2904
2905static int mmc_complete_init(struct mmc *mmc)
2906{
2907 int err = 0;
2908
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002909 mmc->init_in_progress = 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002910 if (mmc->op_cond_pending)
2911 err = mmc_complete_op_cond(mmc);
2912
2913 if (!err)
2914 err = mmc_startup(mmc);
Lei Wenbc897b12011-05-02 16:26:26 +00002915 if (err)
2916 mmc->has_init = 0;
2917 else
2918 mmc->has_init = 1;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002919 return err;
2920}
2921
2922int mmc_init(struct mmc *mmc)
2923{
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002924 int err = 0;
Vipul Kumar36332b62018-05-03 12:20:54 +05302925 __maybe_unused ulong start;
Simon Glassc4d660d2017-07-04 13:31:19 -06002926#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass33fb2112016-05-01 13:52:41 -06002927 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc->dev);
Che-Liang Chioue9550442012-11-28 15:21:13 +00002928
Simon Glass33fb2112016-05-01 13:52:41 -06002929 upriv->mmc = mmc;
2930#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00002931 if (mmc->has_init)
2932 return 0;
Mateusz Zalegad803fea2014-04-29 20:15:30 +02002933
2934 start = get_timer(0);
2935
Che-Liang Chioue9550442012-11-28 15:21:13 +00002936 if (!mmc->init_in_progress)
2937 err = mmc_start_init(mmc);
2938
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002939 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002940 err = mmc_complete_init(mmc);
Jagan Teki919b4852017-01-10 11:18:43 +01002941 if (err)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002942 pr_info("%s: %d, time %lu\n", __func__, err, get_timer(start));
Jagan Teki919b4852017-01-10 11:18:43 +01002943
Lei Wenbc897b12011-05-02 16:26:26 +00002944 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002945}
2946
Marek Vasutfceea992019-01-29 04:45:51 +01002947#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
2948 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
2949 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
2950int mmc_deinit(struct mmc *mmc)
2951{
2952 u32 caps_filtered;
2953
2954 if (!mmc->has_init)
2955 return 0;
2956
2957 if (IS_SD(mmc)) {
2958 caps_filtered = mmc->card_caps &
2959 ~(MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25) |
2960 MMC_CAP(UHS_SDR50) | MMC_CAP(UHS_DDR50) |
2961 MMC_CAP(UHS_SDR104));
2962
2963 return sd_select_mode_and_width(mmc, caps_filtered);
2964 } else {
2965 caps_filtered = mmc->card_caps &
2966 ~(MMC_CAP(MMC_HS_200) | MMC_CAP(MMC_HS_400));
2967
2968 return mmc_select_mode_and_width(mmc, caps_filtered);
2969 }
2970}
2971#endif
2972
Markus Niebelab711882013-12-16 13:40:46 +01002973int mmc_set_dsr(struct mmc *mmc, u16 val)
2974{
2975 mmc->dsr = val;
2976 return 0;
2977}
2978
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002979/* CPU-specific MMC initializations */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09002980__weak int cpu_mmc_init(struct bd_info *bis)
Andy Fleming272cc702008-10-30 16:41:01 -05002981{
2982 return -1;
2983}
2984
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002985/* board-specific MMC initializations. */
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09002986__weak int board_mmc_init(struct bd_info *bis)
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002987{
2988 return -1;
2989}
Andy Fleming272cc702008-10-30 16:41:01 -05002990
Che-Liang Chioue9550442012-11-28 15:21:13 +00002991void mmc_set_preinit(struct mmc *mmc, int preinit)
2992{
2993 mmc->preinit = preinit;
2994}
2995
Faiz Abbas8a856db2018-02-12 19:35:24 +05302996#if CONFIG_IS_ENABLED(DM_MMC)
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09002997static int mmc_probe(struct bd_info *bis)
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002998{
Simon Glass4a1db6d2015-12-29 05:22:49 -07002999 int ret, i;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003000 struct uclass *uc;
Simon Glass4a1db6d2015-12-29 05:22:49 -07003001 struct udevice *dev;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003002
3003 ret = uclass_get(UCLASS_MMC, &uc);
3004 if (ret)
3005 return ret;
3006
Simon Glass4a1db6d2015-12-29 05:22:49 -07003007 /*
3008 * Try to add them in sequence order. Really with driver model we
3009 * should allow holes, but the current MMC list does not allow that.
3010 * So if we request 0, 1, 3 we will get 0, 1, 2.
3011 */
3012 for (i = 0; ; i++) {
3013 ret = uclass_get_device_by_seq(UCLASS_MMC, i, &dev);
3014 if (ret == -ENODEV)
3015 break;
3016 }
3017 uclass_foreach_dev(dev, uc) {
3018 ret = device_probe(dev);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003019 if (ret)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01003020 pr_err("%s - probe failed: %d\n", dev->name, ret);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003021 }
3022
3023 return 0;
3024}
3025#else
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09003026static int mmc_probe(struct bd_info *bis)
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003027{
3028 if (board_mmc_init(bis) < 0)
3029 cpu_mmc_init(bis);
3030
3031 return 0;
3032}
3033#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00003034
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +09003035int mmc_initialize(struct bd_info *bis)
Andy Fleming272cc702008-10-30 16:41:01 -05003036{
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02003037 static int initialized = 0;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003038 int ret;
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02003039 if (initialized) /* Avoid initializing mmc multiple times */
3040 return 0;
3041 initialized = 1;
3042
Simon Glassc4d660d2017-07-04 13:31:19 -06003043#if !CONFIG_IS_ENABLED(BLK)
Marek Vasutb5b838f2016-12-01 02:06:33 +01003044#if !CONFIG_IS_ENABLED(MMC_TINY)
Simon Glassc40fdca2016-05-01 13:52:35 -06003045 mmc_list_init();
3046#endif
Marek Vasutb5b838f2016-12-01 02:06:33 +01003047#endif
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003048 ret = mmc_probe(bis);
3049 if (ret)
3050 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05003051
Ying Zhangbb0dc102013-08-16 15:16:11 +08003052#ifndef CONFIG_SPL_BUILD
Andy Fleming272cc702008-10-30 16:41:01 -05003053 print_mmc_devices(',');
Ying Zhangbb0dc102013-08-16 15:16:11 +08003054#endif
Andy Fleming272cc702008-10-30 16:41:01 -05003055
Simon Glassc40fdca2016-05-01 13:52:35 -06003056 mmc_do_preinit();
Andy Fleming272cc702008-10-30 16:41:01 -05003057 return 0;
3058}
Tomas Melincd3d4882016-11-25 11:01:03 +02003059
Lokesh Vutla80f02012019-09-09 14:40:36 +05303060#if CONFIG_IS_ENABLED(DM_MMC)
3061int mmc_init_device(int num)
3062{
3063 struct udevice *dev;
3064 struct mmc *m;
3065 int ret;
3066
3067 ret = uclass_get_device(UCLASS_MMC, num, &dev);
3068 if (ret)
3069 return ret;
3070
3071 m = mmc_get_mmc_dev(dev);
3072 if (!m)
3073 return 0;
Lokesh Vutla80f02012019-09-09 14:40:36 +05303074 if (m->preinit)
3075 mmc_start_init(m);
3076
3077 return 0;
3078}
3079#endif
3080
Tomas Melincd3d4882016-11-25 11:01:03 +02003081#ifdef CONFIG_CMD_BKOPS_ENABLE
3082int 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