blob: b61ce8db1431d68dc24857e3c4ef4e786497ae83 [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
4 * Andy Fleming
5 *
6 * Based vaguely on the Linux code
Andy Fleming272cc702008-10-30 16:41:01 -05007 */
8
9#include <config.h>
10#include <common.h>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060011#include <blk.h>
Andy Fleming272cc702008-10-30 16:41:01 -050012#include <command.h>
Sjoerd Simons8e3332e2015-08-30 16:55:45 -060013#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060014#include <log.h>
Sjoerd Simons8e3332e2015-08-30 16:55:45 -060015#include <dm/device-internal.h>
Stephen Warrend4622df2014-05-23 12:47:06 -060016#include <errno.h>
Andy Fleming272cc702008-10-30 16:41:01 -050017#include <mmc.h>
18#include <part.h>
Simon Glasscd93d622020-05-10 11:40:13 -060019#include <linux/bitops.h>
Simon Glassc05ed002020-05-10 11:40:11 -060020#include <linux/delay.h>
Peng Fan2051aef2016-10-11 15:08:43 +080021#include <power/regulator.h>
Andy Fleming272cc702008-10-30 16:41:01 -050022#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060023#include <memalign.h>
Andy Fleming272cc702008-10-30 16:41:01 -050024#include <linux/list.h>
Rabin Vincent9b1f9422009-04-05 13:30:54 +053025#include <div64.h>
Paul Burtonda61fa52013-09-09 15:30:26 +010026#include "mmc_private.h"
Andy Fleming272cc702008-10-30 16:41:01 -050027
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +020028#define DEFAULT_CMD6_TIMEOUT_MS 500
29
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +020030static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage);
Marek Vasutb5b838f2016-12-01 02:06:33 +010031
Simon Glasse7881d82017-07-29 11:35:31 -060032#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020033
Sam Protsenko6cf8a902019-08-14 22:52:51 +030034static int mmc_wait_dat0(struct mmc *mmc, int state, int timeout_us)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020035{
36 return -ENOSYS;
37}
38
Jeroen Hofstee750121c2014-07-12 21:24:08 +020039__weak int board_mmc_getwp(struct mmc *mmc)
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000040{
41 return -1;
42}
43
44int mmc_getwp(struct mmc *mmc)
45{
46 int wp;
47
48 wp = board_mmc_getwp(mmc);
49
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000050 if (wp < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020051 if (mmc->cfg->ops->getwp)
52 wp = mmc->cfg->ops->getwp(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000053 else
54 wp = 0;
55 }
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000056
57 return wp;
58}
59
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +020060__weak int board_mmc_getcd(struct mmc *mmc)
61{
Stefano Babic11fdade2010-02-05 15:04:43 +010062 return -1;
63}
Simon Glass8ca51e52016-06-12 23:30:22 -060064#endif
Stefano Babic11fdade2010-02-05 15:04:43 +010065
Marek Vasut8635ff92012-03-15 18:41:35 +000066#ifdef CONFIG_MMC_TRACE
Simon Glassc0c76eb2016-06-12 23:30:20 -060067void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd)
68{
69 printf("CMD_SEND:%d\n", cmd->cmdidx);
Marek Vasut7d5ccb12019-03-23 18:54:45 +010070 printf("\t\tARG\t\t\t 0x%08x\n", cmd->cmdarg);
Simon Glassc0c76eb2016-06-12 23:30:20 -060071}
72
73void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, int ret)
74{
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +000075 int i;
76 u8 *ptr;
77
Bin Meng7863ce52016-03-17 21:53:14 -070078 if (ret) {
79 printf("\t\tRET\t\t\t %d\n", ret);
80 } else {
81 switch (cmd->resp_type) {
82 case MMC_RSP_NONE:
83 printf("\t\tMMC_RSP_NONE\n");
84 break;
85 case MMC_RSP_R1:
Marek Vasut7d5ccb12019-03-23 18:54:45 +010086 printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070087 cmd->response[0]);
88 break;
89 case MMC_RSP_R1b:
Marek Vasut7d5ccb12019-03-23 18:54:45 +010090 printf("\t\tMMC_RSP_R1b\t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070091 cmd->response[0]);
92 break;
93 case MMC_RSP_R2:
Marek Vasut7d5ccb12019-03-23 18:54:45 +010094 printf("\t\tMMC_RSP_R2\t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070095 cmd->response[0]);
Marek Vasut7d5ccb12019-03-23 18:54:45 +010096 printf("\t\t \t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070097 cmd->response[1]);
Marek Vasut7d5ccb12019-03-23 18:54:45 +010098 printf("\t\t \t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070099 cmd->response[2]);
Marek Vasut7d5ccb12019-03-23 18:54:45 +0100100 printf("\t\t \t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -0700101 cmd->response[3]);
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000102 printf("\n");
Bin Meng7863ce52016-03-17 21:53:14 -0700103 printf("\t\t\t\t\tDUMPING DATA\n");
104 for (i = 0; i < 4; i++) {
105 int j;
106 printf("\t\t\t\t\t%03d - ", i*4);
107 ptr = (u8 *)&cmd->response[i];
108 ptr += 3;
109 for (j = 0; j < 4; j++)
Marek Vasut7d5ccb12019-03-23 18:54:45 +0100110 printf("%02x ", *ptr--);
Bin Meng7863ce52016-03-17 21:53:14 -0700111 printf("\n");
112 }
113 break;
114 case MMC_RSP_R3:
Marek Vasut7d5ccb12019-03-23 18:54:45 +0100115 printf("\t\tMMC_RSP_R3,4\t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -0700116 cmd->response[0]);
117 break;
118 default:
119 printf("\t\tERROR MMC rsp not supported\n");
120 break;
Bin Meng53e8e402016-03-17 21:53:13 -0700121 }
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000122 }
Simon Glassc0c76eb2016-06-12 23:30:20 -0600123}
124
125void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd)
126{
127 int status;
128
129 status = (cmd->response[0] & MMC_STATUS_CURR_STATE) >> 9;
130 printf("CURR STATE:%d\n", status);
131}
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000132#endif
Simon Glassc0c76eb2016-06-12 23:30:20 -0600133
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200134#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
135const char *mmc_mode_name(enum bus_mode mode)
136{
137 static const char *const names[] = {
138 [MMC_LEGACY] = "MMC legacy",
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200139 [MMC_HS] = "MMC High Speed (26MHz)",
140 [SD_HS] = "SD High Speed (50MHz)",
141 [UHS_SDR12] = "UHS SDR12 (25MHz)",
142 [UHS_SDR25] = "UHS SDR25 (50MHz)",
143 [UHS_SDR50] = "UHS SDR50 (100MHz)",
144 [UHS_SDR104] = "UHS SDR104 (208MHz)",
145 [UHS_DDR50] = "UHS DDR50 (50MHz)",
146 [MMC_HS_52] = "MMC High Speed (52MHz)",
147 [MMC_DDR_52] = "MMC DDR52 (52MHz)",
148 [MMC_HS_200] = "HS200 (200MHz)",
Peng Fan3dd26262018-08-10 14:07:54 +0800149 [MMC_HS_400] = "HS400 (200MHz)",
Peng Fan44acd492019-07-10 14:43:07 +0800150 [MMC_HS_400_ES] = "HS400ES (200MHz)",
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200151 };
152
153 if (mode >= MMC_MODES_END)
154 return "Unknown mode";
155 else
156 return names[mode];
157}
158#endif
159
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200160static uint mmc_mode2freq(struct mmc *mmc, enum bus_mode mode)
161{
162 static const int freqs[] = {
Jaehoon Chung1b313aa2018-01-30 14:10:16 +0900163 [MMC_LEGACY] = 25000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200164 [MMC_HS] = 26000000,
165 [SD_HS] = 50000000,
Jaehoon Chung1b313aa2018-01-30 14:10:16 +0900166 [MMC_HS_52] = 52000000,
167 [MMC_DDR_52] = 52000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200168 [UHS_SDR12] = 25000000,
169 [UHS_SDR25] = 50000000,
170 [UHS_SDR50] = 100000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200171 [UHS_DDR50] = 50000000,
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100172 [UHS_SDR104] = 208000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200173 [MMC_HS_200] = 200000000,
Peng Fan3dd26262018-08-10 14:07:54 +0800174 [MMC_HS_400] = 200000000,
Peng Fan44acd492019-07-10 14:43:07 +0800175 [MMC_HS_400_ES] = 200000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200176 };
177
178 if (mode == MMC_LEGACY)
179 return mmc->legacy_speed;
180 else if (mode >= MMC_MODES_END)
181 return 0;
182 else
183 return freqs[mode];
184}
185
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200186static int mmc_select_mode(struct mmc *mmc, enum bus_mode mode)
187{
188 mmc->selected_mode = mode;
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200189 mmc->tran_speed = mmc_mode2freq(mmc, mode);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200190 mmc->ddr_mode = mmc_is_mode_ddr(mode);
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900191 pr_debug("selecting mode %s (freq : %d MHz)\n", mmc_mode_name(mode),
192 mmc->tran_speed / 1000000);
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200193 return 0;
194}
195
Simon Glasse7881d82017-07-29 11:35:31 -0600196#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glassc0c76eb2016-06-12 23:30:20 -0600197int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
198{
199 int ret;
200
201 mmmc_trace_before_send(mmc, cmd);
202 ret = mmc->cfg->ops->send_cmd(mmc, cmd, data);
203 mmmc_trace_after_send(mmc, cmd, ret);
204
Marek Vasut8635ff92012-03-15 18:41:35 +0000205 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500206}
Simon Glass8ca51e52016-06-12 23:30:22 -0600207#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500208
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200209int mmc_send_status(struct mmc *mmc, unsigned int *status)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000210{
211 struct mmc_cmd cmd;
Jan Kloetzked617c422012-02-05 22:29:12 +0000212 int err, retries = 5;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000213
214 cmd.cmdidx = MMC_CMD_SEND_STATUS;
215 cmd.resp_type = MMC_RSP_R1;
Marek Vasutaaf3d412011-08-10 09:24:48 +0200216 if (!mmc_host_is_spi(mmc))
217 cmd.cmdarg = mmc->rca << 16;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000218
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200219 while (retries--) {
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000220 err = mmc_send_cmd(mmc, &cmd, NULL);
Jan Kloetzked617c422012-02-05 22:29:12 +0000221 if (!err) {
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200222 mmc_trace_state(mmc, &cmd);
223 *status = cmd.response[0];
224 return 0;
225 }
226 }
227 mmc_trace_state(mmc, &cmd);
228 return -ECOMM;
229}
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +0200230
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300231int mmc_poll_for_busy(struct mmc *mmc, int timeout_ms)
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200232{
233 unsigned int status;
234 int err;
235
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300236 err = mmc_wait_dat0(mmc, 1, timeout_ms * 1000);
Jean-Jacques Hiblotcd0b80e2019-07-02 10:53:53 +0200237 if (err != -ENOSYS)
238 return err;
239
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200240 while (1) {
241 err = mmc_send_status(mmc, &status);
242 if (err)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000243 return err;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000244
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200245 if ((status & MMC_STATUS_RDY_FOR_DATA) &&
246 (status & MMC_STATUS_CURR_STATE) !=
247 MMC_STATE_PRG)
248 break;
249
250 if (status & MMC_STATUS_MASK) {
251#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
252 pr_err("Status Error: 0x%08x\n", status);
253#endif
254 return -ECOMM;
255 }
256
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300257 if (timeout_ms-- <= 0)
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500258 break;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000259
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500260 udelay(1000);
261 }
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000262
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300263 if (timeout_ms <= 0) {
Paul Burton56196822013-09-04 16:12:25 +0100264#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100265 pr_err("Timeout waiting card ready\n");
Paul Burton56196822013-09-04 16:12:25 +0100266#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900267 return -ETIMEDOUT;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000268 }
269
270 return 0;
271}
272
Paul Burtonda61fa52013-09-09 15:30:26 +0100273int mmc_set_blocklen(struct mmc *mmc, int len)
Andy Fleming272cc702008-10-30 16:41:01 -0500274{
275 struct mmc_cmd cmd;
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200276 int err;
Andy Fleming272cc702008-10-30 16:41:01 -0500277
Andrew Gabbasov786e8f82014-12-01 06:59:09 -0600278 if (mmc->ddr_mode)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900279 return 0;
280
Andy Fleming272cc702008-10-30 16:41:01 -0500281 cmd.cmdidx = MMC_CMD_SET_BLOCKLEN;
282 cmd.resp_type = MMC_RSP_R1;
283 cmd.cmdarg = len;
Andy Fleming272cc702008-10-30 16:41:01 -0500284
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200285 err = mmc_send_cmd(mmc, &cmd, NULL);
286
287#ifdef CONFIG_MMC_QUIRKS
288 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SET_BLOCKLEN)) {
289 int retries = 4;
290 /*
291 * It has been seen that SET_BLOCKLEN may fail on the first
292 * attempt, let's try a few more time
293 */
294 do {
295 err = mmc_send_cmd(mmc, &cmd, NULL);
296 if (!err)
297 break;
298 } while (retries--);
299 }
300#endif
301
302 return err;
Andy Fleming272cc702008-10-30 16:41:01 -0500303}
304
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100305#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200306static const u8 tuning_blk_pattern_4bit[] = {
307 0xff, 0x0f, 0xff, 0x00, 0xff, 0xcc, 0xc3, 0xcc,
308 0xc3, 0x3c, 0xcc, 0xff, 0xfe, 0xff, 0xfe, 0xef,
309 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xfb, 0xff, 0xfb,
310 0xbf, 0xff, 0x7f, 0xff, 0x77, 0xf7, 0xbd, 0xef,
311 0xff, 0xf0, 0xff, 0xf0, 0x0f, 0xfc, 0xcc, 0x3c,
312 0xcc, 0x33, 0xcc, 0xcf, 0xff, 0xef, 0xff, 0xee,
313 0xff, 0xfd, 0xff, 0xfd, 0xdf, 0xff, 0xbf, 0xff,
314 0xbb, 0xff, 0xf7, 0xff, 0xf7, 0x7f, 0x7b, 0xde,
315};
316
317static const u8 tuning_blk_pattern_8bit[] = {
318 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
319 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc, 0xcc,
320 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff, 0xff,
321 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee, 0xff,
322 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd, 0xdd,
323 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff, 0xbb,
324 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff,
325 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee, 0xff,
326 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00,
327 0x00, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc,
328 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff,
329 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee,
330 0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd,
331 0xdd, 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff,
332 0xbb, 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff,
333 0xff, 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee,
334};
335
336int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error)
337{
338 struct mmc_cmd cmd;
339 struct mmc_data data;
340 const u8 *tuning_block_pattern;
341 int size, err;
342
343 if (mmc->bus_width == 8) {
344 tuning_block_pattern = tuning_blk_pattern_8bit;
345 size = sizeof(tuning_blk_pattern_8bit);
346 } else if (mmc->bus_width == 4) {
347 tuning_block_pattern = tuning_blk_pattern_4bit;
348 size = sizeof(tuning_blk_pattern_4bit);
349 } else {
350 return -EINVAL;
351 }
352
353 ALLOC_CACHE_ALIGN_BUFFER(u8, data_buf, size);
354
355 cmd.cmdidx = opcode;
356 cmd.cmdarg = 0;
357 cmd.resp_type = MMC_RSP_R1;
358
359 data.dest = (void *)data_buf;
360 data.blocks = 1;
361 data.blocksize = size;
362 data.flags = MMC_DATA_READ;
363
364 err = mmc_send_cmd(mmc, &cmd, &data);
365 if (err)
366 return err;
367
368 if (memcmp(data_buf, tuning_block_pattern, size))
369 return -EIO;
370
371 return 0;
372}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100373#endif
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200374
Sascha Silbeff8fef52013-06-14 13:07:25 +0200375static int mmc_read_blocks(struct mmc *mmc, void *dst, lbaint_t start,
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000376 lbaint_t blkcnt)
Andy Fleming272cc702008-10-30 16:41:01 -0500377{
378 struct mmc_cmd cmd;
379 struct mmc_data data;
380
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700381 if (blkcnt > 1)
382 cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK;
383 else
384 cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK;
Andy Fleming272cc702008-10-30 16:41:01 -0500385
386 if (mmc->high_capacity)
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700387 cmd.cmdarg = start;
Andy Fleming272cc702008-10-30 16:41:01 -0500388 else
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700389 cmd.cmdarg = start * mmc->read_bl_len;
Andy Fleming272cc702008-10-30 16:41:01 -0500390
391 cmd.resp_type = MMC_RSP_R1;
Andy Fleming272cc702008-10-30 16:41:01 -0500392
393 data.dest = dst;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700394 data.blocks = blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500395 data.blocksize = mmc->read_bl_len;
396 data.flags = MMC_DATA_READ;
397
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700398 if (mmc_send_cmd(mmc, &cmd, &data))
399 return 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500400
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700401 if (blkcnt > 1) {
402 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
403 cmd.cmdarg = 0;
404 cmd.resp_type = MMC_RSP_R1b;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700405 if (mmc_send_cmd(mmc, &cmd, NULL)) {
Paul Burton56196822013-09-04 16:12:25 +0100406#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100407 pr_err("mmc fail to send stop cmd\n");
Paul Burton56196822013-09-04 16:12:25 +0100408#endif
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700409 return 0;
410 }
Andy Fleming272cc702008-10-30 16:41:01 -0500411 }
412
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700413 return blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500414}
415
Marek Vasut145429a2020-04-04 12:45:05 +0200416#if !CONFIG_IS_ENABLED(DM_MMC)
417static int mmc_get_b_max(struct mmc *mmc, void *dst, lbaint_t blkcnt)
418{
419 if (mmc->cfg->ops->get_b_max)
420 return mmc->cfg->ops->get_b_max(mmc, dst, blkcnt);
421 else
422 return mmc->cfg->b_max;
423}
424#endif
425
Simon Glassc4d660d2017-07-04 13:31:19 -0600426#if CONFIG_IS_ENABLED(BLK)
Simon Glass7dba0b92016-06-12 23:30:15 -0600427ulong mmc_bread(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600428#else
Simon Glass7dba0b92016-06-12 23:30:15 -0600429ulong mmc_bread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt,
430 void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600431#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500432{
Simon Glassc4d660d2017-07-04 13:31:19 -0600433#if CONFIG_IS_ENABLED(BLK)
Simon Glass33fb2112016-05-01 13:52:41 -0600434 struct blk_desc *block_dev = dev_get_uclass_platdata(dev);
435#endif
Simon Glassbcce53d2016-02-29 15:25:51 -0700436 int dev_num = block_dev->devnum;
Stephen Warren873cc1d2015-12-07 11:38:49 -0700437 int err;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700438 lbaint_t cur, blocks_todo = blkcnt;
Marek Vasut145429a2020-04-04 12:45:05 +0200439 uint b_max;
Andy Fleming272cc702008-10-30 16:41:01 -0500440
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700441 if (blkcnt == 0)
442 return 0;
443
444 struct mmc *mmc = find_mmc_device(dev_num);
Andy Fleming272cc702008-10-30 16:41:01 -0500445 if (!mmc)
446 return 0;
447
Marek Vasutb5b838f2016-12-01 02:06:33 +0100448 if (CONFIG_IS_ENABLED(MMC_TINY))
449 err = mmc_switch_part(mmc, block_dev->hwpart);
450 else
451 err = blk_dselect_hwpart(block_dev, block_dev->hwpart);
452
Stephen Warren873cc1d2015-12-07 11:38:49 -0700453 if (err < 0)
454 return 0;
455
Simon Glassc40fdca2016-05-01 13:52:35 -0600456 if ((start + blkcnt) > block_dev->lba) {
Paul Burton56196822013-09-04 16:12:25 +0100457#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100458 pr_err("MMC: block number 0x" LBAF " exceeds max(0x" LBAF ")\n",
459 start + blkcnt, block_dev->lba);
Paul Burton56196822013-09-04 16:12:25 +0100460#endif
Lei Wend2bf29e2010-09-13 22:07:27 +0800461 return 0;
462 }
Andy Fleming272cc702008-10-30 16:41:01 -0500463
Simon Glass11692992015-06-23 15:38:50 -0600464 if (mmc_set_blocklen(mmc, mmc->read_bl_len)) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900465 pr_debug("%s: Failed to set blocklen\n", __func__);
Andy Fleming272cc702008-10-30 16:41:01 -0500466 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600467 }
Andy Fleming272cc702008-10-30 16:41:01 -0500468
Marek Vasut145429a2020-04-04 12:45:05 +0200469 b_max = mmc_get_b_max(mmc, dst, blkcnt);
470
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700471 do {
Marek Vasut145429a2020-04-04 12:45:05 +0200472 cur = (blocks_todo > b_max) ? b_max : blocks_todo;
Simon Glass11692992015-06-23 15:38:50 -0600473 if (mmc_read_blocks(mmc, dst, start, cur) != cur) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900474 pr_debug("%s: Failed to read blocks\n", __func__);
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700475 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600476 }
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700477 blocks_todo -= cur;
478 start += cur;
479 dst += cur * mmc->read_bl_len;
480 } while (blocks_todo > 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500481
482 return blkcnt;
483}
484
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000485static int mmc_go_idle(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -0500486{
487 struct mmc_cmd cmd;
488 int err;
489
490 udelay(1000);
491
492 cmd.cmdidx = MMC_CMD_GO_IDLE_STATE;
493 cmd.cmdarg = 0;
494 cmd.resp_type = MMC_RSP_NONE;
Andy Fleming272cc702008-10-30 16:41:01 -0500495
496 err = mmc_send_cmd(mmc, &cmd, NULL);
497
498 if (err)
499 return err;
500
501 udelay(2000);
502
503 return 0;
504}
505
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100506#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200507static int mmc_switch_voltage(struct mmc *mmc, int signal_voltage)
508{
509 struct mmc_cmd cmd;
510 int err = 0;
511
512 /*
513 * Send CMD11 only if the request is to switch the card to
514 * 1.8V signalling.
515 */
516 if (signal_voltage == MMC_SIGNAL_VOLTAGE_330)
517 return mmc_set_signal_voltage(mmc, signal_voltage);
518
519 cmd.cmdidx = SD_CMD_SWITCH_UHS18V;
520 cmd.cmdarg = 0;
521 cmd.resp_type = MMC_RSP_R1;
522
523 err = mmc_send_cmd(mmc, &cmd, NULL);
524 if (err)
525 return err;
526
527 if (!mmc_host_is_spi(mmc) && (cmd.response[0] & MMC_STATUS_ERROR))
528 return -EIO;
529
530 /*
531 * The card should drive cmd and dat[0:3] low immediately
532 * after the response of cmd11, but wait 100 us to be sure
533 */
534 err = mmc_wait_dat0(mmc, 0, 100);
535 if (err == -ENOSYS)
536 udelay(100);
537 else if (err)
538 return -ETIMEDOUT;
539
540 /*
541 * During a signal voltage level switch, the clock must be gated
542 * for 5 ms according to the SD spec
543 */
Jaehoon Chung65117182018-01-26 19:25:29 +0900544 mmc_set_clock(mmc, mmc->clock, MMC_CLK_DISABLE);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200545
546 err = mmc_set_signal_voltage(mmc, signal_voltage);
547 if (err)
548 return err;
549
550 /* Keep clock gated for at least 10 ms, though spec only says 5 ms */
551 mdelay(10);
Jaehoon Chung65117182018-01-26 19:25:29 +0900552 mmc_set_clock(mmc, mmc->clock, MMC_CLK_ENABLE);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200553
554 /*
555 * Failure to switch is indicated by the card holding
556 * dat[0:3] low. Wait for at least 1 ms according to spec
557 */
558 err = mmc_wait_dat0(mmc, 1, 1000);
559 if (err == -ENOSYS)
560 udelay(1000);
561 else if (err)
562 return -ETIMEDOUT;
563
564 return 0;
565}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100566#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200567
568static int sd_send_op_cond(struct mmc *mmc, bool uhs_en)
Andy Fleming272cc702008-10-30 16:41:01 -0500569{
570 int timeout = 1000;
571 int err;
572 struct mmc_cmd cmd;
573
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500574 while (1) {
Andy Fleming272cc702008-10-30 16:41:01 -0500575 cmd.cmdidx = MMC_CMD_APP_CMD;
576 cmd.resp_type = MMC_RSP_R1;
577 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500578
579 err = mmc_send_cmd(mmc, &cmd, NULL);
580
581 if (err)
582 return err;
583
584 cmd.cmdidx = SD_CMD_APP_SEND_OP_COND;
585 cmd.resp_type = MMC_RSP_R3;
Stefano Babic250de122010-01-20 18:20:39 +0100586
587 /*
588 * Most cards do not answer if some reserved bits
589 * in the ocr are set. However, Some controller
590 * can set bit 7 (reserved for low voltages), but
591 * how to manage low voltages SD card is not yet
592 * specified.
593 */
Thomas Choud52ebf12010-12-24 13:12:21 +0000594 cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 :
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200595 (mmc->cfg->voltages & 0xff8000);
Andy Fleming272cc702008-10-30 16:41:01 -0500596
597 if (mmc->version == SD_VERSION_2)
598 cmd.cmdarg |= OCR_HCS;
599
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200600 if (uhs_en)
601 cmd.cmdarg |= OCR_S18R;
602
Andy Fleming272cc702008-10-30 16:41:01 -0500603 err = mmc_send_cmd(mmc, &cmd, NULL);
604
605 if (err)
606 return err;
607
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500608 if (cmd.response[0] & OCR_BUSY)
609 break;
Andy Fleming272cc702008-10-30 16:41:01 -0500610
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500611 if (timeout-- <= 0)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900612 return -EOPNOTSUPP;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500613
614 udelay(1000);
615 }
Andy Fleming272cc702008-10-30 16:41:01 -0500616
617 if (mmc->version != SD_VERSION_2)
618 mmc->version = SD_VERSION_1_0;
619
Thomas Choud52ebf12010-12-24 13:12:21 +0000620 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
621 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
622 cmd.resp_type = MMC_RSP_R3;
623 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000624
625 err = mmc_send_cmd(mmc, &cmd, NULL);
626
627 if (err)
628 return err;
629 }
630
Rabin Vincent998be3d2009-04-05 13:30:56 +0530631 mmc->ocr = cmd.response[0];
Andy Fleming272cc702008-10-30 16:41:01 -0500632
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100633#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200634 if (uhs_en && !(mmc_host_is_spi(mmc)) && (cmd.response[0] & 0x41000000)
635 == 0x41000000) {
636 err = mmc_switch_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
637 if (err)
638 return err;
639 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100640#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200641
Andy Fleming272cc702008-10-30 16:41:01 -0500642 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
643 mmc->rca = 0;
644
645 return 0;
646}
647
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500648static int mmc_send_op_cond_iter(struct mmc *mmc, int use_arg)
Andy Fleming272cc702008-10-30 16:41:01 -0500649{
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500650 struct mmc_cmd cmd;
Andy Fleming272cc702008-10-30 16:41:01 -0500651 int err;
652
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500653 cmd.cmdidx = MMC_CMD_SEND_OP_COND;
654 cmd.resp_type = MMC_RSP_R3;
655 cmd.cmdarg = 0;
Rob Herring5a203972015-03-23 17:56:59 -0500656 if (use_arg && !mmc_host_is_spi(mmc))
657 cmd.cmdarg = OCR_HCS |
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200658 (mmc->cfg->voltages &
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500659 (mmc->ocr & OCR_VOLTAGE_MASK)) |
660 (mmc->ocr & OCR_ACCESS_MODE);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000661
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500662 err = mmc_send_cmd(mmc, &cmd, NULL);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000663 if (err)
664 return err;
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500665 mmc->ocr = cmd.response[0];
Che-Liang Chioue9550442012-11-28 15:21:13 +0000666 return 0;
667}
668
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200669static int mmc_send_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000670{
Che-Liang Chioue9550442012-11-28 15:21:13 +0000671 int err, i;
672
Andy Fleming272cc702008-10-30 16:41:01 -0500673 /* Some cards seem to need this */
674 mmc_go_idle(mmc);
675
Raffaele Recalcati31cacba2011-03-11 02:01:13 +0000676 /* Asking to the card its capabilities */
Che-Liang Chioue9550442012-11-28 15:21:13 +0000677 for (i = 0; i < 2; i++) {
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500678 err = mmc_send_op_cond_iter(mmc, i != 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500679 if (err)
680 return err;
681
Che-Liang Chioue9550442012-11-28 15:21:13 +0000682 /* exit if not busy (flag seems to be inverted) */
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500683 if (mmc->ocr & OCR_BUSY)
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500684 break;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000685 }
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500686 mmc->op_cond_pending = 1;
687 return 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000688}
Andy Fleming272cc702008-10-30 16:41:01 -0500689
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200690static int mmc_complete_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000691{
692 struct mmc_cmd cmd;
693 int timeout = 1000;
Vipul Kumar36332b62018-05-03 12:20:54 +0530694 ulong start;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000695 int err;
696
697 mmc->op_cond_pending = 0;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500698 if (!(mmc->ocr & OCR_BUSY)) {
Yangbo Lud188b112016-08-02 15:33:18 +0800699 /* Some cards seem to need this */
700 mmc_go_idle(mmc);
701
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500702 start = get_timer(0);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500703 while (1) {
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500704 err = mmc_send_op_cond_iter(mmc, 1);
705 if (err)
706 return err;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500707 if (mmc->ocr & OCR_BUSY)
708 break;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500709 if (get_timer(start) > timeout)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900710 return -EOPNOTSUPP;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500711 udelay(100);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500712 }
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500713 }
Andy Fleming272cc702008-10-30 16:41:01 -0500714
Thomas Choud52ebf12010-12-24 13:12:21 +0000715 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
716 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
717 cmd.resp_type = MMC_RSP_R3;
718 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000719
720 err = mmc_send_cmd(mmc, &cmd, NULL);
721
722 if (err)
723 return err;
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500724
725 mmc->ocr = cmd.response[0];
Thomas Choud52ebf12010-12-24 13:12:21 +0000726 }
727
Andy Fleming272cc702008-10-30 16:41:01 -0500728 mmc->version = MMC_VERSION_UNKNOWN;
Andy Fleming272cc702008-10-30 16:41:01 -0500729
730 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
Stephen Warrendef816a2014-01-30 16:11:12 -0700731 mmc->rca = 1;
Andy Fleming272cc702008-10-30 16:41:01 -0500732
733 return 0;
734}
735
736
Heinrich Schuchardt1601ea22020-03-30 07:24:17 +0200737int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd)
Andy Fleming272cc702008-10-30 16:41:01 -0500738{
739 struct mmc_cmd cmd;
740 struct mmc_data data;
741 int err;
742
743 /* Get the Card Status Register */
744 cmd.cmdidx = MMC_CMD_SEND_EXT_CSD;
745 cmd.resp_type = MMC_RSP_R1;
746 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500747
Yoshihiro Shimodacdfd1ac2012-06-07 19:09:11 +0000748 data.dest = (char *)ext_csd;
Andy Fleming272cc702008-10-30 16:41:01 -0500749 data.blocks = 1;
Simon Glass8bfa1952013-04-03 08:54:30 +0000750 data.blocksize = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -0500751 data.flags = MMC_DATA_READ;
752
753 err = mmc_send_cmd(mmc, &cmd, &data);
754
755 return err;
756}
757
Marek Vasut68925502019-02-06 11:34:27 +0100758static int __mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value,
759 bool send_status)
Andy Fleming272cc702008-10-30 16:41:01 -0500760{
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200761 unsigned int status, start;
Andy Fleming272cc702008-10-30 16:41:01 -0500762 struct mmc_cmd cmd;
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300763 int timeout_ms = DEFAULT_CMD6_TIMEOUT_MS;
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +0200764 bool is_part_switch = (set == EXT_CSD_CMD_SET_NORMAL) &&
765 (index == EXT_CSD_PART_CONF);
Maxime Riparda9003dc2016-11-04 16:18:08 +0100766 int retries = 3;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000767 int ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500768
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +0200769 if (mmc->gen_cmd6_time)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300770 timeout_ms = mmc->gen_cmd6_time * 10;
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +0200771
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +0200772 if (is_part_switch && mmc->part_switch_time)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300773 timeout_ms = mmc->part_switch_time * 10;
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +0200774
Andy Fleming272cc702008-10-30 16:41:01 -0500775 cmd.cmdidx = MMC_CMD_SWITCH;
776 cmd.resp_type = MMC_RSP_R1b;
777 cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000778 (index << 16) |
779 (value << 8);
Andy Fleming272cc702008-10-30 16:41:01 -0500780
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200781 do {
Maxime Riparda9003dc2016-11-04 16:18:08 +0100782 ret = mmc_send_cmd(mmc, &cmd, NULL);
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200783 } while (ret && retries-- > 0);
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000784
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200785 if (ret)
786 return ret;
787
788 start = get_timer(0);
789
790 /* poll dat0 for rdy/buys status */
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300791 ret = mmc_wait_dat0(mmc, 1, timeout_ms * 1000);
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200792 if (ret && ret != -ENOSYS)
793 return ret;
794
795 /*
796 * In cases when not allowed to poll by using CMD13 or because we aren't
797 * capable of polling by using mmc_wait_dat0, then rely on waiting the
798 * stated timeout to be sufficient.
799 */
800 if (ret == -ENOSYS && !send_status)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300801 mdelay(timeout_ms);
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200802
803 /* Finally wait until the card is ready or indicates a failure
804 * to switch. It doesn't hurt to use CMD13 here even if send_status
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300805 * is false, because by now (after 'timeout_ms' ms) the bus should be
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200806 * reliable.
807 */
808 do {
809 ret = mmc_send_status(mmc, &status);
810
811 if (!ret && (status & MMC_STATUS_SWITCH_ERROR)) {
812 pr_debug("switch failed %d/%d/0x%x !\n", set, index,
813 value);
814 return -EIO;
Maxime Riparda9003dc2016-11-04 16:18:08 +0100815 }
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200816 if (!ret && (status & MMC_STATUS_RDY_FOR_DATA))
Marek Vasut68925502019-02-06 11:34:27 +0100817 return 0;
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200818 udelay(100);
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300819 } while (get_timer(start) < timeout_ms);
Marek Vasut68925502019-02-06 11:34:27 +0100820
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200821 return -ETIMEDOUT;
Andy Fleming272cc702008-10-30 16:41:01 -0500822}
823
Marek Vasut68925502019-02-06 11:34:27 +0100824int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value)
825{
826 return __mmc_switch(mmc, set, index, value, true);
827}
828
Heinrich Schuchardt0469d842020-03-30 07:24:19 +0200829int mmc_boot_wp(struct mmc *mmc)
830{
831 return mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_WP, 1);
832}
833
Marek Vasut62d77ce2018-04-15 00:37:11 +0200834#if !CONFIG_IS_ENABLED(MMC_TINY)
Marek Vasutb9a2a0e2019-01-03 21:19:24 +0100835static int mmc_set_card_speed(struct mmc *mmc, enum bus_mode mode,
836 bool hsdowngrade)
Andy Fleming272cc702008-10-30 16:41:01 -0500837{
Andy Fleming272cc702008-10-30 16:41:01 -0500838 int err;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200839 int speed_bits;
840
841 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
842
843 switch (mode) {
844 case MMC_HS:
845 case MMC_HS_52:
846 case MMC_DDR_52:
847 speed_bits = EXT_CSD_TIMING_HS;
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200848 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100849#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200850 case MMC_HS_200:
851 speed_bits = EXT_CSD_TIMING_HS200;
852 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100853#endif
Peng Fan3dd26262018-08-10 14:07:54 +0800854#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
855 case MMC_HS_400:
856 speed_bits = EXT_CSD_TIMING_HS400;
857 break;
858#endif
Peng Fan44acd492019-07-10 14:43:07 +0800859#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
860 case MMC_HS_400_ES:
861 speed_bits = EXT_CSD_TIMING_HS400;
862 break;
863#endif
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200864 case MMC_LEGACY:
865 speed_bits = EXT_CSD_TIMING_LEGACY;
866 break;
867 default:
868 return -EINVAL;
869 }
Marek Vasut68925502019-02-06 11:34:27 +0100870
871 err = __mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING,
872 speed_bits, !hsdowngrade);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200873 if (err)
874 return err;
875
Marek Vasutb9a2a0e2019-01-03 21:19:24 +0100876#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
877 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
878 /*
879 * In case the eMMC is in HS200/HS400 mode and we are downgrading
880 * to HS mode, the card clock are still running much faster than
881 * the supported HS mode clock, so we can not reliably read out
882 * Extended CSD. Reconfigure the controller to run at HS mode.
883 */
884 if (hsdowngrade) {
885 mmc_select_mode(mmc, MMC_HS);
886 mmc_set_clock(mmc, mmc_mode2freq(mmc, MMC_HS), false);
887 }
888#endif
889
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200890 if ((mode == MMC_HS) || (mode == MMC_HS_52)) {
891 /* Now check to see that it worked */
892 err = mmc_send_ext_csd(mmc, test_csd);
893 if (err)
894 return err;
895
896 /* No high-speed support */
897 if (!test_csd[EXT_CSD_HS_TIMING])
898 return -ENOTSUPP;
899 }
900
901 return 0;
902}
903
904static int mmc_get_capabilities(struct mmc *mmc)
905{
906 u8 *ext_csd = mmc->ext_csd;
907 char cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500908
Jean-Jacques Hiblot00e446f2017-11-30 17:43:56 +0100909 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -0500910
Thomas Choud52ebf12010-12-24 13:12:21 +0000911 if (mmc_host_is_spi(mmc))
912 return 0;
913
Andy Fleming272cc702008-10-30 16:41:01 -0500914 /* Only version 4 supports high-speed */
915 if (mmc->version < MMC_VERSION_4)
916 return 0;
917
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200918 if (!ext_csd) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100919 pr_err("No ext_csd found!\n"); /* this should enver happen */
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200920 return -ENOTSUPP;
921 }
922
Andrew Gabbasovfc5b32f2014-12-25 10:22:25 -0600923 mmc->card_caps |= MMC_MODE_4BIT | MMC_MODE_8BIT;
924
Peng Fan3dd26262018-08-10 14:07:54 +0800925 cardtype = ext_csd[EXT_CSD_CARD_TYPE];
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +0200926 mmc->cardtype = cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500927
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100928#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200929 if (cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V |
930 EXT_CSD_CARD_TYPE_HS200_1_8V)) {
931 mmc->card_caps |= MMC_MODE_HS200;
932 }
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100933#endif
Peng Fan44acd492019-07-10 14:43:07 +0800934#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) || \
935 CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
Peng Fan3dd26262018-08-10 14:07:54 +0800936 if (cardtype & (EXT_CSD_CARD_TYPE_HS400_1_2V |
937 EXT_CSD_CARD_TYPE_HS400_1_8V)) {
938 mmc->card_caps |= MMC_MODE_HS400;
939 }
940#endif
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900941 if (cardtype & EXT_CSD_CARD_TYPE_52) {
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200942 if (cardtype & EXT_CSD_CARD_TYPE_DDR_52)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900943 mmc->card_caps |= MMC_MODE_DDR_52MHz;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200944 mmc->card_caps |= MMC_MODE_HS_52MHz;
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900945 }
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200946 if (cardtype & EXT_CSD_CARD_TYPE_26)
947 mmc->card_caps |= MMC_MODE_HS;
Andy Fleming272cc702008-10-30 16:41:01 -0500948
Peng Fan44acd492019-07-10 14:43:07 +0800949#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
950 if (ext_csd[EXT_CSD_STROBE_SUPPORT] &&
951 (mmc->card_caps & MMC_MODE_HS400)) {
952 mmc->card_caps |= MMC_MODE_HS400_ES;
953 }
954#endif
955
Andy Fleming272cc702008-10-30 16:41:01 -0500956 return 0;
957}
Marek Vasut62d77ce2018-04-15 00:37:11 +0200958#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500959
Stephen Warrenf866a462013-06-11 15:14:01 -0600960static int mmc_set_capacity(struct mmc *mmc, int part_num)
961{
962 switch (part_num) {
963 case 0:
964 mmc->capacity = mmc->capacity_user;
965 break;
966 case 1:
967 case 2:
968 mmc->capacity = mmc->capacity_boot;
969 break;
970 case 3:
971 mmc->capacity = mmc->capacity_rpmb;
972 break;
973 case 4:
974 case 5:
975 case 6:
976 case 7:
977 mmc->capacity = mmc->capacity_gp[part_num - 4];
978 break;
979 default:
980 return -1;
981 }
982
Simon Glassc40fdca2016-05-01 13:52:35 -0600983 mmc_get_blk_desc(mmc)->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Stephen Warrenf866a462013-06-11 15:14:01 -0600984
985 return 0;
986}
987
Simon Glass7dba0b92016-06-12 23:30:15 -0600988int mmc_switch_part(struct mmc *mmc, unsigned int part_num)
Lei Wenbc897b12011-05-02 16:26:26 +0000989{
Stephen Warrenf866a462013-06-11 15:14:01 -0600990 int ret;
Jean-Jacques Hiblot05384772019-07-02 10:53:58 +0200991 int retry = 3;
Lei Wenbc897b12011-05-02 16:26:26 +0000992
Jean-Jacques Hiblot05384772019-07-02 10:53:58 +0200993 do {
994 ret = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
995 EXT_CSD_PART_CONF,
996 (mmc->part_config & ~PART_ACCESS_MASK)
997 | (part_num & PART_ACCESS_MASK));
998 } while (ret && retry--);
Stephen Warrenf866a462013-06-11 15:14:01 -0600999
Peter Bigot6dc93e72014-09-02 18:31:23 -05001000 /*
1001 * Set the capacity if the switch succeeded or was intended
1002 * to return to representing the raw device.
1003 */
Stephen Warren873cc1d2015-12-07 11:38:49 -07001004 if ((ret == 0) || ((ret == -ENODEV) && (part_num == 0))) {
Peter Bigot6dc93e72014-09-02 18:31:23 -05001005 ret = mmc_set_capacity(mmc, part_num);
Simon Glassfdbb1392016-05-01 13:52:37 -06001006 mmc_get_blk_desc(mmc)->hwpart = part_num;
Stephen Warren873cc1d2015-12-07 11:38:49 -07001007 }
Peter Bigot6dc93e72014-09-02 18:31:23 -05001008
1009 return ret;
Lei Wenbc897b12011-05-02 16:26:26 +00001010}
1011
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +01001012#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001013int mmc_hwpart_config(struct mmc *mmc,
1014 const struct mmc_hwpart_conf *conf,
1015 enum mmc_hwpart_conf_mode mode)
1016{
1017 u8 part_attrs = 0;
1018 u32 enh_size_mult;
1019 u32 enh_start_addr;
1020 u32 gp_size_mult[4];
1021 u32 max_enh_size_mult;
1022 u32 tot_enh_size_mult = 0;
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001023 u8 wr_rel_set;
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001024 int i, pidx, err;
1025 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
1026
1027 if (mode < MMC_HWPART_CONF_CHECK || mode > MMC_HWPART_CONF_COMPLETE)
1028 return -EINVAL;
1029
1030 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001031 pr_err("eMMC >= 4.4 required for enhanced user data area\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001032 return -EMEDIUMTYPE;
1033 }
1034
1035 if (!(mmc->part_support & PART_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001036 pr_err("Card does not support partitioning\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001037 return -EMEDIUMTYPE;
1038 }
1039
1040 if (!mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001041 pr_err("Card does not define HC WP group size\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001042 return -EMEDIUMTYPE;
1043 }
1044
1045 /* check partition alignment and total enhanced size */
1046 if (conf->user.enh_size) {
1047 if (conf->user.enh_size % mmc->hc_wp_grp_size ||
1048 conf->user.enh_start % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001049 pr_err("User data enhanced area not HC WP group "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001050 "size aligned\n");
1051 return -EINVAL;
1052 }
1053 part_attrs |= EXT_CSD_ENH_USR;
1054 enh_size_mult = conf->user.enh_size / mmc->hc_wp_grp_size;
1055 if (mmc->high_capacity) {
1056 enh_start_addr = conf->user.enh_start;
1057 } else {
1058 enh_start_addr = (conf->user.enh_start << 9);
1059 }
1060 } else {
1061 enh_size_mult = 0;
1062 enh_start_addr = 0;
1063 }
1064 tot_enh_size_mult += enh_size_mult;
1065
1066 for (pidx = 0; pidx < 4; pidx++) {
1067 if (conf->gp_part[pidx].size % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001068 pr_err("GP%i partition not HC WP group size "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001069 "aligned\n", pidx+1);
1070 return -EINVAL;
1071 }
1072 gp_size_mult[pidx] = conf->gp_part[pidx].size / mmc->hc_wp_grp_size;
1073 if (conf->gp_part[pidx].size && conf->gp_part[pidx].enhanced) {
1074 part_attrs |= EXT_CSD_ENH_GP(pidx);
1075 tot_enh_size_mult += gp_size_mult[pidx];
1076 }
1077 }
1078
1079 if (part_attrs && ! (mmc->part_support & ENHNCD_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001080 pr_err("Card does not support enhanced attribute\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001081 return -EMEDIUMTYPE;
1082 }
1083
1084 err = mmc_send_ext_csd(mmc, ext_csd);
1085 if (err)
1086 return err;
1087
1088 max_enh_size_mult =
1089 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+2] << 16) +
1090 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+1] << 8) +
1091 ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT];
1092 if (tot_enh_size_mult > max_enh_size_mult) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001093 pr_err("Total enhanced size exceeds maximum (%u > %u)\n",
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001094 tot_enh_size_mult, max_enh_size_mult);
1095 return -EMEDIUMTYPE;
1096 }
1097
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001098 /* The default value of EXT_CSD_WR_REL_SET is device
1099 * dependent, the values can only be changed if the
1100 * EXT_CSD_HS_CTRL_REL bit is set. The values can be
1101 * changed only once and before partitioning is completed. */
1102 wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
1103 if (conf->user.wr_rel_change) {
1104 if (conf->user.wr_rel_set)
1105 wr_rel_set |= EXT_CSD_WR_DATA_REL_USR;
1106 else
1107 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_USR;
1108 }
1109 for (pidx = 0; pidx < 4; pidx++) {
1110 if (conf->gp_part[pidx].wr_rel_change) {
1111 if (conf->gp_part[pidx].wr_rel_set)
1112 wr_rel_set |= EXT_CSD_WR_DATA_REL_GP(pidx);
1113 else
1114 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_GP(pidx);
1115 }
1116 }
1117
1118 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET] &&
1119 !(ext_csd[EXT_CSD_WR_REL_PARAM] & EXT_CSD_HS_CTRL_REL)) {
1120 puts("Card does not support host controlled partition write "
1121 "reliability settings\n");
1122 return -EMEDIUMTYPE;
1123 }
1124
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001125 if (ext_csd[EXT_CSD_PARTITION_SETTING] &
1126 EXT_CSD_PARTITION_SETTING_COMPLETED) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001127 pr_err("Card already partitioned\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001128 return -EPERM;
1129 }
1130
1131 if (mode == MMC_HWPART_CONF_CHECK)
1132 return 0;
1133
1134 /* Partitioning requires high-capacity size definitions */
1135 if (!(ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01)) {
1136 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1137 EXT_CSD_ERASE_GROUP_DEF, 1);
1138
1139 if (err)
1140 return err;
1141
1142 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
1143
Jaehoon Chung4af66592020-01-17 15:06:54 +09001144#if CONFIG_IS_ENABLED(MMC_WRITE)
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001145 /* update erase group size to be high-capacity */
1146 mmc->erase_grp_size =
1147 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
Jaehoon Chung4af66592020-01-17 15:06:54 +09001148#endif
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001149
1150 }
1151
1152 /* all OK, write the configuration */
1153 for (i = 0; i < 4; i++) {
1154 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1155 EXT_CSD_ENH_START_ADDR+i,
1156 (enh_start_addr >> (i*8)) & 0xFF);
1157 if (err)
1158 return err;
1159 }
1160 for (i = 0; i < 3; i++) {
1161 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1162 EXT_CSD_ENH_SIZE_MULT+i,
1163 (enh_size_mult >> (i*8)) & 0xFF);
1164 if (err)
1165 return err;
1166 }
1167 for (pidx = 0; pidx < 4; pidx++) {
1168 for (i = 0; i < 3; i++) {
1169 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1170 EXT_CSD_GP_SIZE_MULT+pidx*3+i,
1171 (gp_size_mult[pidx] >> (i*8)) & 0xFF);
1172 if (err)
1173 return err;
1174 }
1175 }
1176 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1177 EXT_CSD_PARTITIONS_ATTRIBUTE, part_attrs);
1178 if (err)
1179 return err;
1180
1181 if (mode == MMC_HWPART_CONF_SET)
1182 return 0;
1183
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001184 /* The WR_REL_SET is a write-once register but shall be
1185 * written before setting PART_SETTING_COMPLETED. As it is
1186 * write-once we can only write it when completing the
1187 * partitioning. */
1188 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET]) {
1189 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1190 EXT_CSD_WR_REL_SET, wr_rel_set);
1191 if (err)
1192 return err;
1193 }
1194
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001195 /* Setting PART_SETTING_COMPLETED confirms the partition
1196 * configuration but it only becomes effective after power
1197 * cycle, so we do not adjust the partition related settings
1198 * in the mmc struct. */
1199
1200 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1201 EXT_CSD_PARTITION_SETTING,
1202 EXT_CSD_PARTITION_SETTING_COMPLETED);
1203 if (err)
1204 return err;
1205
1206 return 0;
1207}
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +01001208#endif
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001209
Simon Glasse7881d82017-07-29 11:35:31 -06001210#if !CONFIG_IS_ENABLED(DM_MMC)
Thierry Reding48972d92012-01-02 01:15:37 +00001211int mmc_getcd(struct mmc *mmc)
1212{
1213 int cd;
1214
1215 cd = board_mmc_getcd(mmc);
1216
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001217 if (cd < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001218 if (mmc->cfg->ops->getcd)
1219 cd = mmc->cfg->ops->getcd(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001220 else
1221 cd = 1;
1222 }
Thierry Reding48972d92012-01-02 01:15:37 +00001223
1224 return cd;
1225}
Simon Glass8ca51e52016-06-12 23:30:22 -06001226#endif
Thierry Reding48972d92012-01-02 01:15:37 +00001227
Marek Vasut62d77ce2018-04-15 00:37:11 +02001228#if !CONFIG_IS_ENABLED(MMC_TINY)
Kim Phillipsfdbb8732012-10-29 13:34:43 +00001229static int sd_switch(struct mmc *mmc, int mode, int group, u8 value, u8 *resp)
Andy Fleming272cc702008-10-30 16:41:01 -05001230{
1231 struct mmc_cmd cmd;
1232 struct mmc_data data;
1233
1234 /* Switch the frequency */
1235 cmd.cmdidx = SD_CMD_SWITCH_FUNC;
1236 cmd.resp_type = MMC_RSP_R1;
1237 cmd.cmdarg = (mode << 31) | 0xffffff;
1238 cmd.cmdarg &= ~(0xf << (group * 4));
1239 cmd.cmdarg |= value << (group * 4);
Andy Fleming272cc702008-10-30 16:41:01 -05001240
1241 data.dest = (char *)resp;
1242 data.blocksize = 64;
1243 data.blocks = 1;
1244 data.flags = MMC_DATA_READ;
1245
1246 return mmc_send_cmd(mmc, &cmd, &data);
1247}
1248
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001249static int sd_get_capabilities(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001250{
1251 int err;
1252 struct mmc_cmd cmd;
Suniel Mahesh18e7c8f2017-10-05 11:32:00 +05301253 ALLOC_CACHE_ALIGN_BUFFER(__be32, scr, 2);
1254 ALLOC_CACHE_ALIGN_BUFFER(__be32, switch_status, 16);
Andy Fleming272cc702008-10-30 16:41:01 -05001255 struct mmc_data data;
1256 int timeout;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001257#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001258 u32 sd3_bus_mode;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001259#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001260
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301261 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05001262
Thomas Choud52ebf12010-12-24 13:12:21 +00001263 if (mmc_host_is_spi(mmc))
1264 return 0;
1265
Andy Fleming272cc702008-10-30 16:41:01 -05001266 /* Read the SCR to find out if this card supports higher speeds */
1267 cmd.cmdidx = MMC_CMD_APP_CMD;
1268 cmd.resp_type = MMC_RSP_R1;
1269 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05001270
1271 err = mmc_send_cmd(mmc, &cmd, NULL);
1272
1273 if (err)
1274 return err;
1275
1276 cmd.cmdidx = SD_CMD_APP_SEND_SCR;
1277 cmd.resp_type = MMC_RSP_R1;
1278 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05001279
1280 timeout = 3;
1281
1282retry_scr:
Anton staaff781dd32011-10-03 13:54:59 +00001283 data.dest = (char *)scr;
Andy Fleming272cc702008-10-30 16:41:01 -05001284 data.blocksize = 8;
1285 data.blocks = 1;
1286 data.flags = MMC_DATA_READ;
1287
1288 err = mmc_send_cmd(mmc, &cmd, &data);
1289
1290 if (err) {
1291 if (timeout--)
1292 goto retry_scr;
1293
1294 return err;
1295 }
1296
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001297 mmc->scr[0] = __be32_to_cpu(scr[0]);
1298 mmc->scr[1] = __be32_to_cpu(scr[1]);
Andy Fleming272cc702008-10-30 16:41:01 -05001299
1300 switch ((mmc->scr[0] >> 24) & 0xf) {
Bin Meng53e8e402016-03-17 21:53:13 -07001301 case 0:
1302 mmc->version = SD_VERSION_1_0;
1303 break;
1304 case 1:
1305 mmc->version = SD_VERSION_1_10;
1306 break;
1307 case 2:
1308 mmc->version = SD_VERSION_2;
1309 if ((mmc->scr[0] >> 15) & 0x1)
1310 mmc->version = SD_VERSION_3;
1311 break;
1312 default:
1313 mmc->version = SD_VERSION_1_0;
1314 break;
Andy Fleming272cc702008-10-30 16:41:01 -05001315 }
1316
Alagu Sankarb44c7082010-05-12 15:08:24 +05301317 if (mmc->scr[0] & SD_DATA_4BIT)
1318 mmc->card_caps |= MMC_MODE_4BIT;
1319
Andy Fleming272cc702008-10-30 16:41:01 -05001320 /* Version 1.0 doesn't support switching */
1321 if (mmc->version == SD_VERSION_1_0)
1322 return 0;
1323
1324 timeout = 4;
1325 while (timeout--) {
1326 err = sd_switch(mmc, SD_SWITCH_CHECK, 0, 1,
Anton staaff781dd32011-10-03 13:54:59 +00001327 (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001328
1329 if (err)
1330 return err;
1331
1332 /* The high-speed function is busy. Try again */
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001333 if (!(__be32_to_cpu(switch_status[7]) & SD_HIGHSPEED_BUSY))
Andy Fleming272cc702008-10-30 16:41:01 -05001334 break;
1335 }
1336
Andy Fleming272cc702008-10-30 16:41:01 -05001337 /* If high-speed isn't supported, we return */
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001338 if (__be32_to_cpu(switch_status[3]) & SD_HIGHSPEED_SUPPORTED)
1339 mmc->card_caps |= MMC_CAP(SD_HS);
Andy Fleming272cc702008-10-30 16:41:01 -05001340
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001341#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001342 /* Version before 3.0 don't support UHS modes */
1343 if (mmc->version < SD_VERSION_3)
1344 return 0;
1345
1346 sd3_bus_mode = __be32_to_cpu(switch_status[3]) >> 16 & 0x1f;
1347 if (sd3_bus_mode & SD_MODE_UHS_SDR104)
1348 mmc->card_caps |= MMC_CAP(UHS_SDR104);
1349 if (sd3_bus_mode & SD_MODE_UHS_SDR50)
1350 mmc->card_caps |= MMC_CAP(UHS_SDR50);
1351 if (sd3_bus_mode & SD_MODE_UHS_SDR25)
1352 mmc->card_caps |= MMC_CAP(UHS_SDR25);
1353 if (sd3_bus_mode & SD_MODE_UHS_SDR12)
1354 mmc->card_caps |= MMC_CAP(UHS_SDR12);
1355 if (sd3_bus_mode & SD_MODE_UHS_DDR50)
1356 mmc->card_caps |= MMC_CAP(UHS_DDR50);
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001357#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001358
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001359 return 0;
1360}
1361
1362static int sd_set_card_speed(struct mmc *mmc, enum bus_mode mode)
1363{
1364 int err;
1365
1366 ALLOC_CACHE_ALIGN_BUFFER(uint, switch_status, 16);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001367 int speed;
Macpaul Lin2c3fbf42011-11-28 16:31:09 +00001368
Marek Vasutcf345762018-11-18 03:25:08 +01001369 /* SD version 1.00 and 1.01 does not support CMD 6 */
1370 if (mmc->version == SD_VERSION_1_0)
1371 return 0;
1372
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001373 switch (mode) {
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301374 case MMC_LEGACY:
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001375 speed = UHS_SDR12_BUS_SPEED;
1376 break;
1377 case SD_HS:
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +01001378 speed = HIGH_SPEED_BUS_SPEED;
1379 break;
1380#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1381 case UHS_SDR12:
1382 speed = UHS_SDR12_BUS_SPEED;
1383 break;
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001384 case UHS_SDR25:
1385 speed = UHS_SDR25_BUS_SPEED;
1386 break;
1387 case UHS_SDR50:
1388 speed = UHS_SDR50_BUS_SPEED;
1389 break;
1390 case UHS_DDR50:
1391 speed = UHS_DDR50_BUS_SPEED;
1392 break;
1393 case UHS_SDR104:
1394 speed = UHS_SDR104_BUS_SPEED;
1395 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +01001396#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001397 default:
1398 return -EINVAL;
1399 }
1400
1401 err = sd_switch(mmc, SD_SWITCH_SWITCH, 0, speed, (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001402 if (err)
1403 return err;
1404
Jean-Jacques Hiblota0276f32018-02-09 12:09:27 +01001405 if (((__be32_to_cpu(switch_status[4]) >> 24) & 0xF) != speed)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001406 return -ENOTSUPP;
1407
1408 return 0;
1409}
1410
Marek Vasutec360e62018-04-15 00:36:45 +02001411static int sd_select_bus_width(struct mmc *mmc, int w)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001412{
1413 int err;
1414 struct mmc_cmd cmd;
1415
1416 if ((w != 4) && (w != 1))
1417 return -EINVAL;
1418
1419 cmd.cmdidx = MMC_CMD_APP_CMD;
1420 cmd.resp_type = MMC_RSP_R1;
1421 cmd.cmdarg = mmc->rca << 16;
1422
1423 err = mmc_send_cmd(mmc, &cmd, NULL);
1424 if (err)
1425 return err;
1426
1427 cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH;
1428 cmd.resp_type = MMC_RSP_R1;
1429 if (w == 4)
1430 cmd.cmdarg = 2;
1431 else if (w == 1)
1432 cmd.cmdarg = 0;
1433 err = mmc_send_cmd(mmc, &cmd, NULL);
1434 if (err)
1435 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05001436
1437 return 0;
1438}
Marek Vasut62d77ce2018-04-15 00:37:11 +02001439#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001440
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001441#if CONFIG_IS_ENABLED(MMC_WRITE)
Peng Fan3697e592016-09-01 11:13:38 +08001442static int sd_read_ssr(struct mmc *mmc)
1443{
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001444 static const unsigned int sd_au_size[] = {
1445 0, SZ_16K / 512, SZ_32K / 512,
1446 SZ_64K / 512, SZ_128K / 512, SZ_256K / 512,
1447 SZ_512K / 512, SZ_1M / 512, SZ_2M / 512,
1448 SZ_4M / 512, SZ_8M / 512, (SZ_8M + SZ_4M) / 512,
1449 SZ_16M / 512, (SZ_16M + SZ_8M) / 512, SZ_32M / 512,
1450 SZ_64M / 512,
1451 };
Peng Fan3697e592016-09-01 11:13:38 +08001452 int err, i;
1453 struct mmc_cmd cmd;
1454 ALLOC_CACHE_ALIGN_BUFFER(uint, ssr, 16);
1455 struct mmc_data data;
1456 int timeout = 3;
1457 unsigned int au, eo, et, es;
1458
1459 cmd.cmdidx = MMC_CMD_APP_CMD;
1460 cmd.resp_type = MMC_RSP_R1;
1461 cmd.cmdarg = mmc->rca << 16;
1462
1463 err = mmc_send_cmd(mmc, &cmd, NULL);
Joel Johnsond4a5fa32020-01-11 09:08:14 -07001464#ifdef CONFIG_MMC_QUIRKS
1465 if (err && (mmc->quirks & MMC_QUIRK_RETRY_APP_CMD)) {
1466 int retries = 4;
1467 /*
1468 * It has been seen that APP_CMD may fail on the first
1469 * attempt, let's try a few more times
1470 */
1471 do {
1472 err = mmc_send_cmd(mmc, &cmd, NULL);
1473 if (!err)
1474 break;
1475 } while (retries--);
1476 }
1477#endif
Peng Fan3697e592016-09-01 11:13:38 +08001478 if (err)
1479 return err;
1480
1481 cmd.cmdidx = SD_CMD_APP_SD_STATUS;
1482 cmd.resp_type = MMC_RSP_R1;
1483 cmd.cmdarg = 0;
1484
1485retry_ssr:
1486 data.dest = (char *)ssr;
1487 data.blocksize = 64;
1488 data.blocks = 1;
1489 data.flags = MMC_DATA_READ;
1490
1491 err = mmc_send_cmd(mmc, &cmd, &data);
1492 if (err) {
1493 if (timeout--)
1494 goto retry_ssr;
1495
1496 return err;
1497 }
1498
1499 for (i = 0; i < 16; i++)
1500 ssr[i] = be32_to_cpu(ssr[i]);
1501
1502 au = (ssr[2] >> 12) & 0xF;
1503 if ((au <= 9) || (mmc->version == SD_VERSION_3)) {
1504 mmc->ssr.au = sd_au_size[au];
1505 es = (ssr[3] >> 24) & 0xFF;
1506 es |= (ssr[2] & 0xFF) << 8;
1507 et = (ssr[3] >> 18) & 0x3F;
1508 if (es && et) {
1509 eo = (ssr[3] >> 16) & 0x3;
1510 mmc->ssr.erase_timeout = (et * 1000) / es;
1511 mmc->ssr.erase_offset = eo * 1000;
1512 }
1513 } else {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001514 pr_debug("Invalid Allocation Unit Size.\n");
Peng Fan3697e592016-09-01 11:13:38 +08001515 }
1516
1517 return 0;
1518}
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001519#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001520/* frequency bases */
1521/* divided by 10 to be nice to platforms without floating point */
Mike Frysinger5f837c22010-10-20 01:15:53 +00001522static const int fbase[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001523 10000,
1524 100000,
1525 1000000,
1526 10000000,
1527};
1528
1529/* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
1530 * to platforms without floating point.
1531 */
Simon Glass61fe0762016-05-14 14:02:57 -06001532static const u8 multipliers[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001533 0, /* reserved */
1534 10,
1535 12,
1536 13,
1537 15,
1538 20,
1539 25,
1540 30,
1541 35,
1542 40,
1543 45,
1544 50,
1545 55,
1546 60,
1547 70,
1548 80,
1549};
1550
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001551static inline int bus_width(uint cap)
1552{
1553 if (cap == MMC_MODE_8BIT)
1554 return 8;
1555 if (cap == MMC_MODE_4BIT)
1556 return 4;
1557 if (cap == MMC_MODE_1BIT)
1558 return 1;
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001559 pr_warn("invalid bus witdh capability 0x%x\n", cap);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001560 return 0;
1561}
1562
Simon Glasse7881d82017-07-29 11:35:31 -06001563#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001564#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001565static int mmc_execute_tuning(struct mmc *mmc, uint opcode)
1566{
1567 return -ENOTSUPP;
1568}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001569#endif
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001570
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001571static int mmc_set_ios(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001572{
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001573 int ret = 0;
1574
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001575 if (mmc->cfg->ops->set_ios)
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001576 ret = mmc->cfg->ops->set_ios(mmc);
1577
1578 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05001579}
Yann Gautier3602a562019-09-19 17:56:12 +02001580
1581static int mmc_host_power_cycle(struct mmc *mmc)
1582{
1583 int ret = 0;
1584
1585 if (mmc->cfg->ops->host_power_cycle)
1586 ret = mmc->cfg->ops->host_power_cycle(mmc);
1587
1588 return ret;
1589}
Simon Glass8ca51e52016-06-12 23:30:22 -06001590#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001591
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001592int mmc_set_clock(struct mmc *mmc, uint clock, bool disable)
Andy Fleming272cc702008-10-30 16:41:01 -05001593{
Jaehoon Chungc0fafe62018-01-23 14:04:30 +09001594 if (!disable) {
Jaehoon Chung9546eb92018-01-17 19:36:58 +09001595 if (clock > mmc->cfg->f_max)
1596 clock = mmc->cfg->f_max;
Andy Fleming272cc702008-10-30 16:41:01 -05001597
Jaehoon Chung9546eb92018-01-17 19:36:58 +09001598 if (clock < mmc->cfg->f_min)
1599 clock = mmc->cfg->f_min;
1600 }
Andy Fleming272cc702008-10-30 16:41:01 -05001601
1602 mmc->clock = clock;
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001603 mmc->clk_disable = disable;
Andy Fleming272cc702008-10-30 16:41:01 -05001604
Jaehoon Chungd2faadb2018-01-26 19:25:30 +09001605 debug("clock is %s (%dHz)\n", disable ? "disabled" : "enabled", clock);
1606
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001607 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001608}
1609
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001610static int mmc_set_bus_width(struct mmc *mmc, uint width)
Andy Fleming272cc702008-10-30 16:41:01 -05001611{
1612 mmc->bus_width = width;
1613
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001614 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001615}
1616
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001617#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
1618/*
1619 * helper function to display the capabilities in a human
1620 * friendly manner. The capabilities include bus width and
1621 * supported modes.
1622 */
1623void mmc_dump_capabilities(const char *text, uint caps)
1624{
1625 enum bus_mode mode;
1626
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001627 pr_debug("%s: widths [", text);
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001628 if (caps & MMC_MODE_8BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001629 pr_debug("8, ");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001630 if (caps & MMC_MODE_4BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001631 pr_debug("4, ");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001632 if (caps & MMC_MODE_1BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001633 pr_debug("1, ");
1634 pr_debug("\b\b] modes [");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001635 for (mode = MMC_LEGACY; mode < MMC_MODES_END; mode++)
1636 if (MMC_CAP(mode) & caps)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001637 pr_debug("%s, ", mmc_mode_name(mode));
1638 pr_debug("\b\b]\n");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001639}
1640#endif
1641
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001642struct mode_width_tuning {
1643 enum bus_mode mode;
1644 uint widths;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001645#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001646 uint tuning;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001647#endif
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001648};
1649
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001650#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001651int mmc_voltage_to_mv(enum mmc_voltage voltage)
1652{
1653 switch (voltage) {
1654 case MMC_SIGNAL_VOLTAGE_000: return 0;
1655 case MMC_SIGNAL_VOLTAGE_330: return 3300;
1656 case MMC_SIGNAL_VOLTAGE_180: return 1800;
1657 case MMC_SIGNAL_VOLTAGE_120: return 1200;
1658 }
1659 return -EINVAL;
1660}
1661
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001662static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1663{
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001664 int err;
1665
1666 if (mmc->signal_voltage == signal_voltage)
1667 return 0;
1668
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001669 mmc->signal_voltage = signal_voltage;
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001670 err = mmc_set_ios(mmc);
1671 if (err)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001672 pr_debug("unable to set voltage (err %d)\n", err);
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001673
1674 return err;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001675}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001676#else
1677static inline int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1678{
1679 return 0;
1680}
1681#endif
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001682
Marek Vasut62d77ce2018-04-15 00:37:11 +02001683#if !CONFIG_IS_ENABLED(MMC_TINY)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001684static const struct mode_width_tuning sd_modes_by_pref[] = {
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001685#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1686#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001687 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001688 .mode = UHS_SDR104,
1689 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1690 .tuning = MMC_CMD_SEND_TUNING_BLOCK
1691 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001692#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001693 {
1694 .mode = UHS_SDR50,
1695 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1696 },
1697 {
1698 .mode = UHS_DDR50,
1699 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1700 },
1701 {
1702 .mode = UHS_SDR25,
1703 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1704 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001705#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001706 {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001707 .mode = SD_HS,
1708 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1709 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001710#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001711 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001712 .mode = UHS_SDR12,
1713 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1714 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001715#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001716 {
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301717 .mode = MMC_LEGACY,
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001718 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1719 }
1720};
1721
1722#define for_each_sd_mode_by_pref(caps, mwt) \
1723 for (mwt = sd_modes_by_pref;\
1724 mwt < sd_modes_by_pref + ARRAY_SIZE(sd_modes_by_pref);\
1725 mwt++) \
1726 if (caps & MMC_CAP(mwt->mode))
1727
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02001728static int sd_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001729{
1730 int err;
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001731 uint widths[] = {MMC_MODE_4BIT, MMC_MODE_1BIT};
1732 const struct mode_width_tuning *mwt;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001733#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001734 bool uhs_en = (mmc->ocr & OCR_S18R) ? true : false;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001735#else
1736 bool uhs_en = false;
1737#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001738 uint caps;
1739
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001740#ifdef DEBUG
1741 mmc_dump_capabilities("sd card", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001742 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001743#endif
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001744
Anup Patelf49ff792019-07-08 04:10:43 +00001745 if (mmc_host_is_spi(mmc)) {
1746 mmc_set_bus_width(mmc, 1);
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301747 mmc_select_mode(mmc, MMC_LEGACY);
Anup Patelf49ff792019-07-08 04:10:43 +00001748 mmc_set_clock(mmc, mmc->tran_speed, MMC_CLK_ENABLE);
1749 return 0;
1750 }
1751
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001752 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001753 caps = card_caps & mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001754
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001755 if (!uhs_en)
1756 caps &= ~UHS_CAPS;
1757
1758 for_each_sd_mode_by_pref(caps, mwt) {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001759 uint *w;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001760
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001761 for (w = widths; w < widths + ARRAY_SIZE(widths); w++) {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001762 if (*w & caps & mwt->widths) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001763 pr_debug("trying mode %s width %d (at %d MHz)\n",
1764 mmc_mode_name(mwt->mode),
1765 bus_width(*w),
1766 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001767
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001768 /* configure the bus width (card + host) */
1769 err = sd_select_bus_width(mmc, bus_width(*w));
1770 if (err)
1771 goto error;
1772 mmc_set_bus_width(mmc, bus_width(*w));
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001773
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001774 /* configure the bus mode (card) */
1775 err = sd_set_card_speed(mmc, mwt->mode);
1776 if (err)
1777 goto error;
1778
1779 /* configure the bus mode (host) */
1780 mmc_select_mode(mmc, mwt->mode);
Jaehoon Chung65117182018-01-26 19:25:29 +09001781 mmc_set_clock(mmc, mmc->tran_speed,
1782 MMC_CLK_ENABLE);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001783
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001784#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001785 /* execute tuning if needed */
1786 if (mwt->tuning && !mmc_host_is_spi(mmc)) {
1787 err = mmc_execute_tuning(mmc,
1788 mwt->tuning);
1789 if (err) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001790 pr_debug("tuning failed\n");
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001791 goto error;
1792 }
1793 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001794#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001795
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001796#if CONFIG_IS_ENABLED(MMC_WRITE)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001797 err = sd_read_ssr(mmc);
Peng Fan0a4c2b02018-03-05 16:20:40 +08001798 if (err)
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001799 pr_warn("unable to read ssr\n");
1800#endif
1801 if (!err)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001802 return 0;
1803
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001804error:
1805 /* revert to a safer bus speed */
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301806 mmc_select_mode(mmc, MMC_LEGACY);
Jaehoon Chung65117182018-01-26 19:25:29 +09001807 mmc_set_clock(mmc, mmc->tran_speed,
1808 MMC_CLK_ENABLE);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001809 }
1810 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001811 }
1812
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001813 pr_err("unable to select a mode\n");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001814 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001815}
1816
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001817/*
1818 * read the compare the part of ext csd that is constant.
1819 * This can be used to check that the transfer is working
1820 * as expected.
1821 */
1822static int mmc_read_and_compare_ext_csd(struct mmc *mmc)
1823{
1824 int err;
1825 const u8 *ext_csd = mmc->ext_csd;
1826 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
1827
Jean-Jacques Hiblot1de06b92017-11-30 17:43:58 +01001828 if (mmc->version < MMC_VERSION_4)
1829 return 0;
1830
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001831 err = mmc_send_ext_csd(mmc, test_csd);
1832 if (err)
1833 return err;
1834
1835 /* Only compare read only fields */
1836 if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT]
1837 == test_csd[EXT_CSD_PARTITIONING_SUPPORT] &&
1838 ext_csd[EXT_CSD_HC_WP_GRP_SIZE]
1839 == test_csd[EXT_CSD_HC_WP_GRP_SIZE] &&
1840 ext_csd[EXT_CSD_REV]
1841 == test_csd[EXT_CSD_REV] &&
1842 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1843 == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE] &&
1844 memcmp(&ext_csd[EXT_CSD_SEC_CNT],
1845 &test_csd[EXT_CSD_SEC_CNT], 4) == 0)
1846 return 0;
1847
1848 return -EBADMSG;
1849}
1850
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001851#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001852static int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1853 uint32_t allowed_mask)
1854{
1855 u32 card_mask = 0;
1856
1857 switch (mode) {
Peng Fan44acd492019-07-10 14:43:07 +08001858 case MMC_HS_400_ES:
Peng Fan3dd26262018-08-10 14:07:54 +08001859 case MMC_HS_400:
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001860 case MMC_HS_200:
Peng Fan3dd26262018-08-10 14:07:54 +08001861 if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_8V |
1862 EXT_CSD_CARD_TYPE_HS400_1_8V))
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001863 card_mask |= MMC_SIGNAL_VOLTAGE_180;
Peng Fan3dd26262018-08-10 14:07:54 +08001864 if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V |
1865 EXT_CSD_CARD_TYPE_HS400_1_2V))
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001866 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1867 break;
1868 case MMC_DDR_52:
1869 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_8V)
1870 card_mask |= MMC_SIGNAL_VOLTAGE_330 |
1871 MMC_SIGNAL_VOLTAGE_180;
1872 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_2V)
1873 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1874 break;
1875 default:
1876 card_mask |= MMC_SIGNAL_VOLTAGE_330;
1877 break;
1878 }
1879
1880 while (card_mask & allowed_mask) {
1881 enum mmc_voltage best_match;
1882
1883 best_match = 1 << (ffs(card_mask & allowed_mask) - 1);
1884 if (!mmc_set_signal_voltage(mmc, best_match))
1885 return 0;
1886
1887 allowed_mask &= ~best_match;
1888 }
1889
1890 return -ENOTSUPP;
1891}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001892#else
1893static inline int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1894 uint32_t allowed_mask)
1895{
1896 return 0;
1897}
1898#endif
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001899
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001900static const struct mode_width_tuning mmc_modes_by_pref[] = {
Peng Fan44acd492019-07-10 14:43:07 +08001901#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
1902 {
1903 .mode = MMC_HS_400_ES,
1904 .widths = MMC_MODE_8BIT,
1905 },
1906#endif
Peng Fan3dd26262018-08-10 14:07:54 +08001907#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
1908 {
1909 .mode = MMC_HS_400,
1910 .widths = MMC_MODE_8BIT,
1911 .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200
1912 },
1913#endif
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001914#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001915 {
1916 .mode = MMC_HS_200,
1917 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001918 .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001919 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001920#endif
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001921 {
1922 .mode = MMC_DDR_52,
1923 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
1924 },
1925 {
1926 .mode = MMC_HS_52,
1927 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1928 },
1929 {
1930 .mode = MMC_HS,
1931 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1932 },
1933 {
1934 .mode = MMC_LEGACY,
1935 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1936 }
1937};
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001938
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001939#define for_each_mmc_mode_by_pref(caps, mwt) \
1940 for (mwt = mmc_modes_by_pref;\
1941 mwt < mmc_modes_by_pref + ARRAY_SIZE(mmc_modes_by_pref);\
1942 mwt++) \
1943 if (caps & MMC_CAP(mwt->mode))
1944
1945static const struct ext_csd_bus_width {
1946 uint cap;
1947 bool is_ddr;
1948 uint ext_csd_bits;
1949} ext_csd_bus_width[] = {
1950 {MMC_MODE_8BIT, true, EXT_CSD_DDR_BUS_WIDTH_8},
1951 {MMC_MODE_4BIT, true, EXT_CSD_DDR_BUS_WIDTH_4},
1952 {MMC_MODE_8BIT, false, EXT_CSD_BUS_WIDTH_8},
1953 {MMC_MODE_4BIT, false, EXT_CSD_BUS_WIDTH_4},
1954 {MMC_MODE_1BIT, false, EXT_CSD_BUS_WIDTH_1},
1955};
1956
Peng Fan3dd26262018-08-10 14:07:54 +08001957#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
1958static int mmc_select_hs400(struct mmc *mmc)
1959{
1960 int err;
1961
1962 /* Set timing to HS200 for tuning */
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001963 err = mmc_set_card_speed(mmc, MMC_HS_200, false);
Peng Fan3dd26262018-08-10 14:07:54 +08001964 if (err)
1965 return err;
1966
1967 /* configure the bus mode (host) */
1968 mmc_select_mode(mmc, MMC_HS_200);
1969 mmc_set_clock(mmc, mmc->tran_speed, false);
1970
1971 /* execute tuning if needed */
1972 err = mmc_execute_tuning(mmc, MMC_CMD_SEND_TUNING_BLOCK_HS200);
1973 if (err) {
1974 debug("tuning failed\n");
1975 return err;
1976 }
1977
1978 /* Set back to HS */
BOUGH CHEN5cf12032019-03-26 06:24:17 +00001979 mmc_set_card_speed(mmc, MMC_HS, true);
Peng Fan3dd26262018-08-10 14:07:54 +08001980
1981 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH,
1982 EXT_CSD_BUS_WIDTH_8 | EXT_CSD_DDR_FLAG);
1983 if (err)
1984 return err;
1985
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001986 err = mmc_set_card_speed(mmc, MMC_HS_400, false);
Peng Fan3dd26262018-08-10 14:07:54 +08001987 if (err)
1988 return err;
1989
1990 mmc_select_mode(mmc, MMC_HS_400);
1991 err = mmc_set_clock(mmc, mmc->tran_speed, false);
1992 if (err)
1993 return err;
1994
1995 return 0;
1996}
1997#else
1998static int mmc_select_hs400(struct mmc *mmc)
1999{
2000 return -ENOTSUPP;
2001}
2002#endif
2003
Peng Fan44acd492019-07-10 14:43:07 +08002004#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
2005#if !CONFIG_IS_ENABLED(DM_MMC)
2006static int mmc_set_enhanced_strobe(struct mmc *mmc)
2007{
2008 return -ENOTSUPP;
2009}
2010#endif
2011static int mmc_select_hs400es(struct mmc *mmc)
2012{
2013 int err;
2014
2015 err = mmc_set_card_speed(mmc, MMC_HS, true);
2016 if (err)
2017 return err;
2018
2019 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH,
2020 EXT_CSD_BUS_WIDTH_8 | EXT_CSD_DDR_FLAG |
2021 EXT_CSD_BUS_WIDTH_STROBE);
2022 if (err) {
2023 printf("switch to bus width for hs400 failed\n");
2024 return err;
2025 }
2026 /* TODO: driver strength */
2027 err = mmc_set_card_speed(mmc, MMC_HS_400_ES, false);
2028 if (err)
2029 return err;
2030
2031 mmc_select_mode(mmc, MMC_HS_400_ES);
2032 err = mmc_set_clock(mmc, mmc->tran_speed, false);
2033 if (err)
2034 return err;
2035
2036 return mmc_set_enhanced_strobe(mmc);
2037}
2038#else
2039static int mmc_select_hs400es(struct mmc *mmc)
2040{
2041 return -ENOTSUPP;
2042}
2043#endif
2044
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002045#define for_each_supported_width(caps, ddr, ecbv) \
2046 for (ecbv = ext_csd_bus_width;\
2047 ecbv < ext_csd_bus_width + ARRAY_SIZE(ext_csd_bus_width);\
2048 ecbv++) \
2049 if ((ddr == ecbv->is_ddr) && (caps & ecbv->cap))
2050
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002051static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002052{
2053 int err;
2054 const struct mode_width_tuning *mwt;
2055 const struct ext_csd_bus_width *ecbw;
2056
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01002057#ifdef DEBUG
2058 mmc_dump_capabilities("mmc", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01002059 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01002060#endif
2061
Anup Patelf49ff792019-07-08 04:10:43 +00002062 if (mmc_host_is_spi(mmc)) {
2063 mmc_set_bus_width(mmc, 1);
2064 mmc_select_mode(mmc, MMC_LEGACY);
2065 mmc_set_clock(mmc, mmc->tran_speed, MMC_CLK_ENABLE);
2066 return 0;
2067 }
2068
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002069 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01002070 card_caps &= mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002071
2072 /* Only version 4 of MMC supports wider bus widths */
2073 if (mmc->version < MMC_VERSION_4)
2074 return 0;
2075
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002076 if (!mmc->ext_csd) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002077 pr_debug("No ext_csd found!\n"); /* this should enver happen */
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002078 return -ENOTSUPP;
2079 }
2080
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01002081#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
2082 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
2083 /*
2084 * In case the eMMC is in HS200/HS400 mode, downgrade to HS mode
2085 * before doing anything else, since a transition from either of
2086 * the HS200/HS400 mode directly to legacy mode is not supported.
2087 */
2088 if (mmc->selected_mode == MMC_HS_200 ||
2089 mmc->selected_mode == MMC_HS_400)
2090 mmc_set_card_speed(mmc, MMC_HS, true);
2091 else
2092#endif
2093 mmc_set_clock(mmc, mmc->legacy_speed, MMC_CLK_ENABLE);
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002094
2095 for_each_mmc_mode_by_pref(card_caps, mwt) {
2096 for_each_supported_width(card_caps & mwt->widths,
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002097 mmc_is_mode_ddr(mwt->mode), ecbw) {
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002098 enum mmc_voltage old_voltage;
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002099 pr_debug("trying mode %s width %d (at %d MHz)\n",
2100 mmc_mode_name(mwt->mode),
2101 bus_width(ecbw->cap),
2102 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002103 old_voltage = mmc->signal_voltage;
2104 err = mmc_set_lowest_voltage(mmc, mwt->mode,
2105 MMC_ALL_SIGNAL_VOLTAGE);
2106 if (err)
2107 continue;
2108
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002109 /* configure the bus width (card + host) */
2110 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2111 EXT_CSD_BUS_WIDTH,
2112 ecbw->ext_csd_bits & ~EXT_CSD_DDR_FLAG);
2113 if (err)
2114 goto error;
2115 mmc_set_bus_width(mmc, bus_width(ecbw->cap));
2116
Peng Fan3dd26262018-08-10 14:07:54 +08002117 if (mwt->mode == MMC_HS_400) {
2118 err = mmc_select_hs400(mmc);
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002119 if (err) {
Peng Fan3dd26262018-08-10 14:07:54 +08002120 printf("Select HS400 failed %d\n", err);
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002121 goto error;
2122 }
Peng Fan44acd492019-07-10 14:43:07 +08002123 } else if (mwt->mode == MMC_HS_400_ES) {
2124 err = mmc_select_hs400es(mmc);
2125 if (err) {
2126 printf("Select HS400ES failed %d\n",
2127 err);
2128 goto error;
2129 }
Peng Fan3dd26262018-08-10 14:07:54 +08002130 } else {
2131 /* configure the bus speed (card) */
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01002132 err = mmc_set_card_speed(mmc, mwt->mode, false);
Peng Fan3dd26262018-08-10 14:07:54 +08002133 if (err)
2134 goto error;
2135
2136 /*
2137 * configure the bus width AND the ddr mode
2138 * (card). The host side will be taken care
2139 * of in the next step
2140 */
2141 if (ecbw->ext_csd_bits & EXT_CSD_DDR_FLAG) {
2142 err = mmc_switch(mmc,
2143 EXT_CSD_CMD_SET_NORMAL,
2144 EXT_CSD_BUS_WIDTH,
2145 ecbw->ext_csd_bits);
2146 if (err)
2147 goto error;
2148 }
2149
2150 /* configure the bus mode (host) */
2151 mmc_select_mode(mmc, mwt->mode);
2152 mmc_set_clock(mmc, mmc->tran_speed,
2153 MMC_CLK_ENABLE);
2154#ifdef MMC_SUPPORTS_TUNING
2155
2156 /* execute tuning if needed */
2157 if (mwt->tuning) {
2158 err = mmc_execute_tuning(mmc,
2159 mwt->tuning);
2160 if (err) {
2161 pr_debug("tuning failed\n");
2162 goto error;
2163 }
2164 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01002165#endif
Peng Fan3dd26262018-08-10 14:07:54 +08002166 }
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002167
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002168 /* do a transfer to check the configuration */
2169 err = mmc_read_and_compare_ext_csd(mmc);
2170 if (!err)
2171 return 0;
2172error:
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002173 mmc_set_signal_voltage(mmc, old_voltage);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002174 /* if an error occured, revert to a safer bus mode */
2175 mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2176 EXT_CSD_BUS_WIDTH, EXT_CSD_BUS_WIDTH_1);
2177 mmc_select_mode(mmc, MMC_LEGACY);
2178 mmc_set_bus_width(mmc, 1);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002179 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002180 }
2181
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002182 pr_err("unable to select a mode\n");
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002183
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002184 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002185}
Marek Vasut62d77ce2018-04-15 00:37:11 +02002186#endif
2187
2188#if CONFIG_IS_ENABLED(MMC_TINY)
2189DEFINE_CACHE_ALIGN_BUFFER(u8, ext_csd_bkup, MMC_MAX_BLOCK_LEN);
2190#endif
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002191
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002192static int mmc_startup_v4(struct mmc *mmc)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002193{
2194 int err, i;
2195 u64 capacity;
2196 bool has_parts = false;
2197 bool part_completed;
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002198 static const u32 mmc_versions[] = {
2199 MMC_VERSION_4,
2200 MMC_VERSION_4_1,
2201 MMC_VERSION_4_2,
2202 MMC_VERSION_4_3,
Jean-Jacques Hiblotace1bed2018-02-09 12:09:28 +01002203 MMC_VERSION_4_4,
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002204 MMC_VERSION_4_41,
2205 MMC_VERSION_4_5,
2206 MMC_VERSION_5_0,
2207 MMC_VERSION_5_1
2208 };
2209
Marek Vasut62d77ce2018-04-15 00:37:11 +02002210#if CONFIG_IS_ENABLED(MMC_TINY)
2211 u8 *ext_csd = ext_csd_bkup;
2212
2213 if (IS_SD(mmc) || mmc->version < MMC_VERSION_4)
2214 return 0;
2215
2216 if (!mmc->ext_csd)
2217 memset(ext_csd_bkup, 0, sizeof(ext_csd_bkup));
2218
2219 err = mmc_send_ext_csd(mmc, ext_csd);
2220 if (err)
2221 goto error;
2222
2223 /* store the ext csd for future reference */
2224 if (!mmc->ext_csd)
2225 mmc->ext_csd = ext_csd;
2226#else
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002227 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002228
2229 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4))
2230 return 0;
2231
2232 /* check ext_csd version and capacity */
2233 err = mmc_send_ext_csd(mmc, ext_csd);
2234 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002235 goto error;
2236
2237 /* store the ext csd for future reference */
2238 if (!mmc->ext_csd)
2239 mmc->ext_csd = malloc(MMC_MAX_BLOCK_LEN);
2240 if (!mmc->ext_csd)
2241 return -ENOMEM;
2242 memcpy(mmc->ext_csd, ext_csd, MMC_MAX_BLOCK_LEN);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002243#endif
Alexander Kochetkov76584e32018-02-20 14:35:55 +03002244 if (ext_csd[EXT_CSD_REV] >= ARRAY_SIZE(mmc_versions))
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002245 return -EINVAL;
2246
2247 mmc->version = mmc_versions[ext_csd[EXT_CSD_REV]];
2248
2249 if (mmc->version >= MMC_VERSION_4_2) {
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002250 /*
2251 * According to the JEDEC Standard, the value of
2252 * ext_csd's capacity is valid if the value is more
2253 * than 2GB
2254 */
2255 capacity = ext_csd[EXT_CSD_SEC_CNT] << 0
2256 | ext_csd[EXT_CSD_SEC_CNT + 1] << 8
2257 | ext_csd[EXT_CSD_SEC_CNT + 2] << 16
2258 | ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
2259 capacity *= MMC_MAX_BLOCK_LEN;
2260 if ((capacity >> 20) > 2 * 1024)
2261 mmc->capacity_user = capacity;
2262 }
2263
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +02002264 if (mmc->version >= MMC_VERSION_4_5)
2265 mmc->gen_cmd6_time = ext_csd[EXT_CSD_GENERIC_CMD6_TIME];
2266
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002267 /* The partition data may be non-zero but it is only
2268 * effective if PARTITION_SETTING_COMPLETED is set in
2269 * EXT_CSD, so ignore any data if this bit is not set,
2270 * except for enabling the high-capacity group size
2271 * definition (see below).
2272 */
2273 part_completed = !!(ext_csd[EXT_CSD_PARTITION_SETTING] &
2274 EXT_CSD_PARTITION_SETTING_COMPLETED);
2275
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +02002276 mmc->part_switch_time = ext_csd[EXT_CSD_PART_SWITCH_TIME];
2277 /* Some eMMC set the value too low so set a minimum */
2278 if (mmc->part_switch_time < MMC_MIN_PART_SWITCH_TIME && mmc->part_switch_time)
2279 mmc->part_switch_time = MMC_MIN_PART_SWITCH_TIME;
2280
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002281 /* store the partition info of emmc */
2282 mmc->part_support = ext_csd[EXT_CSD_PARTITIONING_SUPPORT];
2283 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) ||
2284 ext_csd[EXT_CSD_BOOT_MULT])
2285 mmc->part_config = ext_csd[EXT_CSD_PART_CONF];
2286 if (part_completed &&
2287 (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & ENHNCD_SUPPORT))
2288 mmc->part_attr = ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE];
2289
2290 mmc->capacity_boot = ext_csd[EXT_CSD_BOOT_MULT] << 17;
2291
2292 mmc->capacity_rpmb = ext_csd[EXT_CSD_RPMB_MULT] << 17;
2293
2294 for (i = 0; i < 4; i++) {
2295 int idx = EXT_CSD_GP_SIZE_MULT + i * 3;
2296 uint mult = (ext_csd[idx + 2] << 16) +
2297 (ext_csd[idx + 1] << 8) + ext_csd[idx];
2298 if (mult)
2299 has_parts = true;
2300 if (!part_completed)
2301 continue;
2302 mmc->capacity_gp[i] = mult;
2303 mmc->capacity_gp[i] *=
2304 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2305 mmc->capacity_gp[i] *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2306 mmc->capacity_gp[i] <<= 19;
2307 }
2308
Jean-Jacques Hiblot173c06d2018-01-04 15:23:35 +01002309#ifndef CONFIG_SPL_BUILD
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002310 if (part_completed) {
2311 mmc->enh_user_size =
2312 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 2] << 16) +
2313 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 1] << 8) +
2314 ext_csd[EXT_CSD_ENH_SIZE_MULT];
2315 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2316 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2317 mmc->enh_user_size <<= 19;
2318 mmc->enh_user_start =
2319 (ext_csd[EXT_CSD_ENH_START_ADDR + 3] << 24) +
2320 (ext_csd[EXT_CSD_ENH_START_ADDR + 2] << 16) +
2321 (ext_csd[EXT_CSD_ENH_START_ADDR + 1] << 8) +
2322 ext_csd[EXT_CSD_ENH_START_ADDR];
2323 if (mmc->high_capacity)
2324 mmc->enh_user_start <<= 9;
2325 }
Jean-Jacques Hiblot173c06d2018-01-04 15:23:35 +01002326#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002327
2328 /*
2329 * Host needs to enable ERASE_GRP_DEF bit if device is
2330 * partitioned. This bit will be lost every time after a reset
2331 * or power off. This will affect erase size.
2332 */
2333 if (part_completed)
2334 has_parts = true;
2335 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) &&
2336 (ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE] & PART_ENH_ATTRIB))
2337 has_parts = true;
2338 if (has_parts) {
2339 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2340 EXT_CSD_ERASE_GROUP_DEF, 1);
2341
2342 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002343 goto error;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002344
2345 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
2346 }
2347
2348 if (ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01) {
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002349#if CONFIG_IS_ENABLED(MMC_WRITE)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002350 /* Read out group size from ext_csd */
2351 mmc->erase_grp_size =
2352 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002353#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002354 /*
2355 * if high capacity and partition setting completed
2356 * SEC_COUNT is valid even if it is smaller than 2 GiB
2357 * JEDEC Standard JESD84-B45, 6.2.4
2358 */
2359 if (mmc->high_capacity && part_completed) {
2360 capacity = (ext_csd[EXT_CSD_SEC_CNT]) |
2361 (ext_csd[EXT_CSD_SEC_CNT + 1] << 8) |
2362 (ext_csd[EXT_CSD_SEC_CNT + 2] << 16) |
2363 (ext_csd[EXT_CSD_SEC_CNT + 3] << 24);
2364 capacity *= MMC_MAX_BLOCK_LEN;
2365 mmc->capacity_user = capacity;
2366 }
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002367 }
2368#if CONFIG_IS_ENABLED(MMC_WRITE)
2369 else {
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002370 /* Calculate the group size from the csd value. */
2371 int erase_gsz, erase_gmul;
2372
2373 erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10;
2374 erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5;
2375 mmc->erase_grp_size = (erase_gsz + 1)
2376 * (erase_gmul + 1);
2377 }
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002378#endif
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +01002379#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002380 mmc->hc_wp_grp_size = 1024
2381 * ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
2382 * ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +01002383#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002384
2385 mmc->wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
2386
2387 return 0;
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002388error:
2389 if (mmc->ext_csd) {
Marek Vasut62d77ce2018-04-15 00:37:11 +02002390#if !CONFIG_IS_ENABLED(MMC_TINY)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002391 free(mmc->ext_csd);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002392#endif
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002393 mmc->ext_csd = NULL;
2394 }
2395 return err;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002396}
2397
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002398static int mmc_startup(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002399{
Stephen Warrenf866a462013-06-11 15:14:01 -06002400 int err, i;
Andy Fleming272cc702008-10-30 16:41:01 -05002401 uint mult, freq;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002402 u64 cmult, csize;
Andy Fleming272cc702008-10-30 16:41:01 -05002403 struct mmc_cmd cmd;
Simon Glassc40fdca2016-05-01 13:52:35 -06002404 struct blk_desc *bdesc;
Andy Fleming272cc702008-10-30 16:41:01 -05002405
Thomas Choud52ebf12010-12-24 13:12:21 +00002406#ifdef CONFIG_MMC_SPI_CRC_ON
2407 if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */
2408 cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF;
2409 cmd.resp_type = MMC_RSP_R1;
2410 cmd.cmdarg = 1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002411 err = mmc_send_cmd(mmc, &cmd, NULL);
Thomas Choud52ebf12010-12-24 13:12:21 +00002412 if (err)
2413 return err;
2414 }
2415#endif
2416
Andy Fleming272cc702008-10-30 16:41:01 -05002417 /* Put the Card in Identify Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002418 cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID :
2419 MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */
Andy Fleming272cc702008-10-30 16:41:01 -05002420 cmd.resp_type = MMC_RSP_R2;
2421 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002422
2423 err = mmc_send_cmd(mmc, &cmd, NULL);
2424
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002425#ifdef CONFIG_MMC_QUIRKS
2426 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SEND_CID)) {
2427 int retries = 4;
2428 /*
2429 * It has been seen that SEND_CID may fail on the first
2430 * attempt, let's try a few more time
2431 */
2432 do {
2433 err = mmc_send_cmd(mmc, &cmd, NULL);
2434 if (!err)
2435 break;
2436 } while (retries--);
2437 }
2438#endif
2439
Andy Fleming272cc702008-10-30 16:41:01 -05002440 if (err)
2441 return err;
2442
2443 memcpy(mmc->cid, cmd.response, 16);
2444
2445 /*
2446 * For MMC cards, set the Relative Address.
2447 * For SD cards, get the Relatvie Address.
2448 * This also puts the cards into Standby State
2449 */
Thomas Choud52ebf12010-12-24 13:12:21 +00002450 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2451 cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR;
2452 cmd.cmdarg = mmc->rca << 16;
2453 cmd.resp_type = MMC_RSP_R6;
Andy Fleming272cc702008-10-30 16:41:01 -05002454
Thomas Choud52ebf12010-12-24 13:12:21 +00002455 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002456
Thomas Choud52ebf12010-12-24 13:12:21 +00002457 if (err)
2458 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002459
Thomas Choud52ebf12010-12-24 13:12:21 +00002460 if (IS_SD(mmc))
2461 mmc->rca = (cmd.response[0] >> 16) & 0xffff;
2462 }
Andy Fleming272cc702008-10-30 16:41:01 -05002463
2464 /* Get the Card-Specific Data */
2465 cmd.cmdidx = MMC_CMD_SEND_CSD;
2466 cmd.resp_type = MMC_RSP_R2;
2467 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05002468
2469 err = mmc_send_cmd(mmc, &cmd, NULL);
2470
2471 if (err)
2472 return err;
2473
Rabin Vincent998be3d2009-04-05 13:30:56 +05302474 mmc->csd[0] = cmd.response[0];
2475 mmc->csd[1] = cmd.response[1];
2476 mmc->csd[2] = cmd.response[2];
2477 mmc->csd[3] = cmd.response[3];
Andy Fleming272cc702008-10-30 16:41:01 -05002478
2479 if (mmc->version == MMC_VERSION_UNKNOWN) {
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302480 int version = (cmd.response[0] >> 26) & 0xf;
Andy Fleming272cc702008-10-30 16:41:01 -05002481
2482 switch (version) {
Bin Meng53e8e402016-03-17 21:53:13 -07002483 case 0:
2484 mmc->version = MMC_VERSION_1_2;
2485 break;
2486 case 1:
2487 mmc->version = MMC_VERSION_1_4;
2488 break;
2489 case 2:
2490 mmc->version = MMC_VERSION_2_2;
2491 break;
2492 case 3:
2493 mmc->version = MMC_VERSION_3;
2494 break;
2495 case 4:
2496 mmc->version = MMC_VERSION_4;
2497 break;
2498 default:
2499 mmc->version = MMC_VERSION_1_2;
2500 break;
Andy Fleming272cc702008-10-30 16:41:01 -05002501 }
2502 }
2503
2504 /* divide frequency by 10, since the mults are 10x bigger */
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302505 freq = fbase[(cmd.response[0] & 0x7)];
2506 mult = multipliers[((cmd.response[0] >> 3) & 0xf)];
Andy Fleming272cc702008-10-30 16:41:01 -05002507
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002508 mmc->legacy_speed = freq * mult;
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002509 mmc_select_mode(mmc, MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05002510
Markus Niebelab711882013-12-16 13:40:46 +01002511 mmc->dsr_imp = ((cmd.response[1] >> 12) & 0x1);
Rabin Vincent998be3d2009-04-05 13:30:56 +05302512 mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf);
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002513#if CONFIG_IS_ENABLED(MMC_WRITE)
Andy Fleming272cc702008-10-30 16:41:01 -05002514
2515 if (IS_SD(mmc))
2516 mmc->write_bl_len = mmc->read_bl_len;
2517 else
Rabin Vincent998be3d2009-04-05 13:30:56 +05302518 mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf);
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002519#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002520
2521 if (mmc->high_capacity) {
2522 csize = (mmc->csd[1] & 0x3f) << 16
2523 | (mmc->csd[2] & 0xffff0000) >> 16;
2524 cmult = 8;
2525 } else {
2526 csize = (mmc->csd[1] & 0x3ff) << 2
2527 | (mmc->csd[2] & 0xc0000000) >> 30;
2528 cmult = (mmc->csd[2] & 0x00038000) >> 15;
2529 }
2530
Stephen Warrenf866a462013-06-11 15:14:01 -06002531 mmc->capacity_user = (csize + 1) << (cmult + 2);
2532 mmc->capacity_user *= mmc->read_bl_len;
2533 mmc->capacity_boot = 0;
2534 mmc->capacity_rpmb = 0;
2535 for (i = 0; i < 4; i++)
2536 mmc->capacity_gp[i] = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002537
Simon Glass8bfa1952013-04-03 08:54:30 +00002538 if (mmc->read_bl_len > MMC_MAX_BLOCK_LEN)
2539 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -05002540
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002541#if CONFIG_IS_ENABLED(MMC_WRITE)
Simon Glass8bfa1952013-04-03 08:54:30 +00002542 if (mmc->write_bl_len > MMC_MAX_BLOCK_LEN)
2543 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002544#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002545
Markus Niebelab711882013-12-16 13:40:46 +01002546 if ((mmc->dsr_imp) && (0xffffffff != mmc->dsr)) {
2547 cmd.cmdidx = MMC_CMD_SET_DSR;
2548 cmd.cmdarg = (mmc->dsr & 0xffff) << 16;
2549 cmd.resp_type = MMC_RSP_NONE;
2550 if (mmc_send_cmd(mmc, &cmd, NULL))
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002551 pr_warn("MMC: SET_DSR failed\n");
Markus Niebelab711882013-12-16 13:40:46 +01002552 }
2553
Andy Fleming272cc702008-10-30 16:41:01 -05002554 /* Select the card, and put it into Transfer Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002555 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2556 cmd.cmdidx = MMC_CMD_SELECT_CARD;
Ajay Bhargavfe8f7062011-10-05 03:13:23 +00002557 cmd.resp_type = MMC_RSP_R1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002558 cmd.cmdarg = mmc->rca << 16;
Thomas Choud52ebf12010-12-24 13:12:21 +00002559 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002560
Thomas Choud52ebf12010-12-24 13:12:21 +00002561 if (err)
2562 return err;
2563 }
Andy Fleming272cc702008-10-30 16:41:01 -05002564
Lei Wene6f99a52011-06-22 17:03:31 +00002565 /*
2566 * For SD, its erase group is always one sector
2567 */
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002568#if CONFIG_IS_ENABLED(MMC_WRITE)
Lei Wene6f99a52011-06-22 17:03:31 +00002569 mmc->erase_grp_size = 1;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002570#endif
Lei Wenbc897b12011-05-02 16:26:26 +00002571 mmc->part_config = MMCPART_NOAVAILABLE;
Lei Wenbc897b12011-05-02 16:26:26 +00002572
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002573 err = mmc_startup_v4(mmc);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002574 if (err)
2575 return err;
Sukumar Ghoraid23e2c02010-09-20 18:29:29 +05302576
Simon Glassc40fdca2016-05-01 13:52:35 -06002577 err = mmc_set_capacity(mmc, mmc_get_blk_desc(mmc)->hwpart);
Stephen Warrenf866a462013-06-11 15:14:01 -06002578 if (err)
2579 return err;
2580
Marek Vasut62d77ce2018-04-15 00:37:11 +02002581#if CONFIG_IS_ENABLED(MMC_TINY)
2582 mmc_set_clock(mmc, mmc->legacy_speed, false);
Faiz Abbase8d5dde2020-02-26 13:44:32 +05302583 mmc_select_mode(mmc, MMC_LEGACY);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002584 mmc_set_bus_width(mmc, 1);
2585#else
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002586 if (IS_SD(mmc)) {
2587 err = sd_get_capabilities(mmc);
2588 if (err)
2589 return err;
2590 err = sd_select_mode_and_width(mmc, mmc->card_caps);
2591 } else {
2592 err = mmc_get_capabilities(mmc);
2593 if (err)
2594 return err;
Masahiro Yamada8adf50e2020-01-23 14:31:12 +09002595 err = mmc_select_mode_and_width(mmc, mmc->card_caps);
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002596 }
Marek Vasut62d77ce2018-04-15 00:37:11 +02002597#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002598 if (err)
2599 return err;
2600
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002601 mmc->best_mode = mmc->selected_mode;
Jaehoon Chungad5fd922012-03-26 21:16:03 +00002602
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002603 /* Fix the block length for DDR mode */
2604 if (mmc->ddr_mode) {
2605 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002606#if CONFIG_IS_ENABLED(MMC_WRITE)
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002607 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002608#endif
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002609 }
2610
Andy Fleming272cc702008-10-30 16:41:01 -05002611 /* fill in device description */
Simon Glassc40fdca2016-05-01 13:52:35 -06002612 bdesc = mmc_get_blk_desc(mmc);
2613 bdesc->lun = 0;
2614 bdesc->hwpart = 0;
2615 bdesc->type = 0;
2616 bdesc->blksz = mmc->read_bl_len;
2617 bdesc->log2blksz = LOG2(bdesc->blksz);
2618 bdesc->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Sjoerd Simonsfc011f62015-12-04 23:27:40 +01002619#if !defined(CONFIG_SPL_BUILD) || \
2620 (defined(CONFIG_SPL_LIBCOMMON_SUPPORT) && \
Simon Glass27084c02019-09-25 08:56:27 -06002621 !CONFIG_IS_ENABLED(USE_TINY_PRINTF))
Simon Glassc40fdca2016-05-01 13:52:35 -06002622 sprintf(bdesc->vendor, "Man %06x Snr %04x%04x",
Taylor Huttbabce5f2012-10-20 17:15:59 +00002623 mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff),
2624 (mmc->cid[3] >> 16) & 0xffff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002625 sprintf(bdesc->product, "%c%c%c%c%c%c", mmc->cid[0] & 0xff,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002626 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
2627 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff,
2628 (mmc->cid[2] >> 24) & 0xff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002629 sprintf(bdesc->revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002630 (mmc->cid[2] >> 16) & 0xf);
Paul Burton56196822013-09-04 16:12:25 +01002631#else
Simon Glassc40fdca2016-05-01 13:52:35 -06002632 bdesc->vendor[0] = 0;
2633 bdesc->product[0] = 0;
2634 bdesc->revision[0] = 0;
Paul Burton56196822013-09-04 16:12:25 +01002635#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002636
Andre Przywaraeef05fd2018-12-17 10:05:45 +00002637#if !defined(CONFIG_DM_MMC) && (!defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT))
2638 part_init(bdesc);
2639#endif
2640
Andy Fleming272cc702008-10-30 16:41:01 -05002641 return 0;
2642}
2643
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002644static int mmc_send_if_cond(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002645{
2646 struct mmc_cmd cmd;
2647 int err;
2648
2649 cmd.cmdidx = SD_CMD_SEND_IF_COND;
2650 /* We set the bit if the host supports voltages between 2.7 and 3.6 V */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002651 cmd.cmdarg = ((mmc->cfg->voltages & 0xff8000) != 0) << 8 | 0xaa;
Andy Fleming272cc702008-10-30 16:41:01 -05002652 cmd.resp_type = MMC_RSP_R7;
Andy Fleming272cc702008-10-30 16:41:01 -05002653
2654 err = mmc_send_cmd(mmc, &cmd, NULL);
2655
2656 if (err)
2657 return err;
2658
Rabin Vincent998be3d2009-04-05 13:30:56 +05302659 if ((cmd.response[0] & 0xff) != 0xaa)
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002660 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002661 else
2662 mmc->version = SD_VERSION_2;
2663
2664 return 0;
2665}
2666
Simon Glassc4d660d2017-07-04 13:31:19 -06002667#if !CONFIG_IS_ENABLED(DM_MMC)
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002668/* board-specific MMC power initializations. */
2669__weak void board_mmc_power_init(void)
2670{
2671}
Simon Glass05cbeb72017-04-22 19:10:56 -06002672#endif
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002673
Peng Fan2051aef2016-10-11 15:08:43 +08002674static int mmc_power_init(struct mmc *mmc)
2675{
Simon Glassc4d660d2017-07-04 13:31:19 -06002676#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002677#if CONFIG_IS_ENABLED(DM_REGULATOR)
Peng Fan2051aef2016-10-11 15:08:43 +08002678 int ret;
2679
2680 ret = device_get_supply_regulator(mmc->dev, "vmmc-supply",
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002681 &mmc->vmmc_supply);
2682 if (ret)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002683 pr_debug("%s: No vmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002684
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002685 ret = device_get_supply_regulator(mmc->dev, "vqmmc-supply",
2686 &mmc->vqmmc_supply);
2687 if (ret)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002688 pr_debug("%s: No vqmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002689#endif
Simon Glass05cbeb72017-04-22 19:10:56 -06002690#else /* !CONFIG_DM_MMC */
2691 /*
2692 * Driver model should use a regulator, as above, rather than calling
2693 * out to board code.
2694 */
2695 board_mmc_power_init();
2696#endif
Peng Fan2051aef2016-10-11 15:08:43 +08002697 return 0;
2698}
2699
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002700/*
2701 * put the host in the initial state:
2702 * - turn on Vdd (card power supply)
2703 * - configure the bus width and clock to minimal values
2704 */
2705static void mmc_set_initial_state(struct mmc *mmc)
2706{
2707 int err;
2708
2709 /* First try to set 3.3V. If it fails set to 1.8V */
2710 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_330);
2711 if (err != 0)
2712 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
2713 if (err != 0)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002714 pr_warn("mmc: failed to set signal voltage\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002715
2716 mmc_select_mode(mmc, MMC_LEGACY);
2717 mmc_set_bus_width(mmc, 1);
Jaehoon Chung65117182018-01-26 19:25:29 +09002718 mmc_set_clock(mmc, 0, MMC_CLK_ENABLE);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002719}
2720
2721static int mmc_power_on(struct mmc *mmc)
2722{
2723#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2724 if (mmc->vmmc_supply) {
2725 int ret = regulator_set_enable(mmc->vmmc_supply, true);
2726
2727 if (ret) {
2728 puts("Error enabling VMMC supply\n");
2729 return ret;
2730 }
2731 }
2732#endif
2733 return 0;
2734}
2735
2736static int mmc_power_off(struct mmc *mmc)
2737{
Jaehoon Chung65117182018-01-26 19:25:29 +09002738 mmc_set_clock(mmc, 0, MMC_CLK_DISABLE);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002739#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2740 if (mmc->vmmc_supply) {
2741 int ret = regulator_set_enable(mmc->vmmc_supply, false);
2742
2743 if (ret) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002744 pr_debug("Error disabling VMMC supply\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002745 return ret;
2746 }
2747 }
2748#endif
2749 return 0;
2750}
2751
2752static int mmc_power_cycle(struct mmc *mmc)
2753{
2754 int ret;
2755
2756 ret = mmc_power_off(mmc);
2757 if (ret)
2758 return ret;
Yann Gautier3602a562019-09-19 17:56:12 +02002759
2760 ret = mmc_host_power_cycle(mmc);
2761 if (ret)
2762 return ret;
2763
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002764 /*
2765 * SD spec recommends at least 1ms of delay. Let's wait for 2ms
2766 * to be on the safer side.
2767 */
2768 udelay(2000);
2769 return mmc_power_on(mmc);
2770}
2771
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002772int mmc_get_op_cond(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002773{
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002774 bool uhs_en = supports_uhs(mmc->cfg->host_caps);
Macpaul Linafd59322011-11-14 23:35:39 +00002775 int err;
Andy Fleming272cc702008-10-30 16:41:01 -05002776
Lei Wenbc897b12011-05-02 16:26:26 +00002777 if (mmc->has_init)
2778 return 0;
2779
Yangbo Lu5a8dbdc2015-04-22 13:57:00 +08002780#ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
2781 mmc_adapter_card_type_ident();
2782#endif
Peng Fan2051aef2016-10-11 15:08:43 +08002783 err = mmc_power_init(mmc);
2784 if (err)
2785 return err;
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002786
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002787#ifdef CONFIG_MMC_QUIRKS
2788 mmc->quirks = MMC_QUIRK_RETRY_SET_BLOCKLEN |
Joel Johnsond4a5fa32020-01-11 09:08:14 -07002789 MMC_QUIRK_RETRY_SEND_CID |
2790 MMC_QUIRK_RETRY_APP_CMD;
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002791#endif
2792
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002793 err = mmc_power_cycle(mmc);
2794 if (err) {
2795 /*
2796 * if power cycling is not supported, we should not try
2797 * to use the UHS modes, because we wouldn't be able to
2798 * recover from an error during the UHS initialization.
2799 */
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002800 pr_debug("Unable to do a full power cycle. Disabling the UHS modes for safety\n");
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002801 uhs_en = false;
2802 mmc->host_caps &= ~UHS_CAPS;
2803 err = mmc_power_on(mmc);
2804 }
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002805 if (err)
2806 return err;
2807
Simon Glasse7881d82017-07-29 11:35:31 -06002808#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass8ca51e52016-06-12 23:30:22 -06002809 /* The device has already been probed ready for use */
2810#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +02002811 /* made sure it's not NULL earlier */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002812 err = mmc->cfg->ops->init(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002813 if (err)
2814 return err;
Simon Glass8ca51e52016-06-12 23:30:22 -06002815#endif
Andrew Gabbasov786e8f82014-12-01 06:59:09 -06002816 mmc->ddr_mode = 0;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02002817
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002818retry:
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002819 mmc_set_initial_state(mmc);
Jean-Jacques Hiblot318a7a52017-09-21 16:30:01 +02002820
Andy Fleming272cc702008-10-30 16:41:01 -05002821 /* Reset the Card */
2822 err = mmc_go_idle(mmc);
2823
2824 if (err)
2825 return err;
2826
Marcel Ziswilerf5624b12019-05-20 02:44:53 +02002827 /* The internal partition reset to user partition(0) at every CMD0 */
Simon Glassc40fdca2016-05-01 13:52:35 -06002828 mmc_get_blk_desc(mmc)->hwpart = 0;
Lei Wenbc897b12011-05-02 16:26:26 +00002829
Andy Fleming272cc702008-10-30 16:41:01 -05002830 /* Test for SD version 2 */
Macpaul Linafd59322011-11-14 23:35:39 +00002831 err = mmc_send_if_cond(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002832
Andy Fleming272cc702008-10-30 16:41:01 -05002833 /* Now try to get the SD card's operating condition */
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002834 err = sd_send_op_cond(mmc, uhs_en);
2835 if (err && uhs_en) {
2836 uhs_en = false;
2837 mmc_power_cycle(mmc);
2838 goto retry;
2839 }
Andy Fleming272cc702008-10-30 16:41:01 -05002840
2841 /* If the command timed out, we check for an MMC card */
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002842 if (err == -ETIMEDOUT) {
Andy Fleming272cc702008-10-30 16:41:01 -05002843 err = mmc_send_op_cond(mmc);
2844
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002845 if (err) {
Paul Burton56196822013-09-04 16:12:25 +01002846#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002847 pr_err("Card did not respond to voltage select!\n");
Paul Burton56196822013-09-04 16:12:25 +01002848#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002849 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002850 }
2851 }
2852
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002853 return err;
2854}
2855
2856int mmc_start_init(struct mmc *mmc)
2857{
2858 bool no_card;
2859 int err = 0;
2860
2861 /*
2862 * all hosts are capable of 1 bit bus-width and able to use the legacy
2863 * timings.
2864 */
Faiz Abbase8d5dde2020-02-26 13:44:32 +05302865 mmc->host_caps = mmc->cfg->host_caps | MMC_CAP(MMC_LEGACY) |
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002866 MMC_CAP(MMC_LEGACY) | MMC_MODE_1BIT;
Faiz Abbas32860bd2020-02-26 13:44:30 +05302867#if CONFIG_IS_ENABLED(DM_MMC)
2868 mmc_deferred_probe(mmc);
2869#endif
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002870#if !defined(CONFIG_MMC_BROKEN_CD)
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002871 no_card = mmc_getcd(mmc) == 0;
2872#else
2873 no_card = 0;
2874#endif
2875#if !CONFIG_IS_ENABLED(DM_MMC)
Baruch Siachfea39392019-07-22 15:52:12 +03002876 /* we pretend there's no card when init is NULL */
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002877 no_card = no_card || (mmc->cfg->ops->init == NULL);
2878#endif
2879 if (no_card) {
2880 mmc->has_init = 0;
2881#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
2882 pr_err("MMC: no card present\n");
2883#endif
2884 return -ENOMEDIUM;
2885 }
2886
2887 err = mmc_get_op_cond(mmc);
2888
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002889 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002890 mmc->init_in_progress = 1;
2891
2892 return err;
2893}
2894
2895static int mmc_complete_init(struct mmc *mmc)
2896{
2897 int err = 0;
2898
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002899 mmc->init_in_progress = 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002900 if (mmc->op_cond_pending)
2901 err = mmc_complete_op_cond(mmc);
2902
2903 if (!err)
2904 err = mmc_startup(mmc);
Lei Wenbc897b12011-05-02 16:26:26 +00002905 if (err)
2906 mmc->has_init = 0;
2907 else
2908 mmc->has_init = 1;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002909 return err;
2910}
2911
2912int mmc_init(struct mmc *mmc)
2913{
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002914 int err = 0;
Vipul Kumar36332b62018-05-03 12:20:54 +05302915 __maybe_unused ulong start;
Simon Glassc4d660d2017-07-04 13:31:19 -06002916#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass33fb2112016-05-01 13:52:41 -06002917 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc->dev);
Che-Liang Chioue9550442012-11-28 15:21:13 +00002918
Simon Glass33fb2112016-05-01 13:52:41 -06002919 upriv->mmc = mmc;
2920#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00002921 if (mmc->has_init)
2922 return 0;
Mateusz Zalegad803fea2014-04-29 20:15:30 +02002923
2924 start = get_timer(0);
2925
Che-Liang Chioue9550442012-11-28 15:21:13 +00002926 if (!mmc->init_in_progress)
2927 err = mmc_start_init(mmc);
2928
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002929 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002930 err = mmc_complete_init(mmc);
Jagan Teki919b4852017-01-10 11:18:43 +01002931 if (err)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002932 pr_info("%s: %d, time %lu\n", __func__, err, get_timer(start));
Jagan Teki919b4852017-01-10 11:18:43 +01002933
Lei Wenbc897b12011-05-02 16:26:26 +00002934 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002935}
2936
Marek Vasutfceea992019-01-29 04:45:51 +01002937#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
2938 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
2939 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
2940int mmc_deinit(struct mmc *mmc)
2941{
2942 u32 caps_filtered;
2943
2944 if (!mmc->has_init)
2945 return 0;
2946
2947 if (IS_SD(mmc)) {
2948 caps_filtered = mmc->card_caps &
2949 ~(MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25) |
2950 MMC_CAP(UHS_SDR50) | MMC_CAP(UHS_DDR50) |
2951 MMC_CAP(UHS_SDR104));
2952
2953 return sd_select_mode_and_width(mmc, caps_filtered);
2954 } else {
2955 caps_filtered = mmc->card_caps &
2956 ~(MMC_CAP(MMC_HS_200) | MMC_CAP(MMC_HS_400));
2957
2958 return mmc_select_mode_and_width(mmc, caps_filtered);
2959 }
2960}
2961#endif
2962
Markus Niebelab711882013-12-16 13:40:46 +01002963int mmc_set_dsr(struct mmc *mmc, u16 val)
2964{
2965 mmc->dsr = val;
2966 return 0;
2967}
2968
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002969/* CPU-specific MMC initializations */
2970__weak int cpu_mmc_init(bd_t *bis)
Andy Fleming272cc702008-10-30 16:41:01 -05002971{
2972 return -1;
2973}
2974
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002975/* board-specific MMC initializations. */
2976__weak int board_mmc_init(bd_t *bis)
2977{
2978 return -1;
2979}
Andy Fleming272cc702008-10-30 16:41:01 -05002980
Che-Liang Chioue9550442012-11-28 15:21:13 +00002981void mmc_set_preinit(struct mmc *mmc, int preinit)
2982{
2983 mmc->preinit = preinit;
2984}
2985
Faiz Abbas8a856db2018-02-12 19:35:24 +05302986#if CONFIG_IS_ENABLED(DM_MMC)
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002987static int mmc_probe(bd_t *bis)
2988{
Simon Glass4a1db6d2015-12-29 05:22:49 -07002989 int ret, i;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002990 struct uclass *uc;
Simon Glass4a1db6d2015-12-29 05:22:49 -07002991 struct udevice *dev;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002992
2993 ret = uclass_get(UCLASS_MMC, &uc);
2994 if (ret)
2995 return ret;
2996
Simon Glass4a1db6d2015-12-29 05:22:49 -07002997 /*
2998 * Try to add them in sequence order. Really with driver model we
2999 * should allow holes, but the current MMC list does not allow that.
3000 * So if we request 0, 1, 3 we will get 0, 1, 2.
3001 */
3002 for (i = 0; ; i++) {
3003 ret = uclass_get_device_by_seq(UCLASS_MMC, i, &dev);
3004 if (ret == -ENODEV)
3005 break;
3006 }
3007 uclass_foreach_dev(dev, uc) {
3008 ret = device_probe(dev);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003009 if (ret)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01003010 pr_err("%s - probe failed: %d\n", dev->name, ret);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003011 }
3012
3013 return 0;
3014}
3015#else
3016static int mmc_probe(bd_t *bis)
3017{
3018 if (board_mmc_init(bis) < 0)
3019 cpu_mmc_init(bis);
3020
3021 return 0;
3022}
3023#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00003024
Andy Fleming272cc702008-10-30 16:41:01 -05003025int mmc_initialize(bd_t *bis)
3026{
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02003027 static int initialized = 0;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003028 int ret;
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02003029 if (initialized) /* Avoid initializing mmc multiple times */
3030 return 0;
3031 initialized = 1;
3032
Simon Glassc4d660d2017-07-04 13:31:19 -06003033#if !CONFIG_IS_ENABLED(BLK)
Marek Vasutb5b838f2016-12-01 02:06:33 +01003034#if !CONFIG_IS_ENABLED(MMC_TINY)
Simon Glassc40fdca2016-05-01 13:52:35 -06003035 mmc_list_init();
3036#endif
Marek Vasutb5b838f2016-12-01 02:06:33 +01003037#endif
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003038 ret = mmc_probe(bis);
3039 if (ret)
3040 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05003041
Ying Zhangbb0dc102013-08-16 15:16:11 +08003042#ifndef CONFIG_SPL_BUILD
Andy Fleming272cc702008-10-30 16:41:01 -05003043 print_mmc_devices(',');
Ying Zhangbb0dc102013-08-16 15:16:11 +08003044#endif
Andy Fleming272cc702008-10-30 16:41:01 -05003045
Simon Glassc40fdca2016-05-01 13:52:35 -06003046 mmc_do_preinit();
Andy Fleming272cc702008-10-30 16:41:01 -05003047 return 0;
3048}
Tomas Melincd3d4882016-11-25 11:01:03 +02003049
Lokesh Vutla80f02012019-09-09 14:40:36 +05303050#if CONFIG_IS_ENABLED(DM_MMC)
3051int mmc_init_device(int num)
3052{
3053 struct udevice *dev;
3054 struct mmc *m;
3055 int ret;
3056
3057 ret = uclass_get_device(UCLASS_MMC, num, &dev);
3058 if (ret)
3059 return ret;
3060
3061 m = mmc_get_mmc_dev(dev);
3062 if (!m)
3063 return 0;
3064#ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
3065 mmc_set_preinit(m, 1);
3066#endif
3067 if (m->preinit)
3068 mmc_start_init(m);
3069
3070 return 0;
3071}
3072#endif
3073
Tomas Melincd3d4882016-11-25 11:01:03 +02003074#ifdef CONFIG_CMD_BKOPS_ENABLE
3075int mmc_set_bkops_enable(struct mmc *mmc)
3076{
3077 int err;
3078 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
3079
3080 err = mmc_send_ext_csd(mmc, ext_csd);
3081 if (err) {
3082 puts("Could not get ext_csd register values\n");
3083 return err;
3084 }
3085
3086 if (!(ext_csd[EXT_CSD_BKOPS_SUPPORT] & 0x1)) {
3087 puts("Background operations not supported on device\n");
3088 return -EMEDIUMTYPE;
3089 }
3090
3091 if (ext_csd[EXT_CSD_BKOPS_EN] & 0x1) {
3092 puts("Background operations already enabled\n");
3093 return 0;
3094 }
3095
3096 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BKOPS_EN, 1);
3097 if (err) {
3098 puts("Failed to enable manual background operations\n");
3099 return err;
3100 }
3101
3102 puts("Enabled manual background operations\n");
3103
3104 return 0;
3105}
3106#endif