blob: bfcdaa665dc954bf1b2f36d990ad6a30b4e81afd [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>
11#include <command.h>
Sjoerd Simons8e3332e2015-08-30 16:55:45 -060012#include <dm.h>
13#include <dm/device-internal.h>
Stephen Warrend4622df2014-05-23 12:47:06 -060014#include <errno.h>
Andy Fleming272cc702008-10-30 16:41:01 -050015#include <mmc.h>
16#include <part.h>
Peng Fan2051aef2016-10-11 15:08:43 +080017#include <power/regulator.h>
Andy Fleming272cc702008-10-30 16:41:01 -050018#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060019#include <memalign.h>
Andy Fleming272cc702008-10-30 16:41:01 -050020#include <linux/list.h>
Rabin Vincent9b1f9422009-04-05 13:30:54 +053021#include <div64.h>
Paul Burtonda61fa52013-09-09 15:30:26 +010022#include "mmc_private.h"
Andy Fleming272cc702008-10-30 16:41:01 -050023
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +020024#define DEFAULT_CMD6_TIMEOUT_MS 500
25
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +020026static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage);
Marek Vasutb5b838f2016-12-01 02:06:33 +010027
Simon Glasse7881d82017-07-29 11:35:31 -060028#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020029
Sam Protsenko6cf8a902019-08-14 22:52:51 +030030static int mmc_wait_dat0(struct mmc *mmc, int state, int timeout_us)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020031{
32 return -ENOSYS;
33}
34
Jeroen Hofstee750121c2014-07-12 21:24:08 +020035__weak int board_mmc_getwp(struct mmc *mmc)
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000036{
37 return -1;
38}
39
40int mmc_getwp(struct mmc *mmc)
41{
42 int wp;
43
44 wp = board_mmc_getwp(mmc);
45
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000046 if (wp < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020047 if (mmc->cfg->ops->getwp)
48 wp = mmc->cfg->ops->getwp(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000049 else
50 wp = 0;
51 }
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000052
53 return wp;
54}
55
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +020056__weak int board_mmc_getcd(struct mmc *mmc)
57{
Stefano Babic11fdade2010-02-05 15:04:43 +010058 return -1;
59}
Simon Glass8ca51e52016-06-12 23:30:22 -060060#endif
Stefano Babic11fdade2010-02-05 15:04:43 +010061
Marek Vasut8635ff92012-03-15 18:41:35 +000062#ifdef CONFIG_MMC_TRACE
Simon Glassc0c76eb2016-06-12 23:30:20 -060063void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd)
64{
65 printf("CMD_SEND:%d\n", cmd->cmdidx);
Marek Vasut7d5ccb12019-03-23 18:54:45 +010066 printf("\t\tARG\t\t\t 0x%08x\n", cmd->cmdarg);
Simon Glassc0c76eb2016-06-12 23:30:20 -060067}
68
69void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, int ret)
70{
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +000071 int i;
72 u8 *ptr;
73
Bin Meng7863ce52016-03-17 21:53:14 -070074 if (ret) {
75 printf("\t\tRET\t\t\t %d\n", ret);
76 } else {
77 switch (cmd->resp_type) {
78 case MMC_RSP_NONE:
79 printf("\t\tMMC_RSP_NONE\n");
80 break;
81 case MMC_RSP_R1:
Marek Vasut7d5ccb12019-03-23 18:54:45 +010082 printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070083 cmd->response[0]);
84 break;
85 case MMC_RSP_R1b:
Marek Vasut7d5ccb12019-03-23 18:54:45 +010086 printf("\t\tMMC_RSP_R1b\t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070087 cmd->response[0]);
88 break;
89 case MMC_RSP_R2:
Marek Vasut7d5ccb12019-03-23 18:54:45 +010090 printf("\t\tMMC_RSP_R2\t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070091 cmd->response[0]);
Marek Vasut7d5ccb12019-03-23 18:54:45 +010092 printf("\t\t \t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070093 cmd->response[1]);
Marek Vasut7d5ccb12019-03-23 18:54:45 +010094 printf("\t\t \t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -070095 cmd->response[2]);
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[3]);
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +000098 printf("\n");
Bin Meng7863ce52016-03-17 21:53:14 -070099 printf("\t\t\t\t\tDUMPING DATA\n");
100 for (i = 0; i < 4; i++) {
101 int j;
102 printf("\t\t\t\t\t%03d - ", i*4);
103 ptr = (u8 *)&cmd->response[i];
104 ptr += 3;
105 for (j = 0; j < 4; j++)
Marek Vasut7d5ccb12019-03-23 18:54:45 +0100106 printf("%02x ", *ptr--);
Bin Meng7863ce52016-03-17 21:53:14 -0700107 printf("\n");
108 }
109 break;
110 case MMC_RSP_R3:
Marek Vasut7d5ccb12019-03-23 18:54:45 +0100111 printf("\t\tMMC_RSP_R3,4\t\t 0x%08x \n",
Bin Meng7863ce52016-03-17 21:53:14 -0700112 cmd->response[0]);
113 break;
114 default:
115 printf("\t\tERROR MMC rsp not supported\n");
116 break;
Bin Meng53e8e402016-03-17 21:53:13 -0700117 }
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000118 }
Simon Glassc0c76eb2016-06-12 23:30:20 -0600119}
120
121void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd)
122{
123 int status;
124
125 status = (cmd->response[0] & MMC_STATUS_CURR_STATE) >> 9;
126 printf("CURR STATE:%d\n", status);
127}
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000128#endif
Simon Glassc0c76eb2016-06-12 23:30:20 -0600129
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200130#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
131const char *mmc_mode_name(enum bus_mode mode)
132{
133 static const char *const names[] = {
134 [MMC_LEGACY] = "MMC legacy",
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200135 [MMC_HS] = "MMC High Speed (26MHz)",
136 [SD_HS] = "SD High Speed (50MHz)",
137 [UHS_SDR12] = "UHS SDR12 (25MHz)",
138 [UHS_SDR25] = "UHS SDR25 (50MHz)",
139 [UHS_SDR50] = "UHS SDR50 (100MHz)",
140 [UHS_SDR104] = "UHS SDR104 (208MHz)",
141 [UHS_DDR50] = "UHS DDR50 (50MHz)",
142 [MMC_HS_52] = "MMC High Speed (52MHz)",
143 [MMC_DDR_52] = "MMC DDR52 (52MHz)",
144 [MMC_HS_200] = "HS200 (200MHz)",
Peng Fan3dd26262018-08-10 14:07:54 +0800145 [MMC_HS_400] = "HS400 (200MHz)",
Peng Fan44acd492019-07-10 14:43:07 +0800146 [MMC_HS_400_ES] = "HS400ES (200MHz)",
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200147 };
148
149 if (mode >= MMC_MODES_END)
150 return "Unknown mode";
151 else
152 return names[mode];
153}
154#endif
155
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200156static uint mmc_mode2freq(struct mmc *mmc, enum bus_mode mode)
157{
158 static const int freqs[] = {
Jaehoon Chung1b313aa2018-01-30 14:10:16 +0900159 [MMC_LEGACY] = 25000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200160 [MMC_HS] = 26000000,
161 [SD_HS] = 50000000,
Jaehoon Chung1b313aa2018-01-30 14:10:16 +0900162 [MMC_HS_52] = 52000000,
163 [MMC_DDR_52] = 52000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200164 [UHS_SDR12] = 25000000,
165 [UHS_SDR25] = 50000000,
166 [UHS_SDR50] = 100000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200167 [UHS_DDR50] = 50000000,
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100168 [UHS_SDR104] = 208000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200169 [MMC_HS_200] = 200000000,
Peng Fan3dd26262018-08-10 14:07:54 +0800170 [MMC_HS_400] = 200000000,
Peng Fan44acd492019-07-10 14:43:07 +0800171 [MMC_HS_400_ES] = 200000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200172 };
173
174 if (mode == MMC_LEGACY)
175 return mmc->legacy_speed;
176 else if (mode >= MMC_MODES_END)
177 return 0;
178 else
179 return freqs[mode];
180}
181
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200182static int mmc_select_mode(struct mmc *mmc, enum bus_mode mode)
183{
184 mmc->selected_mode = mode;
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200185 mmc->tran_speed = mmc_mode2freq(mmc, mode);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200186 mmc->ddr_mode = mmc_is_mode_ddr(mode);
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900187 pr_debug("selecting mode %s (freq : %d MHz)\n", mmc_mode_name(mode),
188 mmc->tran_speed / 1000000);
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200189 return 0;
190}
191
Simon Glasse7881d82017-07-29 11:35:31 -0600192#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glassc0c76eb2016-06-12 23:30:20 -0600193int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
194{
195 int ret;
196
197 mmmc_trace_before_send(mmc, cmd);
198 ret = mmc->cfg->ops->send_cmd(mmc, cmd, data);
199 mmmc_trace_after_send(mmc, cmd, ret);
200
Marek Vasut8635ff92012-03-15 18:41:35 +0000201 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500202}
Simon Glass8ca51e52016-06-12 23:30:22 -0600203#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500204
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200205int mmc_send_status(struct mmc *mmc, unsigned int *status)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000206{
207 struct mmc_cmd cmd;
Jan Kloetzked617c422012-02-05 22:29:12 +0000208 int err, retries = 5;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000209
210 cmd.cmdidx = MMC_CMD_SEND_STATUS;
211 cmd.resp_type = MMC_RSP_R1;
Marek Vasutaaf3d412011-08-10 09:24:48 +0200212 if (!mmc_host_is_spi(mmc))
213 cmd.cmdarg = mmc->rca << 16;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000214
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200215 while (retries--) {
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000216 err = mmc_send_cmd(mmc, &cmd, NULL);
Jan Kloetzked617c422012-02-05 22:29:12 +0000217 if (!err) {
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200218 mmc_trace_state(mmc, &cmd);
219 *status = cmd.response[0];
220 return 0;
221 }
222 }
223 mmc_trace_state(mmc, &cmd);
224 return -ECOMM;
225}
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +0200226
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300227int mmc_poll_for_busy(struct mmc *mmc, int timeout_ms)
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200228{
229 unsigned int status;
230 int err;
231
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300232 err = mmc_wait_dat0(mmc, 1, timeout_ms * 1000);
Jean-Jacques Hiblotcd0b80e2019-07-02 10:53:53 +0200233 if (err != -ENOSYS)
234 return err;
235
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200236 while (1) {
237 err = mmc_send_status(mmc, &status);
238 if (err)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000239 return err;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000240
Jean-Jacques Hiblot863d1002019-07-02 10:53:52 +0200241 if ((status & MMC_STATUS_RDY_FOR_DATA) &&
242 (status & MMC_STATUS_CURR_STATE) !=
243 MMC_STATE_PRG)
244 break;
245
246 if (status & MMC_STATUS_MASK) {
247#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
248 pr_err("Status Error: 0x%08x\n", status);
249#endif
250 return -ECOMM;
251 }
252
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300253 if (timeout_ms-- <= 0)
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500254 break;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000255
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500256 udelay(1000);
257 }
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000258
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300259 if (timeout_ms <= 0) {
Paul Burton56196822013-09-04 16:12:25 +0100260#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100261 pr_err("Timeout waiting card ready\n");
Paul Burton56196822013-09-04 16:12:25 +0100262#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900263 return -ETIMEDOUT;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000264 }
265
266 return 0;
267}
268
Paul Burtonda61fa52013-09-09 15:30:26 +0100269int mmc_set_blocklen(struct mmc *mmc, int len)
Andy Fleming272cc702008-10-30 16:41:01 -0500270{
271 struct mmc_cmd cmd;
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200272 int err;
Andy Fleming272cc702008-10-30 16:41:01 -0500273
Andrew Gabbasov786e8f82014-12-01 06:59:09 -0600274 if (mmc->ddr_mode)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900275 return 0;
276
Andy Fleming272cc702008-10-30 16:41:01 -0500277 cmd.cmdidx = MMC_CMD_SET_BLOCKLEN;
278 cmd.resp_type = MMC_RSP_R1;
279 cmd.cmdarg = len;
Andy Fleming272cc702008-10-30 16:41:01 -0500280
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200281 err = mmc_send_cmd(mmc, &cmd, NULL);
282
283#ifdef CONFIG_MMC_QUIRKS
284 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SET_BLOCKLEN)) {
285 int retries = 4;
286 /*
287 * It has been seen that SET_BLOCKLEN may fail on the first
288 * attempt, let's try a few more time
289 */
290 do {
291 err = mmc_send_cmd(mmc, &cmd, NULL);
292 if (!err)
293 break;
294 } while (retries--);
295 }
296#endif
297
298 return err;
Andy Fleming272cc702008-10-30 16:41:01 -0500299}
300
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100301#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200302static const u8 tuning_blk_pattern_4bit[] = {
303 0xff, 0x0f, 0xff, 0x00, 0xff, 0xcc, 0xc3, 0xcc,
304 0xc3, 0x3c, 0xcc, 0xff, 0xfe, 0xff, 0xfe, 0xef,
305 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xfb, 0xff, 0xfb,
306 0xbf, 0xff, 0x7f, 0xff, 0x77, 0xf7, 0xbd, 0xef,
307 0xff, 0xf0, 0xff, 0xf0, 0x0f, 0xfc, 0xcc, 0x3c,
308 0xcc, 0x33, 0xcc, 0xcf, 0xff, 0xef, 0xff, 0xee,
309 0xff, 0xfd, 0xff, 0xfd, 0xdf, 0xff, 0xbf, 0xff,
310 0xbb, 0xff, 0xf7, 0xff, 0xf7, 0x7f, 0x7b, 0xde,
311};
312
313static const u8 tuning_blk_pattern_8bit[] = {
314 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
315 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc, 0xcc,
316 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff, 0xff,
317 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee, 0xff,
318 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd, 0xdd,
319 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff, 0xbb,
320 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff,
321 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee, 0xff,
322 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00,
323 0x00, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc,
324 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff,
325 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee,
326 0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd,
327 0xdd, 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff,
328 0xbb, 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff,
329 0xff, 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee,
330};
331
332int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error)
333{
334 struct mmc_cmd cmd;
335 struct mmc_data data;
336 const u8 *tuning_block_pattern;
337 int size, err;
338
339 if (mmc->bus_width == 8) {
340 tuning_block_pattern = tuning_blk_pattern_8bit;
341 size = sizeof(tuning_blk_pattern_8bit);
342 } else if (mmc->bus_width == 4) {
343 tuning_block_pattern = tuning_blk_pattern_4bit;
344 size = sizeof(tuning_blk_pattern_4bit);
345 } else {
346 return -EINVAL;
347 }
348
349 ALLOC_CACHE_ALIGN_BUFFER(u8, data_buf, size);
350
351 cmd.cmdidx = opcode;
352 cmd.cmdarg = 0;
353 cmd.resp_type = MMC_RSP_R1;
354
355 data.dest = (void *)data_buf;
356 data.blocks = 1;
357 data.blocksize = size;
358 data.flags = MMC_DATA_READ;
359
360 err = mmc_send_cmd(mmc, &cmd, &data);
361 if (err)
362 return err;
363
364 if (memcmp(data_buf, tuning_block_pattern, size))
365 return -EIO;
366
367 return 0;
368}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100369#endif
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200370
Sascha Silbeff8fef52013-06-14 13:07:25 +0200371static int mmc_read_blocks(struct mmc *mmc, void *dst, lbaint_t start,
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000372 lbaint_t blkcnt)
Andy Fleming272cc702008-10-30 16:41:01 -0500373{
374 struct mmc_cmd cmd;
375 struct mmc_data data;
376
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700377 if (blkcnt > 1)
378 cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK;
379 else
380 cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK;
Andy Fleming272cc702008-10-30 16:41:01 -0500381
382 if (mmc->high_capacity)
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700383 cmd.cmdarg = start;
Andy Fleming272cc702008-10-30 16:41:01 -0500384 else
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700385 cmd.cmdarg = start * mmc->read_bl_len;
Andy Fleming272cc702008-10-30 16:41:01 -0500386
387 cmd.resp_type = MMC_RSP_R1;
Andy Fleming272cc702008-10-30 16:41:01 -0500388
389 data.dest = dst;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700390 data.blocks = blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500391 data.blocksize = mmc->read_bl_len;
392 data.flags = MMC_DATA_READ;
393
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700394 if (mmc_send_cmd(mmc, &cmd, &data))
395 return 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500396
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700397 if (blkcnt > 1) {
398 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
399 cmd.cmdarg = 0;
400 cmd.resp_type = MMC_RSP_R1b;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700401 if (mmc_send_cmd(mmc, &cmd, NULL)) {
Paul Burton56196822013-09-04 16:12:25 +0100402#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100403 pr_err("mmc fail to send stop cmd\n");
Paul Burton56196822013-09-04 16:12:25 +0100404#endif
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700405 return 0;
406 }
Andy Fleming272cc702008-10-30 16:41:01 -0500407 }
408
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700409 return blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500410}
411
Simon Glassc4d660d2017-07-04 13:31:19 -0600412#if CONFIG_IS_ENABLED(BLK)
Simon Glass7dba0b92016-06-12 23:30:15 -0600413ulong mmc_bread(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600414#else
Simon Glass7dba0b92016-06-12 23:30:15 -0600415ulong mmc_bread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt,
416 void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600417#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500418{
Simon Glassc4d660d2017-07-04 13:31:19 -0600419#if CONFIG_IS_ENABLED(BLK)
Simon Glass33fb2112016-05-01 13:52:41 -0600420 struct blk_desc *block_dev = dev_get_uclass_platdata(dev);
421#endif
Simon Glassbcce53d2016-02-29 15:25:51 -0700422 int dev_num = block_dev->devnum;
Stephen Warren873cc1d2015-12-07 11:38:49 -0700423 int err;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700424 lbaint_t cur, blocks_todo = blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500425
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700426 if (blkcnt == 0)
427 return 0;
428
429 struct mmc *mmc = find_mmc_device(dev_num);
Andy Fleming272cc702008-10-30 16:41:01 -0500430 if (!mmc)
431 return 0;
432
Marek Vasutb5b838f2016-12-01 02:06:33 +0100433 if (CONFIG_IS_ENABLED(MMC_TINY))
434 err = mmc_switch_part(mmc, block_dev->hwpart);
435 else
436 err = blk_dselect_hwpart(block_dev, block_dev->hwpart);
437
Stephen Warren873cc1d2015-12-07 11:38:49 -0700438 if (err < 0)
439 return 0;
440
Simon Glassc40fdca2016-05-01 13:52:35 -0600441 if ((start + blkcnt) > block_dev->lba) {
Paul Burton56196822013-09-04 16:12:25 +0100442#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100443 pr_err("MMC: block number 0x" LBAF " exceeds max(0x" LBAF ")\n",
444 start + blkcnt, block_dev->lba);
Paul Burton56196822013-09-04 16:12:25 +0100445#endif
Lei Wend2bf29e2010-09-13 22:07:27 +0800446 return 0;
447 }
Andy Fleming272cc702008-10-30 16:41:01 -0500448
Simon Glass11692992015-06-23 15:38:50 -0600449 if (mmc_set_blocklen(mmc, mmc->read_bl_len)) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900450 pr_debug("%s: Failed to set blocklen\n", __func__);
Andy Fleming272cc702008-10-30 16:41:01 -0500451 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600452 }
Andy Fleming272cc702008-10-30 16:41:01 -0500453
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700454 do {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200455 cur = (blocks_todo > mmc->cfg->b_max) ?
456 mmc->cfg->b_max : blocks_todo;
Simon Glass11692992015-06-23 15:38:50 -0600457 if (mmc_read_blocks(mmc, dst, start, cur) != cur) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900458 pr_debug("%s: Failed to read blocks\n", __func__);
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700459 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600460 }
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700461 blocks_todo -= cur;
462 start += cur;
463 dst += cur * mmc->read_bl_len;
464 } while (blocks_todo > 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500465
466 return blkcnt;
467}
468
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000469static int mmc_go_idle(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -0500470{
471 struct mmc_cmd cmd;
472 int err;
473
474 udelay(1000);
475
476 cmd.cmdidx = MMC_CMD_GO_IDLE_STATE;
477 cmd.cmdarg = 0;
478 cmd.resp_type = MMC_RSP_NONE;
Andy Fleming272cc702008-10-30 16:41:01 -0500479
480 err = mmc_send_cmd(mmc, &cmd, NULL);
481
482 if (err)
483 return err;
484
485 udelay(2000);
486
487 return 0;
488}
489
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100490#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200491static int mmc_switch_voltage(struct mmc *mmc, int signal_voltage)
492{
493 struct mmc_cmd cmd;
494 int err = 0;
495
496 /*
497 * Send CMD11 only if the request is to switch the card to
498 * 1.8V signalling.
499 */
500 if (signal_voltage == MMC_SIGNAL_VOLTAGE_330)
501 return mmc_set_signal_voltage(mmc, signal_voltage);
502
503 cmd.cmdidx = SD_CMD_SWITCH_UHS18V;
504 cmd.cmdarg = 0;
505 cmd.resp_type = MMC_RSP_R1;
506
507 err = mmc_send_cmd(mmc, &cmd, NULL);
508 if (err)
509 return err;
510
511 if (!mmc_host_is_spi(mmc) && (cmd.response[0] & MMC_STATUS_ERROR))
512 return -EIO;
513
514 /*
515 * The card should drive cmd and dat[0:3] low immediately
516 * after the response of cmd11, but wait 100 us to be sure
517 */
518 err = mmc_wait_dat0(mmc, 0, 100);
519 if (err == -ENOSYS)
520 udelay(100);
521 else if (err)
522 return -ETIMEDOUT;
523
524 /*
525 * During a signal voltage level switch, the clock must be gated
526 * for 5 ms according to the SD spec
527 */
Jaehoon Chung65117182018-01-26 19:25:29 +0900528 mmc_set_clock(mmc, mmc->clock, MMC_CLK_DISABLE);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200529
530 err = mmc_set_signal_voltage(mmc, signal_voltage);
531 if (err)
532 return err;
533
534 /* Keep clock gated for at least 10 ms, though spec only says 5 ms */
535 mdelay(10);
Jaehoon Chung65117182018-01-26 19:25:29 +0900536 mmc_set_clock(mmc, mmc->clock, MMC_CLK_ENABLE);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200537
538 /*
539 * Failure to switch is indicated by the card holding
540 * dat[0:3] low. Wait for at least 1 ms according to spec
541 */
542 err = mmc_wait_dat0(mmc, 1, 1000);
543 if (err == -ENOSYS)
544 udelay(1000);
545 else if (err)
546 return -ETIMEDOUT;
547
548 return 0;
549}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100550#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200551
552static int sd_send_op_cond(struct mmc *mmc, bool uhs_en)
Andy Fleming272cc702008-10-30 16:41:01 -0500553{
554 int timeout = 1000;
555 int err;
556 struct mmc_cmd cmd;
557
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500558 while (1) {
Andy Fleming272cc702008-10-30 16:41:01 -0500559 cmd.cmdidx = MMC_CMD_APP_CMD;
560 cmd.resp_type = MMC_RSP_R1;
561 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500562
563 err = mmc_send_cmd(mmc, &cmd, NULL);
564
565 if (err)
566 return err;
567
568 cmd.cmdidx = SD_CMD_APP_SEND_OP_COND;
569 cmd.resp_type = MMC_RSP_R3;
Stefano Babic250de122010-01-20 18:20:39 +0100570
571 /*
572 * Most cards do not answer if some reserved bits
573 * in the ocr are set. However, Some controller
574 * can set bit 7 (reserved for low voltages), but
575 * how to manage low voltages SD card is not yet
576 * specified.
577 */
Thomas Choud52ebf12010-12-24 13:12:21 +0000578 cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 :
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200579 (mmc->cfg->voltages & 0xff8000);
Andy Fleming272cc702008-10-30 16:41:01 -0500580
581 if (mmc->version == SD_VERSION_2)
582 cmd.cmdarg |= OCR_HCS;
583
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200584 if (uhs_en)
585 cmd.cmdarg |= OCR_S18R;
586
Andy Fleming272cc702008-10-30 16:41:01 -0500587 err = mmc_send_cmd(mmc, &cmd, NULL);
588
589 if (err)
590 return err;
591
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500592 if (cmd.response[0] & OCR_BUSY)
593 break;
Andy Fleming272cc702008-10-30 16:41:01 -0500594
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500595 if (timeout-- <= 0)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900596 return -EOPNOTSUPP;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500597
598 udelay(1000);
599 }
Andy Fleming272cc702008-10-30 16:41:01 -0500600
601 if (mmc->version != SD_VERSION_2)
602 mmc->version = SD_VERSION_1_0;
603
Thomas Choud52ebf12010-12-24 13:12:21 +0000604 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
605 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
606 cmd.resp_type = MMC_RSP_R3;
607 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000608
609 err = mmc_send_cmd(mmc, &cmd, NULL);
610
611 if (err)
612 return err;
613 }
614
Rabin Vincent998be3d2009-04-05 13:30:56 +0530615 mmc->ocr = cmd.response[0];
Andy Fleming272cc702008-10-30 16:41:01 -0500616
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100617#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200618 if (uhs_en && !(mmc_host_is_spi(mmc)) && (cmd.response[0] & 0x41000000)
619 == 0x41000000) {
620 err = mmc_switch_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
621 if (err)
622 return err;
623 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100624#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200625
Andy Fleming272cc702008-10-30 16:41:01 -0500626 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
627 mmc->rca = 0;
628
629 return 0;
630}
631
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500632static int mmc_send_op_cond_iter(struct mmc *mmc, int use_arg)
Andy Fleming272cc702008-10-30 16:41:01 -0500633{
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500634 struct mmc_cmd cmd;
Andy Fleming272cc702008-10-30 16:41:01 -0500635 int err;
636
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500637 cmd.cmdidx = MMC_CMD_SEND_OP_COND;
638 cmd.resp_type = MMC_RSP_R3;
639 cmd.cmdarg = 0;
Rob Herring5a203972015-03-23 17:56:59 -0500640 if (use_arg && !mmc_host_is_spi(mmc))
641 cmd.cmdarg = OCR_HCS |
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200642 (mmc->cfg->voltages &
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500643 (mmc->ocr & OCR_VOLTAGE_MASK)) |
644 (mmc->ocr & OCR_ACCESS_MODE);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000645
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500646 err = mmc_send_cmd(mmc, &cmd, NULL);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000647 if (err)
648 return err;
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500649 mmc->ocr = cmd.response[0];
Che-Liang Chioue9550442012-11-28 15:21:13 +0000650 return 0;
651}
652
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200653static int mmc_send_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000654{
Che-Liang Chioue9550442012-11-28 15:21:13 +0000655 int err, i;
656
Andy Fleming272cc702008-10-30 16:41:01 -0500657 /* Some cards seem to need this */
658 mmc_go_idle(mmc);
659
Raffaele Recalcati31cacba2011-03-11 02:01:13 +0000660 /* Asking to the card its capabilities */
Che-Liang Chioue9550442012-11-28 15:21:13 +0000661 for (i = 0; i < 2; i++) {
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500662 err = mmc_send_op_cond_iter(mmc, i != 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500663 if (err)
664 return err;
665
Che-Liang Chioue9550442012-11-28 15:21:13 +0000666 /* exit if not busy (flag seems to be inverted) */
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500667 if (mmc->ocr & OCR_BUSY)
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500668 break;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000669 }
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500670 mmc->op_cond_pending = 1;
671 return 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000672}
Andy Fleming272cc702008-10-30 16:41:01 -0500673
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200674static int mmc_complete_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000675{
676 struct mmc_cmd cmd;
677 int timeout = 1000;
Vipul Kumar36332b62018-05-03 12:20:54 +0530678 ulong start;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000679 int err;
680
681 mmc->op_cond_pending = 0;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500682 if (!(mmc->ocr & OCR_BUSY)) {
Yangbo Lud188b112016-08-02 15:33:18 +0800683 /* Some cards seem to need this */
684 mmc_go_idle(mmc);
685
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500686 start = get_timer(0);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500687 while (1) {
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500688 err = mmc_send_op_cond_iter(mmc, 1);
689 if (err)
690 return err;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500691 if (mmc->ocr & OCR_BUSY)
692 break;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500693 if (get_timer(start) > timeout)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900694 return -EOPNOTSUPP;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500695 udelay(100);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500696 }
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500697 }
Andy Fleming272cc702008-10-30 16:41:01 -0500698
Thomas Choud52ebf12010-12-24 13:12:21 +0000699 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
700 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
701 cmd.resp_type = MMC_RSP_R3;
702 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000703
704 err = mmc_send_cmd(mmc, &cmd, NULL);
705
706 if (err)
707 return err;
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500708
709 mmc->ocr = cmd.response[0];
Thomas Choud52ebf12010-12-24 13:12:21 +0000710 }
711
Andy Fleming272cc702008-10-30 16:41:01 -0500712 mmc->version = MMC_VERSION_UNKNOWN;
Andy Fleming272cc702008-10-30 16:41:01 -0500713
714 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
Stephen Warrendef816a2014-01-30 16:11:12 -0700715 mmc->rca = 1;
Andy Fleming272cc702008-10-30 16:41:01 -0500716
717 return 0;
718}
719
720
Heinrich Schuchardt1601ea22020-03-30 07:24:17 +0200721int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd)
Andy Fleming272cc702008-10-30 16:41:01 -0500722{
723 struct mmc_cmd cmd;
724 struct mmc_data data;
725 int err;
726
727 /* Get the Card Status Register */
728 cmd.cmdidx = MMC_CMD_SEND_EXT_CSD;
729 cmd.resp_type = MMC_RSP_R1;
730 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500731
Yoshihiro Shimodacdfd1ac2012-06-07 19:09:11 +0000732 data.dest = (char *)ext_csd;
Andy Fleming272cc702008-10-30 16:41:01 -0500733 data.blocks = 1;
Simon Glass8bfa1952013-04-03 08:54:30 +0000734 data.blocksize = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -0500735 data.flags = MMC_DATA_READ;
736
737 err = mmc_send_cmd(mmc, &cmd, &data);
738
739 return err;
740}
741
Marek Vasut68925502019-02-06 11:34:27 +0100742static int __mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value,
743 bool send_status)
Andy Fleming272cc702008-10-30 16:41:01 -0500744{
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200745 unsigned int status, start;
Andy Fleming272cc702008-10-30 16:41:01 -0500746 struct mmc_cmd cmd;
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300747 int timeout_ms = DEFAULT_CMD6_TIMEOUT_MS;
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +0200748 bool is_part_switch = (set == EXT_CSD_CMD_SET_NORMAL) &&
749 (index == EXT_CSD_PART_CONF);
Maxime Riparda9003dc2016-11-04 16:18:08 +0100750 int retries = 3;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000751 int ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500752
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +0200753 if (mmc->gen_cmd6_time)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300754 timeout_ms = mmc->gen_cmd6_time * 10;
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +0200755
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +0200756 if (is_part_switch && mmc->part_switch_time)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300757 timeout_ms = mmc->part_switch_time * 10;
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +0200758
Andy Fleming272cc702008-10-30 16:41:01 -0500759 cmd.cmdidx = MMC_CMD_SWITCH;
760 cmd.resp_type = MMC_RSP_R1b;
761 cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000762 (index << 16) |
763 (value << 8);
Andy Fleming272cc702008-10-30 16:41:01 -0500764
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200765 do {
Maxime Riparda9003dc2016-11-04 16:18:08 +0100766 ret = mmc_send_cmd(mmc, &cmd, NULL);
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200767 } while (ret && retries-- > 0);
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000768
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200769 if (ret)
770 return ret;
771
772 start = get_timer(0);
773
774 /* poll dat0 for rdy/buys status */
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300775 ret = mmc_wait_dat0(mmc, 1, timeout_ms * 1000);
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200776 if (ret && ret != -ENOSYS)
777 return ret;
778
779 /*
780 * In cases when not allowed to poll by using CMD13 or because we aren't
781 * capable of polling by using mmc_wait_dat0, then rely on waiting the
782 * stated timeout to be sufficient.
783 */
784 if (ret == -ENOSYS && !send_status)
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300785 mdelay(timeout_ms);
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200786
787 /* Finally wait until the card is ready or indicates a failure
788 * to switch. It doesn't hurt to use CMD13 here even if send_status
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300789 * is false, because by now (after 'timeout_ms' ms) the bus should be
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200790 * reliable.
791 */
792 do {
793 ret = mmc_send_status(mmc, &status);
794
795 if (!ret && (status & MMC_STATUS_SWITCH_ERROR)) {
796 pr_debug("switch failed %d/%d/0x%x !\n", set, index,
797 value);
798 return -EIO;
Maxime Riparda9003dc2016-11-04 16:18:08 +0100799 }
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200800 if (!ret && (status & MMC_STATUS_RDY_FOR_DATA))
Marek Vasut68925502019-02-06 11:34:27 +0100801 return 0;
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200802 udelay(100);
Sam Protsenko6cf8a902019-08-14 22:52:51 +0300803 } while (get_timer(start) < timeout_ms);
Marek Vasut68925502019-02-06 11:34:27 +0100804
Jean-Jacques Hiblotbb98b8c2019-07-02 10:53:56 +0200805 return -ETIMEDOUT;
Andy Fleming272cc702008-10-30 16:41:01 -0500806}
807
Marek Vasut68925502019-02-06 11:34:27 +0100808int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value)
809{
810 return __mmc_switch(mmc, set, index, value, true);
811}
812
Marek Vasut62d77ce2018-04-15 00:37:11 +0200813#if !CONFIG_IS_ENABLED(MMC_TINY)
Marek Vasutb9a2a0e2019-01-03 21:19:24 +0100814static int mmc_set_card_speed(struct mmc *mmc, enum bus_mode mode,
815 bool hsdowngrade)
Andy Fleming272cc702008-10-30 16:41:01 -0500816{
Andy Fleming272cc702008-10-30 16:41:01 -0500817 int err;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200818 int speed_bits;
819
820 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
821
822 switch (mode) {
823 case MMC_HS:
824 case MMC_HS_52:
825 case MMC_DDR_52:
826 speed_bits = EXT_CSD_TIMING_HS;
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200827 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100828#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200829 case MMC_HS_200:
830 speed_bits = EXT_CSD_TIMING_HS200;
831 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100832#endif
Peng Fan3dd26262018-08-10 14:07:54 +0800833#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
834 case MMC_HS_400:
835 speed_bits = EXT_CSD_TIMING_HS400;
836 break;
837#endif
Peng Fan44acd492019-07-10 14:43:07 +0800838#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
839 case MMC_HS_400_ES:
840 speed_bits = EXT_CSD_TIMING_HS400;
841 break;
842#endif
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200843 case MMC_LEGACY:
844 speed_bits = EXT_CSD_TIMING_LEGACY;
845 break;
846 default:
847 return -EINVAL;
848 }
Marek Vasut68925502019-02-06 11:34:27 +0100849
850 err = __mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING,
851 speed_bits, !hsdowngrade);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200852 if (err)
853 return err;
854
Marek Vasutb9a2a0e2019-01-03 21:19:24 +0100855#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
856 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
857 /*
858 * In case the eMMC is in HS200/HS400 mode and we are downgrading
859 * to HS mode, the card clock are still running much faster than
860 * the supported HS mode clock, so we can not reliably read out
861 * Extended CSD. Reconfigure the controller to run at HS mode.
862 */
863 if (hsdowngrade) {
864 mmc_select_mode(mmc, MMC_HS);
865 mmc_set_clock(mmc, mmc_mode2freq(mmc, MMC_HS), false);
866 }
867#endif
868
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200869 if ((mode == MMC_HS) || (mode == MMC_HS_52)) {
870 /* Now check to see that it worked */
871 err = mmc_send_ext_csd(mmc, test_csd);
872 if (err)
873 return err;
874
875 /* No high-speed support */
876 if (!test_csd[EXT_CSD_HS_TIMING])
877 return -ENOTSUPP;
878 }
879
880 return 0;
881}
882
883static int mmc_get_capabilities(struct mmc *mmc)
884{
885 u8 *ext_csd = mmc->ext_csd;
886 char cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500887
Jean-Jacques Hiblot00e446f2017-11-30 17:43:56 +0100888 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -0500889
Thomas Choud52ebf12010-12-24 13:12:21 +0000890 if (mmc_host_is_spi(mmc))
891 return 0;
892
Andy Fleming272cc702008-10-30 16:41:01 -0500893 /* Only version 4 supports high-speed */
894 if (mmc->version < MMC_VERSION_4)
895 return 0;
896
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200897 if (!ext_csd) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100898 pr_err("No ext_csd found!\n"); /* this should enver happen */
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200899 return -ENOTSUPP;
900 }
901
Andrew Gabbasovfc5b32f2014-12-25 10:22:25 -0600902 mmc->card_caps |= MMC_MODE_4BIT | MMC_MODE_8BIT;
903
Peng Fan3dd26262018-08-10 14:07:54 +0800904 cardtype = ext_csd[EXT_CSD_CARD_TYPE];
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +0200905 mmc->cardtype = cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500906
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100907#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200908 if (cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V |
909 EXT_CSD_CARD_TYPE_HS200_1_8V)) {
910 mmc->card_caps |= MMC_MODE_HS200;
911 }
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100912#endif
Peng Fan44acd492019-07-10 14:43:07 +0800913#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT) || \
914 CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
Peng Fan3dd26262018-08-10 14:07:54 +0800915 if (cardtype & (EXT_CSD_CARD_TYPE_HS400_1_2V |
916 EXT_CSD_CARD_TYPE_HS400_1_8V)) {
917 mmc->card_caps |= MMC_MODE_HS400;
918 }
919#endif
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900920 if (cardtype & EXT_CSD_CARD_TYPE_52) {
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200921 if (cardtype & EXT_CSD_CARD_TYPE_DDR_52)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900922 mmc->card_caps |= MMC_MODE_DDR_52MHz;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200923 mmc->card_caps |= MMC_MODE_HS_52MHz;
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900924 }
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200925 if (cardtype & EXT_CSD_CARD_TYPE_26)
926 mmc->card_caps |= MMC_MODE_HS;
Andy Fleming272cc702008-10-30 16:41:01 -0500927
Peng Fan44acd492019-07-10 14:43:07 +0800928#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
929 if (ext_csd[EXT_CSD_STROBE_SUPPORT] &&
930 (mmc->card_caps & MMC_MODE_HS400)) {
931 mmc->card_caps |= MMC_MODE_HS400_ES;
932 }
933#endif
934
Andy Fleming272cc702008-10-30 16:41:01 -0500935 return 0;
936}
Marek Vasut62d77ce2018-04-15 00:37:11 +0200937#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500938
Stephen Warrenf866a462013-06-11 15:14:01 -0600939static int mmc_set_capacity(struct mmc *mmc, int part_num)
940{
941 switch (part_num) {
942 case 0:
943 mmc->capacity = mmc->capacity_user;
944 break;
945 case 1:
946 case 2:
947 mmc->capacity = mmc->capacity_boot;
948 break;
949 case 3:
950 mmc->capacity = mmc->capacity_rpmb;
951 break;
952 case 4:
953 case 5:
954 case 6:
955 case 7:
956 mmc->capacity = mmc->capacity_gp[part_num - 4];
957 break;
958 default:
959 return -1;
960 }
961
Simon Glassc40fdca2016-05-01 13:52:35 -0600962 mmc_get_blk_desc(mmc)->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Stephen Warrenf866a462013-06-11 15:14:01 -0600963
964 return 0;
965}
966
Simon Glass7dba0b92016-06-12 23:30:15 -0600967int mmc_switch_part(struct mmc *mmc, unsigned int part_num)
Lei Wenbc897b12011-05-02 16:26:26 +0000968{
Stephen Warrenf866a462013-06-11 15:14:01 -0600969 int ret;
Jean-Jacques Hiblot05384772019-07-02 10:53:58 +0200970 int retry = 3;
Lei Wenbc897b12011-05-02 16:26:26 +0000971
Jean-Jacques Hiblot05384772019-07-02 10:53:58 +0200972 do {
973 ret = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
974 EXT_CSD_PART_CONF,
975 (mmc->part_config & ~PART_ACCESS_MASK)
976 | (part_num & PART_ACCESS_MASK));
977 } while (ret && retry--);
Stephen Warrenf866a462013-06-11 15:14:01 -0600978
Peter Bigot6dc93e72014-09-02 18:31:23 -0500979 /*
980 * Set the capacity if the switch succeeded or was intended
981 * to return to representing the raw device.
982 */
Stephen Warren873cc1d2015-12-07 11:38:49 -0700983 if ((ret == 0) || ((ret == -ENODEV) && (part_num == 0))) {
Peter Bigot6dc93e72014-09-02 18:31:23 -0500984 ret = mmc_set_capacity(mmc, part_num);
Simon Glassfdbb1392016-05-01 13:52:37 -0600985 mmc_get_blk_desc(mmc)->hwpart = part_num;
Stephen Warren873cc1d2015-12-07 11:38:49 -0700986 }
Peter Bigot6dc93e72014-09-02 18:31:23 -0500987
988 return ret;
Lei Wenbc897b12011-05-02 16:26:26 +0000989}
990
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100991#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100992int mmc_hwpart_config(struct mmc *mmc,
993 const struct mmc_hwpart_conf *conf,
994 enum mmc_hwpart_conf_mode mode)
995{
996 u8 part_attrs = 0;
997 u32 enh_size_mult;
998 u32 enh_start_addr;
999 u32 gp_size_mult[4];
1000 u32 max_enh_size_mult;
1001 u32 tot_enh_size_mult = 0;
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001002 u8 wr_rel_set;
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001003 int i, pidx, err;
1004 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
1005
1006 if (mode < MMC_HWPART_CONF_CHECK || mode > MMC_HWPART_CONF_COMPLETE)
1007 return -EINVAL;
1008
1009 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001010 pr_err("eMMC >= 4.4 required for enhanced user data area\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001011 return -EMEDIUMTYPE;
1012 }
1013
1014 if (!(mmc->part_support & PART_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001015 pr_err("Card does not support partitioning\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001016 return -EMEDIUMTYPE;
1017 }
1018
1019 if (!mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001020 pr_err("Card does not define HC WP group size\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001021 return -EMEDIUMTYPE;
1022 }
1023
1024 /* check partition alignment and total enhanced size */
1025 if (conf->user.enh_size) {
1026 if (conf->user.enh_size % mmc->hc_wp_grp_size ||
1027 conf->user.enh_start % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001028 pr_err("User data enhanced area not HC WP group "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001029 "size aligned\n");
1030 return -EINVAL;
1031 }
1032 part_attrs |= EXT_CSD_ENH_USR;
1033 enh_size_mult = conf->user.enh_size / mmc->hc_wp_grp_size;
1034 if (mmc->high_capacity) {
1035 enh_start_addr = conf->user.enh_start;
1036 } else {
1037 enh_start_addr = (conf->user.enh_start << 9);
1038 }
1039 } else {
1040 enh_size_mult = 0;
1041 enh_start_addr = 0;
1042 }
1043 tot_enh_size_mult += enh_size_mult;
1044
1045 for (pidx = 0; pidx < 4; pidx++) {
1046 if (conf->gp_part[pidx].size % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001047 pr_err("GP%i partition not HC WP group size "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001048 "aligned\n", pidx+1);
1049 return -EINVAL;
1050 }
1051 gp_size_mult[pidx] = conf->gp_part[pidx].size / mmc->hc_wp_grp_size;
1052 if (conf->gp_part[pidx].size && conf->gp_part[pidx].enhanced) {
1053 part_attrs |= EXT_CSD_ENH_GP(pidx);
1054 tot_enh_size_mult += gp_size_mult[pidx];
1055 }
1056 }
1057
1058 if (part_attrs && ! (mmc->part_support & ENHNCD_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001059 pr_err("Card does not support enhanced attribute\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001060 return -EMEDIUMTYPE;
1061 }
1062
1063 err = mmc_send_ext_csd(mmc, ext_csd);
1064 if (err)
1065 return err;
1066
1067 max_enh_size_mult =
1068 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+2] << 16) +
1069 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+1] << 8) +
1070 ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT];
1071 if (tot_enh_size_mult > max_enh_size_mult) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001072 pr_err("Total enhanced size exceeds maximum (%u > %u)\n",
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001073 tot_enh_size_mult, max_enh_size_mult);
1074 return -EMEDIUMTYPE;
1075 }
1076
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001077 /* The default value of EXT_CSD_WR_REL_SET is device
1078 * dependent, the values can only be changed if the
1079 * EXT_CSD_HS_CTRL_REL bit is set. The values can be
1080 * changed only once and before partitioning is completed. */
1081 wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
1082 if (conf->user.wr_rel_change) {
1083 if (conf->user.wr_rel_set)
1084 wr_rel_set |= EXT_CSD_WR_DATA_REL_USR;
1085 else
1086 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_USR;
1087 }
1088 for (pidx = 0; pidx < 4; pidx++) {
1089 if (conf->gp_part[pidx].wr_rel_change) {
1090 if (conf->gp_part[pidx].wr_rel_set)
1091 wr_rel_set |= EXT_CSD_WR_DATA_REL_GP(pidx);
1092 else
1093 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_GP(pidx);
1094 }
1095 }
1096
1097 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET] &&
1098 !(ext_csd[EXT_CSD_WR_REL_PARAM] & EXT_CSD_HS_CTRL_REL)) {
1099 puts("Card does not support host controlled partition write "
1100 "reliability settings\n");
1101 return -EMEDIUMTYPE;
1102 }
1103
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001104 if (ext_csd[EXT_CSD_PARTITION_SETTING] &
1105 EXT_CSD_PARTITION_SETTING_COMPLETED) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001106 pr_err("Card already partitioned\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001107 return -EPERM;
1108 }
1109
1110 if (mode == MMC_HWPART_CONF_CHECK)
1111 return 0;
1112
1113 /* Partitioning requires high-capacity size definitions */
1114 if (!(ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01)) {
1115 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1116 EXT_CSD_ERASE_GROUP_DEF, 1);
1117
1118 if (err)
1119 return err;
1120
1121 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
1122
Jaehoon Chung4af66592020-01-17 15:06:54 +09001123#if CONFIG_IS_ENABLED(MMC_WRITE)
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001124 /* update erase group size to be high-capacity */
1125 mmc->erase_grp_size =
1126 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
Jaehoon Chung4af66592020-01-17 15:06:54 +09001127#endif
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001128
1129 }
1130
1131 /* all OK, write the configuration */
1132 for (i = 0; i < 4; i++) {
1133 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1134 EXT_CSD_ENH_START_ADDR+i,
1135 (enh_start_addr >> (i*8)) & 0xFF);
1136 if (err)
1137 return err;
1138 }
1139 for (i = 0; i < 3; i++) {
1140 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1141 EXT_CSD_ENH_SIZE_MULT+i,
1142 (enh_size_mult >> (i*8)) & 0xFF);
1143 if (err)
1144 return err;
1145 }
1146 for (pidx = 0; pidx < 4; pidx++) {
1147 for (i = 0; i < 3; i++) {
1148 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1149 EXT_CSD_GP_SIZE_MULT+pidx*3+i,
1150 (gp_size_mult[pidx] >> (i*8)) & 0xFF);
1151 if (err)
1152 return err;
1153 }
1154 }
1155 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1156 EXT_CSD_PARTITIONS_ATTRIBUTE, part_attrs);
1157 if (err)
1158 return err;
1159
1160 if (mode == MMC_HWPART_CONF_SET)
1161 return 0;
1162
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001163 /* The WR_REL_SET is a write-once register but shall be
1164 * written before setting PART_SETTING_COMPLETED. As it is
1165 * write-once we can only write it when completing the
1166 * partitioning. */
1167 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET]) {
1168 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1169 EXT_CSD_WR_REL_SET, wr_rel_set);
1170 if (err)
1171 return err;
1172 }
1173
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001174 /* Setting PART_SETTING_COMPLETED confirms the partition
1175 * configuration but it only becomes effective after power
1176 * cycle, so we do not adjust the partition related settings
1177 * in the mmc struct. */
1178
1179 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1180 EXT_CSD_PARTITION_SETTING,
1181 EXT_CSD_PARTITION_SETTING_COMPLETED);
1182 if (err)
1183 return err;
1184
1185 return 0;
1186}
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +01001187#endif
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001188
Simon Glasse7881d82017-07-29 11:35:31 -06001189#if !CONFIG_IS_ENABLED(DM_MMC)
Thierry Reding48972d92012-01-02 01:15:37 +00001190int mmc_getcd(struct mmc *mmc)
1191{
1192 int cd;
1193
1194 cd = board_mmc_getcd(mmc);
1195
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001196 if (cd < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001197 if (mmc->cfg->ops->getcd)
1198 cd = mmc->cfg->ops->getcd(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001199 else
1200 cd = 1;
1201 }
Thierry Reding48972d92012-01-02 01:15:37 +00001202
1203 return cd;
1204}
Simon Glass8ca51e52016-06-12 23:30:22 -06001205#endif
Thierry Reding48972d92012-01-02 01:15:37 +00001206
Marek Vasut62d77ce2018-04-15 00:37:11 +02001207#if !CONFIG_IS_ENABLED(MMC_TINY)
Kim Phillipsfdbb8732012-10-29 13:34:43 +00001208static int sd_switch(struct mmc *mmc, int mode, int group, u8 value, u8 *resp)
Andy Fleming272cc702008-10-30 16:41:01 -05001209{
1210 struct mmc_cmd cmd;
1211 struct mmc_data data;
1212
1213 /* Switch the frequency */
1214 cmd.cmdidx = SD_CMD_SWITCH_FUNC;
1215 cmd.resp_type = MMC_RSP_R1;
1216 cmd.cmdarg = (mode << 31) | 0xffffff;
1217 cmd.cmdarg &= ~(0xf << (group * 4));
1218 cmd.cmdarg |= value << (group * 4);
Andy Fleming272cc702008-10-30 16:41:01 -05001219
1220 data.dest = (char *)resp;
1221 data.blocksize = 64;
1222 data.blocks = 1;
1223 data.flags = MMC_DATA_READ;
1224
1225 return mmc_send_cmd(mmc, &cmd, &data);
1226}
1227
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001228static int sd_get_capabilities(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001229{
1230 int err;
1231 struct mmc_cmd cmd;
Suniel Mahesh18e7c8f2017-10-05 11:32:00 +05301232 ALLOC_CACHE_ALIGN_BUFFER(__be32, scr, 2);
1233 ALLOC_CACHE_ALIGN_BUFFER(__be32, switch_status, 16);
Andy Fleming272cc702008-10-30 16:41:01 -05001234 struct mmc_data data;
1235 int timeout;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001236#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001237 u32 sd3_bus_mode;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001238#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001239
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301240 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05001241
Thomas Choud52ebf12010-12-24 13:12:21 +00001242 if (mmc_host_is_spi(mmc))
1243 return 0;
1244
Andy Fleming272cc702008-10-30 16:41:01 -05001245 /* Read the SCR to find out if this card supports higher speeds */
1246 cmd.cmdidx = MMC_CMD_APP_CMD;
1247 cmd.resp_type = MMC_RSP_R1;
1248 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05001249
1250 err = mmc_send_cmd(mmc, &cmd, NULL);
1251
1252 if (err)
1253 return err;
1254
1255 cmd.cmdidx = SD_CMD_APP_SEND_SCR;
1256 cmd.resp_type = MMC_RSP_R1;
1257 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05001258
1259 timeout = 3;
1260
1261retry_scr:
Anton staaff781dd32011-10-03 13:54:59 +00001262 data.dest = (char *)scr;
Andy Fleming272cc702008-10-30 16:41:01 -05001263 data.blocksize = 8;
1264 data.blocks = 1;
1265 data.flags = MMC_DATA_READ;
1266
1267 err = mmc_send_cmd(mmc, &cmd, &data);
1268
1269 if (err) {
1270 if (timeout--)
1271 goto retry_scr;
1272
1273 return err;
1274 }
1275
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001276 mmc->scr[0] = __be32_to_cpu(scr[0]);
1277 mmc->scr[1] = __be32_to_cpu(scr[1]);
Andy Fleming272cc702008-10-30 16:41:01 -05001278
1279 switch ((mmc->scr[0] >> 24) & 0xf) {
Bin Meng53e8e402016-03-17 21:53:13 -07001280 case 0:
1281 mmc->version = SD_VERSION_1_0;
1282 break;
1283 case 1:
1284 mmc->version = SD_VERSION_1_10;
1285 break;
1286 case 2:
1287 mmc->version = SD_VERSION_2;
1288 if ((mmc->scr[0] >> 15) & 0x1)
1289 mmc->version = SD_VERSION_3;
1290 break;
1291 default:
1292 mmc->version = SD_VERSION_1_0;
1293 break;
Andy Fleming272cc702008-10-30 16:41:01 -05001294 }
1295
Alagu Sankarb44c7082010-05-12 15:08:24 +05301296 if (mmc->scr[0] & SD_DATA_4BIT)
1297 mmc->card_caps |= MMC_MODE_4BIT;
1298
Andy Fleming272cc702008-10-30 16:41:01 -05001299 /* Version 1.0 doesn't support switching */
1300 if (mmc->version == SD_VERSION_1_0)
1301 return 0;
1302
1303 timeout = 4;
1304 while (timeout--) {
1305 err = sd_switch(mmc, SD_SWITCH_CHECK, 0, 1,
Anton staaff781dd32011-10-03 13:54:59 +00001306 (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001307
1308 if (err)
1309 return err;
1310
1311 /* The high-speed function is busy. Try again */
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001312 if (!(__be32_to_cpu(switch_status[7]) & SD_HIGHSPEED_BUSY))
Andy Fleming272cc702008-10-30 16:41:01 -05001313 break;
1314 }
1315
Andy Fleming272cc702008-10-30 16:41:01 -05001316 /* If high-speed isn't supported, we return */
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001317 if (__be32_to_cpu(switch_status[3]) & SD_HIGHSPEED_SUPPORTED)
1318 mmc->card_caps |= MMC_CAP(SD_HS);
Andy Fleming272cc702008-10-30 16:41:01 -05001319
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001320#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001321 /* Version before 3.0 don't support UHS modes */
1322 if (mmc->version < SD_VERSION_3)
1323 return 0;
1324
1325 sd3_bus_mode = __be32_to_cpu(switch_status[3]) >> 16 & 0x1f;
1326 if (sd3_bus_mode & SD_MODE_UHS_SDR104)
1327 mmc->card_caps |= MMC_CAP(UHS_SDR104);
1328 if (sd3_bus_mode & SD_MODE_UHS_SDR50)
1329 mmc->card_caps |= MMC_CAP(UHS_SDR50);
1330 if (sd3_bus_mode & SD_MODE_UHS_SDR25)
1331 mmc->card_caps |= MMC_CAP(UHS_SDR25);
1332 if (sd3_bus_mode & SD_MODE_UHS_SDR12)
1333 mmc->card_caps |= MMC_CAP(UHS_SDR12);
1334 if (sd3_bus_mode & SD_MODE_UHS_DDR50)
1335 mmc->card_caps |= MMC_CAP(UHS_DDR50);
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001336#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001337
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001338 return 0;
1339}
1340
1341static int sd_set_card_speed(struct mmc *mmc, enum bus_mode mode)
1342{
1343 int err;
1344
1345 ALLOC_CACHE_ALIGN_BUFFER(uint, switch_status, 16);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001346 int speed;
Macpaul Lin2c3fbf42011-11-28 16:31:09 +00001347
Marek Vasutcf345762018-11-18 03:25:08 +01001348 /* SD version 1.00 and 1.01 does not support CMD 6 */
1349 if (mmc->version == SD_VERSION_1_0)
1350 return 0;
1351
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001352 switch (mode) {
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301353 case MMC_LEGACY:
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001354 speed = UHS_SDR12_BUS_SPEED;
1355 break;
1356 case SD_HS:
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +01001357 speed = HIGH_SPEED_BUS_SPEED;
1358 break;
1359#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1360 case UHS_SDR12:
1361 speed = UHS_SDR12_BUS_SPEED;
1362 break;
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001363 case UHS_SDR25:
1364 speed = UHS_SDR25_BUS_SPEED;
1365 break;
1366 case UHS_SDR50:
1367 speed = UHS_SDR50_BUS_SPEED;
1368 break;
1369 case UHS_DDR50:
1370 speed = UHS_DDR50_BUS_SPEED;
1371 break;
1372 case UHS_SDR104:
1373 speed = UHS_SDR104_BUS_SPEED;
1374 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +01001375#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001376 default:
1377 return -EINVAL;
1378 }
1379
1380 err = sd_switch(mmc, SD_SWITCH_SWITCH, 0, speed, (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001381 if (err)
1382 return err;
1383
Jean-Jacques Hiblota0276f32018-02-09 12:09:27 +01001384 if (((__be32_to_cpu(switch_status[4]) >> 24) & 0xF) != speed)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001385 return -ENOTSUPP;
1386
1387 return 0;
1388}
1389
Marek Vasutec360e62018-04-15 00:36:45 +02001390static int sd_select_bus_width(struct mmc *mmc, int w)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001391{
1392 int err;
1393 struct mmc_cmd cmd;
1394
1395 if ((w != 4) && (w != 1))
1396 return -EINVAL;
1397
1398 cmd.cmdidx = MMC_CMD_APP_CMD;
1399 cmd.resp_type = MMC_RSP_R1;
1400 cmd.cmdarg = mmc->rca << 16;
1401
1402 err = mmc_send_cmd(mmc, &cmd, NULL);
1403 if (err)
1404 return err;
1405
1406 cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH;
1407 cmd.resp_type = MMC_RSP_R1;
1408 if (w == 4)
1409 cmd.cmdarg = 2;
1410 else if (w == 1)
1411 cmd.cmdarg = 0;
1412 err = mmc_send_cmd(mmc, &cmd, NULL);
1413 if (err)
1414 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05001415
1416 return 0;
1417}
Marek Vasut62d77ce2018-04-15 00:37:11 +02001418#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001419
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001420#if CONFIG_IS_ENABLED(MMC_WRITE)
Peng Fan3697e592016-09-01 11:13:38 +08001421static int sd_read_ssr(struct mmc *mmc)
1422{
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001423 static const unsigned int sd_au_size[] = {
1424 0, SZ_16K / 512, SZ_32K / 512,
1425 SZ_64K / 512, SZ_128K / 512, SZ_256K / 512,
1426 SZ_512K / 512, SZ_1M / 512, SZ_2M / 512,
1427 SZ_4M / 512, SZ_8M / 512, (SZ_8M + SZ_4M) / 512,
1428 SZ_16M / 512, (SZ_16M + SZ_8M) / 512, SZ_32M / 512,
1429 SZ_64M / 512,
1430 };
Peng Fan3697e592016-09-01 11:13:38 +08001431 int err, i;
1432 struct mmc_cmd cmd;
1433 ALLOC_CACHE_ALIGN_BUFFER(uint, ssr, 16);
1434 struct mmc_data data;
1435 int timeout = 3;
1436 unsigned int au, eo, et, es;
1437
1438 cmd.cmdidx = MMC_CMD_APP_CMD;
1439 cmd.resp_type = MMC_RSP_R1;
1440 cmd.cmdarg = mmc->rca << 16;
1441
1442 err = mmc_send_cmd(mmc, &cmd, NULL);
Joel Johnsond4a5fa32020-01-11 09:08:14 -07001443#ifdef CONFIG_MMC_QUIRKS
1444 if (err && (mmc->quirks & MMC_QUIRK_RETRY_APP_CMD)) {
1445 int retries = 4;
1446 /*
1447 * It has been seen that APP_CMD may fail on the first
1448 * attempt, let's try a few more times
1449 */
1450 do {
1451 err = mmc_send_cmd(mmc, &cmd, NULL);
1452 if (!err)
1453 break;
1454 } while (retries--);
1455 }
1456#endif
Peng Fan3697e592016-09-01 11:13:38 +08001457 if (err)
1458 return err;
1459
1460 cmd.cmdidx = SD_CMD_APP_SD_STATUS;
1461 cmd.resp_type = MMC_RSP_R1;
1462 cmd.cmdarg = 0;
1463
1464retry_ssr:
1465 data.dest = (char *)ssr;
1466 data.blocksize = 64;
1467 data.blocks = 1;
1468 data.flags = MMC_DATA_READ;
1469
1470 err = mmc_send_cmd(mmc, &cmd, &data);
1471 if (err) {
1472 if (timeout--)
1473 goto retry_ssr;
1474
1475 return err;
1476 }
1477
1478 for (i = 0; i < 16; i++)
1479 ssr[i] = be32_to_cpu(ssr[i]);
1480
1481 au = (ssr[2] >> 12) & 0xF;
1482 if ((au <= 9) || (mmc->version == SD_VERSION_3)) {
1483 mmc->ssr.au = sd_au_size[au];
1484 es = (ssr[3] >> 24) & 0xFF;
1485 es |= (ssr[2] & 0xFF) << 8;
1486 et = (ssr[3] >> 18) & 0x3F;
1487 if (es && et) {
1488 eo = (ssr[3] >> 16) & 0x3;
1489 mmc->ssr.erase_timeout = (et * 1000) / es;
1490 mmc->ssr.erase_offset = eo * 1000;
1491 }
1492 } else {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001493 pr_debug("Invalid Allocation Unit Size.\n");
Peng Fan3697e592016-09-01 11:13:38 +08001494 }
1495
1496 return 0;
1497}
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001498#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001499/* frequency bases */
1500/* divided by 10 to be nice to platforms without floating point */
Mike Frysinger5f837c22010-10-20 01:15:53 +00001501static const int fbase[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001502 10000,
1503 100000,
1504 1000000,
1505 10000000,
1506};
1507
1508/* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
1509 * to platforms without floating point.
1510 */
Simon Glass61fe0762016-05-14 14:02:57 -06001511static const u8 multipliers[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001512 0, /* reserved */
1513 10,
1514 12,
1515 13,
1516 15,
1517 20,
1518 25,
1519 30,
1520 35,
1521 40,
1522 45,
1523 50,
1524 55,
1525 60,
1526 70,
1527 80,
1528};
1529
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001530static inline int bus_width(uint cap)
1531{
1532 if (cap == MMC_MODE_8BIT)
1533 return 8;
1534 if (cap == MMC_MODE_4BIT)
1535 return 4;
1536 if (cap == MMC_MODE_1BIT)
1537 return 1;
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001538 pr_warn("invalid bus witdh capability 0x%x\n", cap);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001539 return 0;
1540}
1541
Simon Glasse7881d82017-07-29 11:35:31 -06001542#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001543#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001544static int mmc_execute_tuning(struct mmc *mmc, uint opcode)
1545{
1546 return -ENOTSUPP;
1547}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001548#endif
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001549
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001550static int mmc_set_ios(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001551{
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001552 int ret = 0;
1553
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001554 if (mmc->cfg->ops->set_ios)
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001555 ret = mmc->cfg->ops->set_ios(mmc);
1556
1557 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05001558}
Yann Gautier3602a562019-09-19 17:56:12 +02001559
1560static int mmc_host_power_cycle(struct mmc *mmc)
1561{
1562 int ret = 0;
1563
1564 if (mmc->cfg->ops->host_power_cycle)
1565 ret = mmc->cfg->ops->host_power_cycle(mmc);
1566
1567 return ret;
1568}
Simon Glass8ca51e52016-06-12 23:30:22 -06001569#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001570
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001571int mmc_set_clock(struct mmc *mmc, uint clock, bool disable)
Andy Fleming272cc702008-10-30 16:41:01 -05001572{
Jaehoon Chungc0fafe62018-01-23 14:04:30 +09001573 if (!disable) {
Jaehoon Chung9546eb92018-01-17 19:36:58 +09001574 if (clock > mmc->cfg->f_max)
1575 clock = mmc->cfg->f_max;
Andy Fleming272cc702008-10-30 16:41:01 -05001576
Jaehoon Chung9546eb92018-01-17 19:36:58 +09001577 if (clock < mmc->cfg->f_min)
1578 clock = mmc->cfg->f_min;
1579 }
Andy Fleming272cc702008-10-30 16:41:01 -05001580
1581 mmc->clock = clock;
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001582 mmc->clk_disable = disable;
Andy Fleming272cc702008-10-30 16:41:01 -05001583
Jaehoon Chungd2faadb2018-01-26 19:25:30 +09001584 debug("clock is %s (%dHz)\n", disable ? "disabled" : "enabled", clock);
1585
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001586 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001587}
1588
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001589static int mmc_set_bus_width(struct mmc *mmc, uint width)
Andy Fleming272cc702008-10-30 16:41:01 -05001590{
1591 mmc->bus_width = width;
1592
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001593 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001594}
1595
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001596#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
1597/*
1598 * helper function to display the capabilities in a human
1599 * friendly manner. The capabilities include bus width and
1600 * supported modes.
1601 */
1602void mmc_dump_capabilities(const char *text, uint caps)
1603{
1604 enum bus_mode mode;
1605
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001606 pr_debug("%s: widths [", text);
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001607 if (caps & MMC_MODE_8BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001608 pr_debug("8, ");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001609 if (caps & MMC_MODE_4BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001610 pr_debug("4, ");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001611 if (caps & MMC_MODE_1BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001612 pr_debug("1, ");
1613 pr_debug("\b\b] modes [");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001614 for (mode = MMC_LEGACY; mode < MMC_MODES_END; mode++)
1615 if (MMC_CAP(mode) & caps)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001616 pr_debug("%s, ", mmc_mode_name(mode));
1617 pr_debug("\b\b]\n");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001618}
1619#endif
1620
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001621struct mode_width_tuning {
1622 enum bus_mode mode;
1623 uint widths;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001624#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001625 uint tuning;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001626#endif
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001627};
1628
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001629#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001630int mmc_voltage_to_mv(enum mmc_voltage voltage)
1631{
1632 switch (voltage) {
1633 case MMC_SIGNAL_VOLTAGE_000: return 0;
1634 case MMC_SIGNAL_VOLTAGE_330: return 3300;
1635 case MMC_SIGNAL_VOLTAGE_180: return 1800;
1636 case MMC_SIGNAL_VOLTAGE_120: return 1200;
1637 }
1638 return -EINVAL;
1639}
1640
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001641static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1642{
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001643 int err;
1644
1645 if (mmc->signal_voltage == signal_voltage)
1646 return 0;
1647
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001648 mmc->signal_voltage = signal_voltage;
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001649 err = mmc_set_ios(mmc);
1650 if (err)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001651 pr_debug("unable to set voltage (err %d)\n", err);
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001652
1653 return err;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001654}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001655#else
1656static inline int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1657{
1658 return 0;
1659}
1660#endif
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001661
Marek Vasut62d77ce2018-04-15 00:37:11 +02001662#if !CONFIG_IS_ENABLED(MMC_TINY)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001663static const struct mode_width_tuning sd_modes_by_pref[] = {
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001664#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1665#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001666 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001667 .mode = UHS_SDR104,
1668 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1669 .tuning = MMC_CMD_SEND_TUNING_BLOCK
1670 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001671#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001672 {
1673 .mode = UHS_SDR50,
1674 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1675 },
1676 {
1677 .mode = UHS_DDR50,
1678 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1679 },
1680 {
1681 .mode = UHS_SDR25,
1682 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1683 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001684#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001685 {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001686 .mode = SD_HS,
1687 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1688 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001689#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001690 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001691 .mode = UHS_SDR12,
1692 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1693 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001694#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001695 {
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301696 .mode = MMC_LEGACY,
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001697 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1698 }
1699};
1700
1701#define for_each_sd_mode_by_pref(caps, mwt) \
1702 for (mwt = sd_modes_by_pref;\
1703 mwt < sd_modes_by_pref + ARRAY_SIZE(sd_modes_by_pref);\
1704 mwt++) \
1705 if (caps & MMC_CAP(mwt->mode))
1706
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02001707static int sd_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001708{
1709 int err;
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001710 uint widths[] = {MMC_MODE_4BIT, MMC_MODE_1BIT};
1711 const struct mode_width_tuning *mwt;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001712#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001713 bool uhs_en = (mmc->ocr & OCR_S18R) ? true : false;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001714#else
1715 bool uhs_en = false;
1716#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001717 uint caps;
1718
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001719#ifdef DEBUG
1720 mmc_dump_capabilities("sd card", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001721 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001722#endif
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001723
Anup Patelf49ff792019-07-08 04:10:43 +00001724 if (mmc_host_is_spi(mmc)) {
1725 mmc_set_bus_width(mmc, 1);
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301726 mmc_select_mode(mmc, MMC_LEGACY);
Anup Patelf49ff792019-07-08 04:10:43 +00001727 mmc_set_clock(mmc, mmc->tran_speed, MMC_CLK_ENABLE);
1728 return 0;
1729 }
1730
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001731 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001732 caps = card_caps & mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001733
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001734 if (!uhs_en)
1735 caps &= ~UHS_CAPS;
1736
1737 for_each_sd_mode_by_pref(caps, mwt) {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001738 uint *w;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001739
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001740 for (w = widths; w < widths + ARRAY_SIZE(widths); w++) {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001741 if (*w & caps & mwt->widths) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001742 pr_debug("trying mode %s width %d (at %d MHz)\n",
1743 mmc_mode_name(mwt->mode),
1744 bus_width(*w),
1745 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001746
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001747 /* configure the bus width (card + host) */
1748 err = sd_select_bus_width(mmc, bus_width(*w));
1749 if (err)
1750 goto error;
1751 mmc_set_bus_width(mmc, bus_width(*w));
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001752
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001753 /* configure the bus mode (card) */
1754 err = sd_set_card_speed(mmc, mwt->mode);
1755 if (err)
1756 goto error;
1757
1758 /* configure the bus mode (host) */
1759 mmc_select_mode(mmc, mwt->mode);
Jaehoon Chung65117182018-01-26 19:25:29 +09001760 mmc_set_clock(mmc, mmc->tran_speed,
1761 MMC_CLK_ENABLE);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001762
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001763#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001764 /* execute tuning if needed */
1765 if (mwt->tuning && !mmc_host_is_spi(mmc)) {
1766 err = mmc_execute_tuning(mmc,
1767 mwt->tuning);
1768 if (err) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001769 pr_debug("tuning failed\n");
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001770 goto error;
1771 }
1772 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001773#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001774
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001775#if CONFIG_IS_ENABLED(MMC_WRITE)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001776 err = sd_read_ssr(mmc);
Peng Fan0a4c2b02018-03-05 16:20:40 +08001777 if (err)
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001778 pr_warn("unable to read ssr\n");
1779#endif
1780 if (!err)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001781 return 0;
1782
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001783error:
1784 /* revert to a safer bus speed */
Faiz Abbase8d5dde2020-02-26 13:44:32 +05301785 mmc_select_mode(mmc, MMC_LEGACY);
Jaehoon Chung65117182018-01-26 19:25:29 +09001786 mmc_set_clock(mmc, mmc->tran_speed,
1787 MMC_CLK_ENABLE);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001788 }
1789 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001790 }
1791
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001792 pr_err("unable to select a mode\n");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001793 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001794}
1795
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001796/*
1797 * read the compare the part of ext csd that is constant.
1798 * This can be used to check that the transfer is working
1799 * as expected.
1800 */
1801static int mmc_read_and_compare_ext_csd(struct mmc *mmc)
1802{
1803 int err;
1804 const u8 *ext_csd = mmc->ext_csd;
1805 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
1806
Jean-Jacques Hiblot1de06b92017-11-30 17:43:58 +01001807 if (mmc->version < MMC_VERSION_4)
1808 return 0;
1809
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001810 err = mmc_send_ext_csd(mmc, test_csd);
1811 if (err)
1812 return err;
1813
1814 /* Only compare read only fields */
1815 if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT]
1816 == test_csd[EXT_CSD_PARTITIONING_SUPPORT] &&
1817 ext_csd[EXT_CSD_HC_WP_GRP_SIZE]
1818 == test_csd[EXT_CSD_HC_WP_GRP_SIZE] &&
1819 ext_csd[EXT_CSD_REV]
1820 == test_csd[EXT_CSD_REV] &&
1821 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1822 == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE] &&
1823 memcmp(&ext_csd[EXT_CSD_SEC_CNT],
1824 &test_csd[EXT_CSD_SEC_CNT], 4) == 0)
1825 return 0;
1826
1827 return -EBADMSG;
1828}
1829
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001830#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001831static int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1832 uint32_t allowed_mask)
1833{
1834 u32 card_mask = 0;
1835
1836 switch (mode) {
Peng Fan44acd492019-07-10 14:43:07 +08001837 case MMC_HS_400_ES:
Peng Fan3dd26262018-08-10 14:07:54 +08001838 case MMC_HS_400:
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001839 case MMC_HS_200:
Peng Fan3dd26262018-08-10 14:07:54 +08001840 if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_8V |
1841 EXT_CSD_CARD_TYPE_HS400_1_8V))
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001842 card_mask |= MMC_SIGNAL_VOLTAGE_180;
Peng Fan3dd26262018-08-10 14:07:54 +08001843 if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V |
1844 EXT_CSD_CARD_TYPE_HS400_1_2V))
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001845 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1846 break;
1847 case MMC_DDR_52:
1848 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_8V)
1849 card_mask |= MMC_SIGNAL_VOLTAGE_330 |
1850 MMC_SIGNAL_VOLTAGE_180;
1851 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_2V)
1852 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1853 break;
1854 default:
1855 card_mask |= MMC_SIGNAL_VOLTAGE_330;
1856 break;
1857 }
1858
1859 while (card_mask & allowed_mask) {
1860 enum mmc_voltage best_match;
1861
1862 best_match = 1 << (ffs(card_mask & allowed_mask) - 1);
1863 if (!mmc_set_signal_voltage(mmc, best_match))
1864 return 0;
1865
1866 allowed_mask &= ~best_match;
1867 }
1868
1869 return -ENOTSUPP;
1870}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001871#else
1872static inline int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1873 uint32_t allowed_mask)
1874{
1875 return 0;
1876}
1877#endif
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001878
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001879static const struct mode_width_tuning mmc_modes_by_pref[] = {
Peng Fan44acd492019-07-10 14:43:07 +08001880#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
1881 {
1882 .mode = MMC_HS_400_ES,
1883 .widths = MMC_MODE_8BIT,
1884 },
1885#endif
Peng Fan3dd26262018-08-10 14:07:54 +08001886#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
1887 {
1888 .mode = MMC_HS_400,
1889 .widths = MMC_MODE_8BIT,
1890 .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200
1891 },
1892#endif
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001893#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001894 {
1895 .mode = MMC_HS_200,
1896 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001897 .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001898 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001899#endif
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001900 {
1901 .mode = MMC_DDR_52,
1902 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
1903 },
1904 {
1905 .mode = MMC_HS_52,
1906 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1907 },
1908 {
1909 .mode = MMC_HS,
1910 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1911 },
1912 {
1913 .mode = MMC_LEGACY,
1914 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1915 }
1916};
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001917
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001918#define for_each_mmc_mode_by_pref(caps, mwt) \
1919 for (mwt = mmc_modes_by_pref;\
1920 mwt < mmc_modes_by_pref + ARRAY_SIZE(mmc_modes_by_pref);\
1921 mwt++) \
1922 if (caps & MMC_CAP(mwt->mode))
1923
1924static const struct ext_csd_bus_width {
1925 uint cap;
1926 bool is_ddr;
1927 uint ext_csd_bits;
1928} ext_csd_bus_width[] = {
1929 {MMC_MODE_8BIT, true, EXT_CSD_DDR_BUS_WIDTH_8},
1930 {MMC_MODE_4BIT, true, EXT_CSD_DDR_BUS_WIDTH_4},
1931 {MMC_MODE_8BIT, false, EXT_CSD_BUS_WIDTH_8},
1932 {MMC_MODE_4BIT, false, EXT_CSD_BUS_WIDTH_4},
1933 {MMC_MODE_1BIT, false, EXT_CSD_BUS_WIDTH_1},
1934};
1935
Peng Fan3dd26262018-08-10 14:07:54 +08001936#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
1937static int mmc_select_hs400(struct mmc *mmc)
1938{
1939 int err;
1940
1941 /* Set timing to HS200 for tuning */
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001942 err = mmc_set_card_speed(mmc, MMC_HS_200, false);
Peng Fan3dd26262018-08-10 14:07:54 +08001943 if (err)
1944 return err;
1945
1946 /* configure the bus mode (host) */
1947 mmc_select_mode(mmc, MMC_HS_200);
1948 mmc_set_clock(mmc, mmc->tran_speed, false);
1949
1950 /* execute tuning if needed */
1951 err = mmc_execute_tuning(mmc, MMC_CMD_SEND_TUNING_BLOCK_HS200);
1952 if (err) {
1953 debug("tuning failed\n");
1954 return err;
1955 }
1956
1957 /* Set back to HS */
BOUGH CHEN5cf12032019-03-26 06:24:17 +00001958 mmc_set_card_speed(mmc, MMC_HS, true);
Peng Fan3dd26262018-08-10 14:07:54 +08001959
1960 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH,
1961 EXT_CSD_BUS_WIDTH_8 | EXT_CSD_DDR_FLAG);
1962 if (err)
1963 return err;
1964
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001965 err = mmc_set_card_speed(mmc, MMC_HS_400, false);
Peng Fan3dd26262018-08-10 14:07:54 +08001966 if (err)
1967 return err;
1968
1969 mmc_select_mode(mmc, MMC_HS_400);
1970 err = mmc_set_clock(mmc, mmc->tran_speed, false);
1971 if (err)
1972 return err;
1973
1974 return 0;
1975}
1976#else
1977static int mmc_select_hs400(struct mmc *mmc)
1978{
1979 return -ENOTSUPP;
1980}
1981#endif
1982
Peng Fan44acd492019-07-10 14:43:07 +08001983#if CONFIG_IS_ENABLED(MMC_HS400_ES_SUPPORT)
1984#if !CONFIG_IS_ENABLED(DM_MMC)
1985static int mmc_set_enhanced_strobe(struct mmc *mmc)
1986{
1987 return -ENOTSUPP;
1988}
1989#endif
1990static int mmc_select_hs400es(struct mmc *mmc)
1991{
1992 int err;
1993
1994 err = mmc_set_card_speed(mmc, MMC_HS, true);
1995 if (err)
1996 return err;
1997
1998 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH,
1999 EXT_CSD_BUS_WIDTH_8 | EXT_CSD_DDR_FLAG |
2000 EXT_CSD_BUS_WIDTH_STROBE);
2001 if (err) {
2002 printf("switch to bus width for hs400 failed\n");
2003 return err;
2004 }
2005 /* TODO: driver strength */
2006 err = mmc_set_card_speed(mmc, MMC_HS_400_ES, false);
2007 if (err)
2008 return err;
2009
2010 mmc_select_mode(mmc, MMC_HS_400_ES);
2011 err = mmc_set_clock(mmc, mmc->tran_speed, false);
2012 if (err)
2013 return err;
2014
2015 return mmc_set_enhanced_strobe(mmc);
2016}
2017#else
2018static int mmc_select_hs400es(struct mmc *mmc)
2019{
2020 return -ENOTSUPP;
2021}
2022#endif
2023
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002024#define for_each_supported_width(caps, ddr, ecbv) \
2025 for (ecbv = ext_csd_bus_width;\
2026 ecbv < ext_csd_bus_width + ARRAY_SIZE(ext_csd_bus_width);\
2027 ecbv++) \
2028 if ((ddr == ecbv->is_ddr) && (caps & ecbv->cap))
2029
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002030static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002031{
2032 int err;
2033 const struct mode_width_tuning *mwt;
2034 const struct ext_csd_bus_width *ecbw;
2035
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01002036#ifdef DEBUG
2037 mmc_dump_capabilities("mmc", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01002038 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01002039#endif
2040
Anup Patelf49ff792019-07-08 04:10:43 +00002041 if (mmc_host_is_spi(mmc)) {
2042 mmc_set_bus_width(mmc, 1);
2043 mmc_select_mode(mmc, MMC_LEGACY);
2044 mmc_set_clock(mmc, mmc->tran_speed, MMC_CLK_ENABLE);
2045 return 0;
2046 }
2047
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002048 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01002049 card_caps &= mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002050
2051 /* Only version 4 of MMC supports wider bus widths */
2052 if (mmc->version < MMC_VERSION_4)
2053 return 0;
2054
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002055 if (!mmc->ext_csd) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002056 pr_debug("No ext_csd found!\n"); /* this should enver happen */
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002057 return -ENOTSUPP;
2058 }
2059
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01002060#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
2061 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
2062 /*
2063 * In case the eMMC is in HS200/HS400 mode, downgrade to HS mode
2064 * before doing anything else, since a transition from either of
2065 * the HS200/HS400 mode directly to legacy mode is not supported.
2066 */
2067 if (mmc->selected_mode == MMC_HS_200 ||
2068 mmc->selected_mode == MMC_HS_400)
2069 mmc_set_card_speed(mmc, MMC_HS, true);
2070 else
2071#endif
2072 mmc_set_clock(mmc, mmc->legacy_speed, MMC_CLK_ENABLE);
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002073
2074 for_each_mmc_mode_by_pref(card_caps, mwt) {
2075 for_each_supported_width(card_caps & mwt->widths,
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002076 mmc_is_mode_ddr(mwt->mode), ecbw) {
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002077 enum mmc_voltage old_voltage;
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002078 pr_debug("trying mode %s width %d (at %d MHz)\n",
2079 mmc_mode_name(mwt->mode),
2080 bus_width(ecbw->cap),
2081 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002082 old_voltage = mmc->signal_voltage;
2083 err = mmc_set_lowest_voltage(mmc, mwt->mode,
2084 MMC_ALL_SIGNAL_VOLTAGE);
2085 if (err)
2086 continue;
2087
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002088 /* configure the bus width (card + host) */
2089 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2090 EXT_CSD_BUS_WIDTH,
2091 ecbw->ext_csd_bits & ~EXT_CSD_DDR_FLAG);
2092 if (err)
2093 goto error;
2094 mmc_set_bus_width(mmc, bus_width(ecbw->cap));
2095
Peng Fan3dd26262018-08-10 14:07:54 +08002096 if (mwt->mode == MMC_HS_400) {
2097 err = mmc_select_hs400(mmc);
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002098 if (err) {
Peng Fan3dd26262018-08-10 14:07:54 +08002099 printf("Select HS400 failed %d\n", err);
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002100 goto error;
2101 }
Peng Fan44acd492019-07-10 14:43:07 +08002102 } else if (mwt->mode == MMC_HS_400_ES) {
2103 err = mmc_select_hs400es(mmc);
2104 if (err) {
2105 printf("Select HS400ES failed %d\n",
2106 err);
2107 goto error;
2108 }
Peng Fan3dd26262018-08-10 14:07:54 +08002109 } else {
2110 /* configure the bus speed (card) */
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01002111 err = mmc_set_card_speed(mmc, mwt->mode, false);
Peng Fan3dd26262018-08-10 14:07:54 +08002112 if (err)
2113 goto error;
2114
2115 /*
2116 * configure the bus width AND the ddr mode
2117 * (card). The host side will be taken care
2118 * of in the next step
2119 */
2120 if (ecbw->ext_csd_bits & EXT_CSD_DDR_FLAG) {
2121 err = mmc_switch(mmc,
2122 EXT_CSD_CMD_SET_NORMAL,
2123 EXT_CSD_BUS_WIDTH,
2124 ecbw->ext_csd_bits);
2125 if (err)
2126 goto error;
2127 }
2128
2129 /* configure the bus mode (host) */
2130 mmc_select_mode(mmc, mwt->mode);
2131 mmc_set_clock(mmc, mmc->tran_speed,
2132 MMC_CLK_ENABLE);
2133#ifdef MMC_SUPPORTS_TUNING
2134
2135 /* execute tuning if needed */
2136 if (mwt->tuning) {
2137 err = mmc_execute_tuning(mmc,
2138 mwt->tuning);
2139 if (err) {
2140 pr_debug("tuning failed\n");
2141 goto error;
2142 }
2143 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01002144#endif
Peng Fan3dd26262018-08-10 14:07:54 +08002145 }
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002146
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002147 /* do a transfer to check the configuration */
2148 err = mmc_read_and_compare_ext_csd(mmc);
2149 if (!err)
2150 return 0;
2151error:
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002152 mmc_set_signal_voltage(mmc, old_voltage);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002153 /* if an error occured, revert to a safer bus mode */
2154 mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2155 EXT_CSD_BUS_WIDTH, EXT_CSD_BUS_WIDTH_1);
2156 mmc_select_mode(mmc, MMC_LEGACY);
2157 mmc_set_bus_width(mmc, 1);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002158 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002159 }
2160
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002161 pr_err("unable to select a mode\n");
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002162
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002163 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002164}
Marek Vasut62d77ce2018-04-15 00:37:11 +02002165#endif
2166
2167#if CONFIG_IS_ENABLED(MMC_TINY)
2168DEFINE_CACHE_ALIGN_BUFFER(u8, ext_csd_bkup, MMC_MAX_BLOCK_LEN);
2169#endif
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002170
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002171static int mmc_startup_v4(struct mmc *mmc)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002172{
2173 int err, i;
2174 u64 capacity;
2175 bool has_parts = false;
2176 bool part_completed;
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002177 static const u32 mmc_versions[] = {
2178 MMC_VERSION_4,
2179 MMC_VERSION_4_1,
2180 MMC_VERSION_4_2,
2181 MMC_VERSION_4_3,
Jean-Jacques Hiblotace1bed2018-02-09 12:09:28 +01002182 MMC_VERSION_4_4,
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002183 MMC_VERSION_4_41,
2184 MMC_VERSION_4_5,
2185 MMC_VERSION_5_0,
2186 MMC_VERSION_5_1
2187 };
2188
Marek Vasut62d77ce2018-04-15 00:37:11 +02002189#if CONFIG_IS_ENABLED(MMC_TINY)
2190 u8 *ext_csd = ext_csd_bkup;
2191
2192 if (IS_SD(mmc) || mmc->version < MMC_VERSION_4)
2193 return 0;
2194
2195 if (!mmc->ext_csd)
2196 memset(ext_csd_bkup, 0, sizeof(ext_csd_bkup));
2197
2198 err = mmc_send_ext_csd(mmc, ext_csd);
2199 if (err)
2200 goto error;
2201
2202 /* store the ext csd for future reference */
2203 if (!mmc->ext_csd)
2204 mmc->ext_csd = ext_csd;
2205#else
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002206 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002207
2208 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4))
2209 return 0;
2210
2211 /* check ext_csd version and capacity */
2212 err = mmc_send_ext_csd(mmc, ext_csd);
2213 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002214 goto error;
2215
2216 /* store the ext csd for future reference */
2217 if (!mmc->ext_csd)
2218 mmc->ext_csd = malloc(MMC_MAX_BLOCK_LEN);
2219 if (!mmc->ext_csd)
2220 return -ENOMEM;
2221 memcpy(mmc->ext_csd, ext_csd, MMC_MAX_BLOCK_LEN);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002222#endif
Alexander Kochetkov76584e32018-02-20 14:35:55 +03002223 if (ext_csd[EXT_CSD_REV] >= ARRAY_SIZE(mmc_versions))
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002224 return -EINVAL;
2225
2226 mmc->version = mmc_versions[ext_csd[EXT_CSD_REV]];
2227
2228 if (mmc->version >= MMC_VERSION_4_2) {
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002229 /*
2230 * According to the JEDEC Standard, the value of
2231 * ext_csd's capacity is valid if the value is more
2232 * than 2GB
2233 */
2234 capacity = ext_csd[EXT_CSD_SEC_CNT] << 0
2235 | ext_csd[EXT_CSD_SEC_CNT + 1] << 8
2236 | ext_csd[EXT_CSD_SEC_CNT + 2] << 16
2237 | ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
2238 capacity *= MMC_MAX_BLOCK_LEN;
2239 if ((capacity >> 20) > 2 * 1024)
2240 mmc->capacity_user = capacity;
2241 }
2242
Jean-Jacques Hiblot39320c52019-07-02 10:53:54 +02002243 if (mmc->version >= MMC_VERSION_4_5)
2244 mmc->gen_cmd6_time = ext_csd[EXT_CSD_GENERIC_CMD6_TIME];
2245
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002246 /* The partition data may be non-zero but it is only
2247 * effective if PARTITION_SETTING_COMPLETED is set in
2248 * EXT_CSD, so ignore any data if this bit is not set,
2249 * except for enabling the high-capacity group size
2250 * definition (see below).
2251 */
2252 part_completed = !!(ext_csd[EXT_CSD_PARTITION_SETTING] &
2253 EXT_CSD_PARTITION_SETTING_COMPLETED);
2254
Jean-Jacques Hiblot513e00b2019-07-02 10:53:55 +02002255 mmc->part_switch_time = ext_csd[EXT_CSD_PART_SWITCH_TIME];
2256 /* Some eMMC set the value too low so set a minimum */
2257 if (mmc->part_switch_time < MMC_MIN_PART_SWITCH_TIME && mmc->part_switch_time)
2258 mmc->part_switch_time = MMC_MIN_PART_SWITCH_TIME;
2259
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002260 /* store the partition info of emmc */
2261 mmc->part_support = ext_csd[EXT_CSD_PARTITIONING_SUPPORT];
2262 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) ||
2263 ext_csd[EXT_CSD_BOOT_MULT])
2264 mmc->part_config = ext_csd[EXT_CSD_PART_CONF];
2265 if (part_completed &&
2266 (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & ENHNCD_SUPPORT))
2267 mmc->part_attr = ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE];
2268
2269 mmc->capacity_boot = ext_csd[EXT_CSD_BOOT_MULT] << 17;
2270
2271 mmc->capacity_rpmb = ext_csd[EXT_CSD_RPMB_MULT] << 17;
2272
2273 for (i = 0; i < 4; i++) {
2274 int idx = EXT_CSD_GP_SIZE_MULT + i * 3;
2275 uint mult = (ext_csd[idx + 2] << 16) +
2276 (ext_csd[idx + 1] << 8) + ext_csd[idx];
2277 if (mult)
2278 has_parts = true;
2279 if (!part_completed)
2280 continue;
2281 mmc->capacity_gp[i] = mult;
2282 mmc->capacity_gp[i] *=
2283 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2284 mmc->capacity_gp[i] *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2285 mmc->capacity_gp[i] <<= 19;
2286 }
2287
Jean-Jacques Hiblot173c06d2018-01-04 15:23:35 +01002288#ifndef CONFIG_SPL_BUILD
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002289 if (part_completed) {
2290 mmc->enh_user_size =
2291 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 2] << 16) +
2292 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 1] << 8) +
2293 ext_csd[EXT_CSD_ENH_SIZE_MULT];
2294 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2295 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2296 mmc->enh_user_size <<= 19;
2297 mmc->enh_user_start =
2298 (ext_csd[EXT_CSD_ENH_START_ADDR + 3] << 24) +
2299 (ext_csd[EXT_CSD_ENH_START_ADDR + 2] << 16) +
2300 (ext_csd[EXT_CSD_ENH_START_ADDR + 1] << 8) +
2301 ext_csd[EXT_CSD_ENH_START_ADDR];
2302 if (mmc->high_capacity)
2303 mmc->enh_user_start <<= 9;
2304 }
Jean-Jacques Hiblot173c06d2018-01-04 15:23:35 +01002305#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002306
2307 /*
2308 * Host needs to enable ERASE_GRP_DEF bit if device is
2309 * partitioned. This bit will be lost every time after a reset
2310 * or power off. This will affect erase size.
2311 */
2312 if (part_completed)
2313 has_parts = true;
2314 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) &&
2315 (ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE] & PART_ENH_ATTRIB))
2316 has_parts = true;
2317 if (has_parts) {
2318 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2319 EXT_CSD_ERASE_GROUP_DEF, 1);
2320
2321 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002322 goto error;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002323
2324 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
2325 }
2326
2327 if (ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01) {
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002328#if CONFIG_IS_ENABLED(MMC_WRITE)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002329 /* Read out group size from ext_csd */
2330 mmc->erase_grp_size =
2331 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002332#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002333 /*
2334 * if high capacity and partition setting completed
2335 * SEC_COUNT is valid even if it is smaller than 2 GiB
2336 * JEDEC Standard JESD84-B45, 6.2.4
2337 */
2338 if (mmc->high_capacity && part_completed) {
2339 capacity = (ext_csd[EXT_CSD_SEC_CNT]) |
2340 (ext_csd[EXT_CSD_SEC_CNT + 1] << 8) |
2341 (ext_csd[EXT_CSD_SEC_CNT + 2] << 16) |
2342 (ext_csd[EXT_CSD_SEC_CNT + 3] << 24);
2343 capacity *= MMC_MAX_BLOCK_LEN;
2344 mmc->capacity_user = capacity;
2345 }
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002346 }
2347#if CONFIG_IS_ENABLED(MMC_WRITE)
2348 else {
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002349 /* Calculate the group size from the csd value. */
2350 int erase_gsz, erase_gmul;
2351
2352 erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10;
2353 erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5;
2354 mmc->erase_grp_size = (erase_gsz + 1)
2355 * (erase_gmul + 1);
2356 }
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002357#endif
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +01002358#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002359 mmc->hc_wp_grp_size = 1024
2360 * ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
2361 * ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +01002362#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002363
2364 mmc->wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
2365
2366 return 0;
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002367error:
2368 if (mmc->ext_csd) {
Marek Vasut62d77ce2018-04-15 00:37:11 +02002369#if !CONFIG_IS_ENABLED(MMC_TINY)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002370 free(mmc->ext_csd);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002371#endif
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002372 mmc->ext_csd = NULL;
2373 }
2374 return err;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002375}
2376
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002377static int mmc_startup(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002378{
Stephen Warrenf866a462013-06-11 15:14:01 -06002379 int err, i;
Andy Fleming272cc702008-10-30 16:41:01 -05002380 uint mult, freq;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002381 u64 cmult, csize;
Andy Fleming272cc702008-10-30 16:41:01 -05002382 struct mmc_cmd cmd;
Simon Glassc40fdca2016-05-01 13:52:35 -06002383 struct blk_desc *bdesc;
Andy Fleming272cc702008-10-30 16:41:01 -05002384
Thomas Choud52ebf12010-12-24 13:12:21 +00002385#ifdef CONFIG_MMC_SPI_CRC_ON
2386 if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */
2387 cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF;
2388 cmd.resp_type = MMC_RSP_R1;
2389 cmd.cmdarg = 1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002390 err = mmc_send_cmd(mmc, &cmd, NULL);
Thomas Choud52ebf12010-12-24 13:12:21 +00002391 if (err)
2392 return err;
2393 }
2394#endif
2395
Andy Fleming272cc702008-10-30 16:41:01 -05002396 /* Put the Card in Identify Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002397 cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID :
2398 MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */
Andy Fleming272cc702008-10-30 16:41:01 -05002399 cmd.resp_type = MMC_RSP_R2;
2400 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002401
2402 err = mmc_send_cmd(mmc, &cmd, NULL);
2403
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002404#ifdef CONFIG_MMC_QUIRKS
2405 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SEND_CID)) {
2406 int retries = 4;
2407 /*
2408 * It has been seen that SEND_CID may fail on the first
2409 * attempt, let's try a few more time
2410 */
2411 do {
2412 err = mmc_send_cmd(mmc, &cmd, NULL);
2413 if (!err)
2414 break;
2415 } while (retries--);
2416 }
2417#endif
2418
Andy Fleming272cc702008-10-30 16:41:01 -05002419 if (err)
2420 return err;
2421
2422 memcpy(mmc->cid, cmd.response, 16);
2423
2424 /*
2425 * For MMC cards, set the Relative Address.
2426 * For SD cards, get the Relatvie Address.
2427 * This also puts the cards into Standby State
2428 */
Thomas Choud52ebf12010-12-24 13:12:21 +00002429 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2430 cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR;
2431 cmd.cmdarg = mmc->rca << 16;
2432 cmd.resp_type = MMC_RSP_R6;
Andy Fleming272cc702008-10-30 16:41:01 -05002433
Thomas Choud52ebf12010-12-24 13:12:21 +00002434 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002435
Thomas Choud52ebf12010-12-24 13:12:21 +00002436 if (err)
2437 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002438
Thomas Choud52ebf12010-12-24 13:12:21 +00002439 if (IS_SD(mmc))
2440 mmc->rca = (cmd.response[0] >> 16) & 0xffff;
2441 }
Andy Fleming272cc702008-10-30 16:41:01 -05002442
2443 /* Get the Card-Specific Data */
2444 cmd.cmdidx = MMC_CMD_SEND_CSD;
2445 cmd.resp_type = MMC_RSP_R2;
2446 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05002447
2448 err = mmc_send_cmd(mmc, &cmd, NULL);
2449
2450 if (err)
2451 return err;
2452
Rabin Vincent998be3d2009-04-05 13:30:56 +05302453 mmc->csd[0] = cmd.response[0];
2454 mmc->csd[1] = cmd.response[1];
2455 mmc->csd[2] = cmd.response[2];
2456 mmc->csd[3] = cmd.response[3];
Andy Fleming272cc702008-10-30 16:41:01 -05002457
2458 if (mmc->version == MMC_VERSION_UNKNOWN) {
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302459 int version = (cmd.response[0] >> 26) & 0xf;
Andy Fleming272cc702008-10-30 16:41:01 -05002460
2461 switch (version) {
Bin Meng53e8e402016-03-17 21:53:13 -07002462 case 0:
2463 mmc->version = MMC_VERSION_1_2;
2464 break;
2465 case 1:
2466 mmc->version = MMC_VERSION_1_4;
2467 break;
2468 case 2:
2469 mmc->version = MMC_VERSION_2_2;
2470 break;
2471 case 3:
2472 mmc->version = MMC_VERSION_3;
2473 break;
2474 case 4:
2475 mmc->version = MMC_VERSION_4;
2476 break;
2477 default:
2478 mmc->version = MMC_VERSION_1_2;
2479 break;
Andy Fleming272cc702008-10-30 16:41:01 -05002480 }
2481 }
2482
2483 /* divide frequency by 10, since the mults are 10x bigger */
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302484 freq = fbase[(cmd.response[0] & 0x7)];
2485 mult = multipliers[((cmd.response[0] >> 3) & 0xf)];
Andy Fleming272cc702008-10-30 16:41:01 -05002486
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002487 mmc->legacy_speed = freq * mult;
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002488 mmc_select_mode(mmc, MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05002489
Markus Niebelab711882013-12-16 13:40:46 +01002490 mmc->dsr_imp = ((cmd.response[1] >> 12) & 0x1);
Rabin Vincent998be3d2009-04-05 13:30:56 +05302491 mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf);
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002492#if CONFIG_IS_ENABLED(MMC_WRITE)
Andy Fleming272cc702008-10-30 16:41:01 -05002493
2494 if (IS_SD(mmc))
2495 mmc->write_bl_len = mmc->read_bl_len;
2496 else
Rabin Vincent998be3d2009-04-05 13:30:56 +05302497 mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf);
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002498#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002499
2500 if (mmc->high_capacity) {
2501 csize = (mmc->csd[1] & 0x3f) << 16
2502 | (mmc->csd[2] & 0xffff0000) >> 16;
2503 cmult = 8;
2504 } else {
2505 csize = (mmc->csd[1] & 0x3ff) << 2
2506 | (mmc->csd[2] & 0xc0000000) >> 30;
2507 cmult = (mmc->csd[2] & 0x00038000) >> 15;
2508 }
2509
Stephen Warrenf866a462013-06-11 15:14:01 -06002510 mmc->capacity_user = (csize + 1) << (cmult + 2);
2511 mmc->capacity_user *= mmc->read_bl_len;
2512 mmc->capacity_boot = 0;
2513 mmc->capacity_rpmb = 0;
2514 for (i = 0; i < 4; i++)
2515 mmc->capacity_gp[i] = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002516
Simon Glass8bfa1952013-04-03 08:54:30 +00002517 if (mmc->read_bl_len > MMC_MAX_BLOCK_LEN)
2518 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -05002519
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002520#if CONFIG_IS_ENABLED(MMC_WRITE)
Simon Glass8bfa1952013-04-03 08:54:30 +00002521 if (mmc->write_bl_len > MMC_MAX_BLOCK_LEN)
2522 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002523#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002524
Markus Niebelab711882013-12-16 13:40:46 +01002525 if ((mmc->dsr_imp) && (0xffffffff != mmc->dsr)) {
2526 cmd.cmdidx = MMC_CMD_SET_DSR;
2527 cmd.cmdarg = (mmc->dsr & 0xffff) << 16;
2528 cmd.resp_type = MMC_RSP_NONE;
2529 if (mmc_send_cmd(mmc, &cmd, NULL))
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002530 pr_warn("MMC: SET_DSR failed\n");
Markus Niebelab711882013-12-16 13:40:46 +01002531 }
2532
Andy Fleming272cc702008-10-30 16:41:01 -05002533 /* Select the card, and put it into Transfer Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002534 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2535 cmd.cmdidx = MMC_CMD_SELECT_CARD;
Ajay Bhargavfe8f7062011-10-05 03:13:23 +00002536 cmd.resp_type = MMC_RSP_R1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002537 cmd.cmdarg = mmc->rca << 16;
Thomas Choud52ebf12010-12-24 13:12:21 +00002538 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002539
Thomas Choud52ebf12010-12-24 13:12:21 +00002540 if (err)
2541 return err;
2542 }
Andy Fleming272cc702008-10-30 16:41:01 -05002543
Lei Wene6f99a52011-06-22 17:03:31 +00002544 /*
2545 * For SD, its erase group is always one sector
2546 */
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002547#if CONFIG_IS_ENABLED(MMC_WRITE)
Lei Wene6f99a52011-06-22 17:03:31 +00002548 mmc->erase_grp_size = 1;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002549#endif
Lei Wenbc897b12011-05-02 16:26:26 +00002550 mmc->part_config = MMCPART_NOAVAILABLE;
Lei Wenbc897b12011-05-02 16:26:26 +00002551
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002552 err = mmc_startup_v4(mmc);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002553 if (err)
2554 return err;
Sukumar Ghoraid23e2c02010-09-20 18:29:29 +05302555
Simon Glassc40fdca2016-05-01 13:52:35 -06002556 err = mmc_set_capacity(mmc, mmc_get_blk_desc(mmc)->hwpart);
Stephen Warrenf866a462013-06-11 15:14:01 -06002557 if (err)
2558 return err;
2559
Marek Vasut62d77ce2018-04-15 00:37:11 +02002560#if CONFIG_IS_ENABLED(MMC_TINY)
2561 mmc_set_clock(mmc, mmc->legacy_speed, false);
Faiz Abbase8d5dde2020-02-26 13:44:32 +05302562 mmc_select_mode(mmc, MMC_LEGACY);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002563 mmc_set_bus_width(mmc, 1);
2564#else
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002565 if (IS_SD(mmc)) {
2566 err = sd_get_capabilities(mmc);
2567 if (err)
2568 return err;
2569 err = sd_select_mode_and_width(mmc, mmc->card_caps);
2570 } else {
2571 err = mmc_get_capabilities(mmc);
2572 if (err)
2573 return err;
Masahiro Yamada8adf50e2020-01-23 14:31:12 +09002574 err = mmc_select_mode_and_width(mmc, mmc->card_caps);
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002575 }
Marek Vasut62d77ce2018-04-15 00:37:11 +02002576#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002577 if (err)
2578 return err;
2579
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002580 mmc->best_mode = mmc->selected_mode;
Jaehoon Chungad5fd922012-03-26 21:16:03 +00002581
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002582 /* Fix the block length for DDR mode */
2583 if (mmc->ddr_mode) {
2584 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002585#if CONFIG_IS_ENABLED(MMC_WRITE)
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002586 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002587#endif
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002588 }
2589
Andy Fleming272cc702008-10-30 16:41:01 -05002590 /* fill in device description */
Simon Glassc40fdca2016-05-01 13:52:35 -06002591 bdesc = mmc_get_blk_desc(mmc);
2592 bdesc->lun = 0;
2593 bdesc->hwpart = 0;
2594 bdesc->type = 0;
2595 bdesc->blksz = mmc->read_bl_len;
2596 bdesc->log2blksz = LOG2(bdesc->blksz);
2597 bdesc->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Sjoerd Simonsfc011f62015-12-04 23:27:40 +01002598#if !defined(CONFIG_SPL_BUILD) || \
2599 (defined(CONFIG_SPL_LIBCOMMON_SUPPORT) && \
Simon Glass27084c02019-09-25 08:56:27 -06002600 !CONFIG_IS_ENABLED(USE_TINY_PRINTF))
Simon Glassc40fdca2016-05-01 13:52:35 -06002601 sprintf(bdesc->vendor, "Man %06x Snr %04x%04x",
Taylor Huttbabce5f2012-10-20 17:15:59 +00002602 mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff),
2603 (mmc->cid[3] >> 16) & 0xffff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002604 sprintf(bdesc->product, "%c%c%c%c%c%c", mmc->cid[0] & 0xff,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002605 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
2606 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff,
2607 (mmc->cid[2] >> 24) & 0xff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002608 sprintf(bdesc->revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002609 (mmc->cid[2] >> 16) & 0xf);
Paul Burton56196822013-09-04 16:12:25 +01002610#else
Simon Glassc40fdca2016-05-01 13:52:35 -06002611 bdesc->vendor[0] = 0;
2612 bdesc->product[0] = 0;
2613 bdesc->revision[0] = 0;
Paul Burton56196822013-09-04 16:12:25 +01002614#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002615
Andre Przywaraeef05fd2018-12-17 10:05:45 +00002616#if !defined(CONFIG_DM_MMC) && (!defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT))
2617 part_init(bdesc);
2618#endif
2619
Andy Fleming272cc702008-10-30 16:41:01 -05002620 return 0;
2621}
2622
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002623static int mmc_send_if_cond(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002624{
2625 struct mmc_cmd cmd;
2626 int err;
2627
2628 cmd.cmdidx = SD_CMD_SEND_IF_COND;
2629 /* We set the bit if the host supports voltages between 2.7 and 3.6 V */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002630 cmd.cmdarg = ((mmc->cfg->voltages & 0xff8000) != 0) << 8 | 0xaa;
Andy Fleming272cc702008-10-30 16:41:01 -05002631 cmd.resp_type = MMC_RSP_R7;
Andy Fleming272cc702008-10-30 16:41:01 -05002632
2633 err = mmc_send_cmd(mmc, &cmd, NULL);
2634
2635 if (err)
2636 return err;
2637
Rabin Vincent998be3d2009-04-05 13:30:56 +05302638 if ((cmd.response[0] & 0xff) != 0xaa)
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002639 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002640 else
2641 mmc->version = SD_VERSION_2;
2642
2643 return 0;
2644}
2645
Simon Glassc4d660d2017-07-04 13:31:19 -06002646#if !CONFIG_IS_ENABLED(DM_MMC)
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002647/* board-specific MMC power initializations. */
2648__weak void board_mmc_power_init(void)
2649{
2650}
Simon Glass05cbeb72017-04-22 19:10:56 -06002651#endif
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002652
Peng Fan2051aef2016-10-11 15:08:43 +08002653static int mmc_power_init(struct mmc *mmc)
2654{
Simon Glassc4d660d2017-07-04 13:31:19 -06002655#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002656#if CONFIG_IS_ENABLED(DM_REGULATOR)
Peng Fan2051aef2016-10-11 15:08:43 +08002657 int ret;
2658
2659 ret = device_get_supply_regulator(mmc->dev, "vmmc-supply",
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002660 &mmc->vmmc_supply);
2661 if (ret)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002662 pr_debug("%s: No vmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002663
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002664 ret = device_get_supply_regulator(mmc->dev, "vqmmc-supply",
2665 &mmc->vqmmc_supply);
2666 if (ret)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002667 pr_debug("%s: No vqmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002668#endif
Simon Glass05cbeb72017-04-22 19:10:56 -06002669#else /* !CONFIG_DM_MMC */
2670 /*
2671 * Driver model should use a regulator, as above, rather than calling
2672 * out to board code.
2673 */
2674 board_mmc_power_init();
2675#endif
Peng Fan2051aef2016-10-11 15:08:43 +08002676 return 0;
2677}
2678
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002679/*
2680 * put the host in the initial state:
2681 * - turn on Vdd (card power supply)
2682 * - configure the bus width and clock to minimal values
2683 */
2684static void mmc_set_initial_state(struct mmc *mmc)
2685{
2686 int err;
2687
2688 /* First try to set 3.3V. If it fails set to 1.8V */
2689 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_330);
2690 if (err != 0)
2691 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
2692 if (err != 0)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002693 pr_warn("mmc: failed to set signal voltage\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002694
2695 mmc_select_mode(mmc, MMC_LEGACY);
2696 mmc_set_bus_width(mmc, 1);
Jaehoon Chung65117182018-01-26 19:25:29 +09002697 mmc_set_clock(mmc, 0, MMC_CLK_ENABLE);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002698}
2699
2700static int mmc_power_on(struct mmc *mmc)
2701{
2702#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2703 if (mmc->vmmc_supply) {
2704 int ret = regulator_set_enable(mmc->vmmc_supply, true);
2705
2706 if (ret) {
2707 puts("Error enabling VMMC supply\n");
2708 return ret;
2709 }
2710 }
2711#endif
2712 return 0;
2713}
2714
2715static int mmc_power_off(struct mmc *mmc)
2716{
Jaehoon Chung65117182018-01-26 19:25:29 +09002717 mmc_set_clock(mmc, 0, MMC_CLK_DISABLE);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002718#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2719 if (mmc->vmmc_supply) {
2720 int ret = regulator_set_enable(mmc->vmmc_supply, false);
2721
2722 if (ret) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002723 pr_debug("Error disabling VMMC supply\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002724 return ret;
2725 }
2726 }
2727#endif
2728 return 0;
2729}
2730
2731static int mmc_power_cycle(struct mmc *mmc)
2732{
2733 int ret;
2734
2735 ret = mmc_power_off(mmc);
2736 if (ret)
2737 return ret;
Yann Gautier3602a562019-09-19 17:56:12 +02002738
2739 ret = mmc_host_power_cycle(mmc);
2740 if (ret)
2741 return ret;
2742
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002743 /*
2744 * SD spec recommends at least 1ms of delay. Let's wait for 2ms
2745 * to be on the safer side.
2746 */
2747 udelay(2000);
2748 return mmc_power_on(mmc);
2749}
2750
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002751int mmc_get_op_cond(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002752{
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002753 bool uhs_en = supports_uhs(mmc->cfg->host_caps);
Macpaul Linafd59322011-11-14 23:35:39 +00002754 int err;
Andy Fleming272cc702008-10-30 16:41:01 -05002755
Lei Wenbc897b12011-05-02 16:26:26 +00002756 if (mmc->has_init)
2757 return 0;
2758
Yangbo Lu5a8dbdc2015-04-22 13:57:00 +08002759#ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
2760 mmc_adapter_card_type_ident();
2761#endif
Peng Fan2051aef2016-10-11 15:08:43 +08002762 err = mmc_power_init(mmc);
2763 if (err)
2764 return err;
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002765
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002766#ifdef CONFIG_MMC_QUIRKS
2767 mmc->quirks = MMC_QUIRK_RETRY_SET_BLOCKLEN |
Joel Johnsond4a5fa32020-01-11 09:08:14 -07002768 MMC_QUIRK_RETRY_SEND_CID |
2769 MMC_QUIRK_RETRY_APP_CMD;
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002770#endif
2771
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002772 err = mmc_power_cycle(mmc);
2773 if (err) {
2774 /*
2775 * if power cycling is not supported, we should not try
2776 * to use the UHS modes, because we wouldn't be able to
2777 * recover from an error during the UHS initialization.
2778 */
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002779 pr_debug("Unable to do a full power cycle. Disabling the UHS modes for safety\n");
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002780 uhs_en = false;
2781 mmc->host_caps &= ~UHS_CAPS;
2782 err = mmc_power_on(mmc);
2783 }
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002784 if (err)
2785 return err;
2786
Simon Glasse7881d82017-07-29 11:35:31 -06002787#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass8ca51e52016-06-12 23:30:22 -06002788 /* The device has already been probed ready for use */
2789#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +02002790 /* made sure it's not NULL earlier */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002791 err = mmc->cfg->ops->init(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002792 if (err)
2793 return err;
Simon Glass8ca51e52016-06-12 23:30:22 -06002794#endif
Andrew Gabbasov786e8f82014-12-01 06:59:09 -06002795 mmc->ddr_mode = 0;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02002796
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002797retry:
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002798 mmc_set_initial_state(mmc);
Jean-Jacques Hiblot318a7a52017-09-21 16:30:01 +02002799
Andy Fleming272cc702008-10-30 16:41:01 -05002800 /* Reset the Card */
2801 err = mmc_go_idle(mmc);
2802
2803 if (err)
2804 return err;
2805
Lei Wenbc897b12011-05-02 16:26:26 +00002806 /* The internal partition reset to user partition(0) at every CMD0*/
Simon Glassc40fdca2016-05-01 13:52:35 -06002807 mmc_get_blk_desc(mmc)->hwpart = 0;
Lei Wenbc897b12011-05-02 16:26:26 +00002808
Andy Fleming272cc702008-10-30 16:41:01 -05002809 /* Test for SD version 2 */
Macpaul Linafd59322011-11-14 23:35:39 +00002810 err = mmc_send_if_cond(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002811
Andy Fleming272cc702008-10-30 16:41:01 -05002812 /* Now try to get the SD card's operating condition */
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002813 err = sd_send_op_cond(mmc, uhs_en);
2814 if (err && uhs_en) {
2815 uhs_en = false;
2816 mmc_power_cycle(mmc);
2817 goto retry;
2818 }
Andy Fleming272cc702008-10-30 16:41:01 -05002819
2820 /* If the command timed out, we check for an MMC card */
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002821 if (err == -ETIMEDOUT) {
Andy Fleming272cc702008-10-30 16:41:01 -05002822 err = mmc_send_op_cond(mmc);
2823
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002824 if (err) {
Paul Burton56196822013-09-04 16:12:25 +01002825#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002826 pr_err("Card did not respond to voltage select!\n");
Paul Burton56196822013-09-04 16:12:25 +01002827#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002828 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002829 }
2830 }
2831
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002832 return err;
2833}
2834
2835int mmc_start_init(struct mmc *mmc)
2836{
2837 bool no_card;
2838 int err = 0;
2839
2840 /*
2841 * all hosts are capable of 1 bit bus-width and able to use the legacy
2842 * timings.
2843 */
Faiz Abbase8d5dde2020-02-26 13:44:32 +05302844 mmc->host_caps = mmc->cfg->host_caps | MMC_CAP(MMC_LEGACY) |
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002845 MMC_CAP(MMC_LEGACY) | MMC_MODE_1BIT;
Faiz Abbas32860bd2020-02-26 13:44:30 +05302846#if CONFIG_IS_ENABLED(DM_MMC)
2847 mmc_deferred_probe(mmc);
2848#endif
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002849#if !defined(CONFIG_MMC_BROKEN_CD)
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002850 no_card = mmc_getcd(mmc) == 0;
2851#else
2852 no_card = 0;
2853#endif
2854#if !CONFIG_IS_ENABLED(DM_MMC)
Baruch Siachfea39392019-07-22 15:52:12 +03002855 /* we pretend there's no card when init is NULL */
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002856 no_card = no_card || (mmc->cfg->ops->init == NULL);
2857#endif
2858 if (no_card) {
2859 mmc->has_init = 0;
2860#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
2861 pr_err("MMC: no card present\n");
2862#endif
2863 return -ENOMEDIUM;
2864 }
2865
2866 err = mmc_get_op_cond(mmc);
2867
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002868 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002869 mmc->init_in_progress = 1;
2870
2871 return err;
2872}
2873
2874static int mmc_complete_init(struct mmc *mmc)
2875{
2876 int err = 0;
2877
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002878 mmc->init_in_progress = 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002879 if (mmc->op_cond_pending)
2880 err = mmc_complete_op_cond(mmc);
2881
2882 if (!err)
2883 err = mmc_startup(mmc);
Lei Wenbc897b12011-05-02 16:26:26 +00002884 if (err)
2885 mmc->has_init = 0;
2886 else
2887 mmc->has_init = 1;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002888 return err;
2889}
2890
2891int mmc_init(struct mmc *mmc)
2892{
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002893 int err = 0;
Vipul Kumar36332b62018-05-03 12:20:54 +05302894 __maybe_unused ulong start;
Simon Glassc4d660d2017-07-04 13:31:19 -06002895#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass33fb2112016-05-01 13:52:41 -06002896 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc->dev);
Che-Liang Chioue9550442012-11-28 15:21:13 +00002897
Simon Glass33fb2112016-05-01 13:52:41 -06002898 upriv->mmc = mmc;
2899#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00002900 if (mmc->has_init)
2901 return 0;
Mateusz Zalegad803fea2014-04-29 20:15:30 +02002902
2903 start = get_timer(0);
2904
Che-Liang Chioue9550442012-11-28 15:21:13 +00002905 if (!mmc->init_in_progress)
2906 err = mmc_start_init(mmc);
2907
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002908 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002909 err = mmc_complete_init(mmc);
Jagan Teki919b4852017-01-10 11:18:43 +01002910 if (err)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002911 pr_info("%s: %d, time %lu\n", __func__, err, get_timer(start));
Jagan Teki919b4852017-01-10 11:18:43 +01002912
Lei Wenbc897b12011-05-02 16:26:26 +00002913 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002914}
2915
Marek Vasutfceea992019-01-29 04:45:51 +01002916#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT) || \
2917 CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
2918 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
2919int mmc_deinit(struct mmc *mmc)
2920{
2921 u32 caps_filtered;
2922
2923 if (!mmc->has_init)
2924 return 0;
2925
2926 if (IS_SD(mmc)) {
2927 caps_filtered = mmc->card_caps &
2928 ~(MMC_CAP(UHS_SDR12) | MMC_CAP(UHS_SDR25) |
2929 MMC_CAP(UHS_SDR50) | MMC_CAP(UHS_DDR50) |
2930 MMC_CAP(UHS_SDR104));
2931
2932 return sd_select_mode_and_width(mmc, caps_filtered);
2933 } else {
2934 caps_filtered = mmc->card_caps &
2935 ~(MMC_CAP(MMC_HS_200) | MMC_CAP(MMC_HS_400));
2936
2937 return mmc_select_mode_and_width(mmc, caps_filtered);
2938 }
2939}
2940#endif
2941
Markus Niebelab711882013-12-16 13:40:46 +01002942int mmc_set_dsr(struct mmc *mmc, u16 val)
2943{
2944 mmc->dsr = val;
2945 return 0;
2946}
2947
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002948/* CPU-specific MMC initializations */
2949__weak int cpu_mmc_init(bd_t *bis)
Andy Fleming272cc702008-10-30 16:41:01 -05002950{
2951 return -1;
2952}
2953
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002954/* board-specific MMC initializations. */
2955__weak int board_mmc_init(bd_t *bis)
2956{
2957 return -1;
2958}
Andy Fleming272cc702008-10-30 16:41:01 -05002959
Che-Liang Chioue9550442012-11-28 15:21:13 +00002960void mmc_set_preinit(struct mmc *mmc, int preinit)
2961{
2962 mmc->preinit = preinit;
2963}
2964
Faiz Abbas8a856db2018-02-12 19:35:24 +05302965#if CONFIG_IS_ENABLED(DM_MMC)
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002966static int mmc_probe(bd_t *bis)
2967{
Simon Glass4a1db6d2015-12-29 05:22:49 -07002968 int ret, i;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002969 struct uclass *uc;
Simon Glass4a1db6d2015-12-29 05:22:49 -07002970 struct udevice *dev;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002971
2972 ret = uclass_get(UCLASS_MMC, &uc);
2973 if (ret)
2974 return ret;
2975
Simon Glass4a1db6d2015-12-29 05:22:49 -07002976 /*
2977 * Try to add them in sequence order. Really with driver model we
2978 * should allow holes, but the current MMC list does not allow that.
2979 * So if we request 0, 1, 3 we will get 0, 1, 2.
2980 */
2981 for (i = 0; ; i++) {
2982 ret = uclass_get_device_by_seq(UCLASS_MMC, i, &dev);
2983 if (ret == -ENODEV)
2984 break;
2985 }
2986 uclass_foreach_dev(dev, uc) {
2987 ret = device_probe(dev);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002988 if (ret)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002989 pr_err("%s - probe failed: %d\n", dev->name, ret);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002990 }
2991
2992 return 0;
2993}
2994#else
2995static int mmc_probe(bd_t *bis)
2996{
2997 if (board_mmc_init(bis) < 0)
2998 cpu_mmc_init(bis);
2999
3000 return 0;
3001}
3002#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00003003
Andy Fleming272cc702008-10-30 16:41:01 -05003004int mmc_initialize(bd_t *bis)
3005{
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02003006 static int initialized = 0;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003007 int ret;
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02003008 if (initialized) /* Avoid initializing mmc multiple times */
3009 return 0;
3010 initialized = 1;
3011
Simon Glassc4d660d2017-07-04 13:31:19 -06003012#if !CONFIG_IS_ENABLED(BLK)
Marek Vasutb5b838f2016-12-01 02:06:33 +01003013#if !CONFIG_IS_ENABLED(MMC_TINY)
Simon Glassc40fdca2016-05-01 13:52:35 -06003014 mmc_list_init();
3015#endif
Marek Vasutb5b838f2016-12-01 02:06:33 +01003016#endif
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06003017 ret = mmc_probe(bis);
3018 if (ret)
3019 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05003020
Ying Zhangbb0dc102013-08-16 15:16:11 +08003021#ifndef CONFIG_SPL_BUILD
Andy Fleming272cc702008-10-30 16:41:01 -05003022 print_mmc_devices(',');
Ying Zhangbb0dc102013-08-16 15:16:11 +08003023#endif
Andy Fleming272cc702008-10-30 16:41:01 -05003024
Simon Glassc40fdca2016-05-01 13:52:35 -06003025 mmc_do_preinit();
Andy Fleming272cc702008-10-30 16:41:01 -05003026 return 0;
3027}
Tomas Melincd3d4882016-11-25 11:01:03 +02003028
Lokesh Vutla80f02012019-09-09 14:40:36 +05303029#if CONFIG_IS_ENABLED(DM_MMC)
3030int mmc_init_device(int num)
3031{
3032 struct udevice *dev;
3033 struct mmc *m;
3034 int ret;
3035
3036 ret = uclass_get_device(UCLASS_MMC, num, &dev);
3037 if (ret)
3038 return ret;
3039
3040 m = mmc_get_mmc_dev(dev);
3041 if (!m)
3042 return 0;
3043#ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
3044 mmc_set_preinit(m, 1);
3045#endif
3046 if (m->preinit)
3047 mmc_start_init(m);
3048
3049 return 0;
3050}
3051#endif
3052
Tomas Melincd3d4882016-11-25 11:01:03 +02003053#ifdef CONFIG_CMD_BKOPS_ENABLE
3054int mmc_set_bkops_enable(struct mmc *mmc)
3055{
3056 int err;
3057 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
3058
3059 err = mmc_send_ext_csd(mmc, ext_csd);
3060 if (err) {
3061 puts("Could not get ext_csd register values\n");
3062 return err;
3063 }
3064
3065 if (!(ext_csd[EXT_CSD_BKOPS_SUPPORT] & 0x1)) {
3066 puts("Background operations not supported on device\n");
3067 return -EMEDIUMTYPE;
3068 }
3069
3070 if (ext_csd[EXT_CSD_BKOPS_EN] & 0x1) {
3071 puts("Background operations already enabled\n");
3072 return 0;
3073 }
3074
3075 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BKOPS_EN, 1);
3076 if (err) {
3077 puts("Failed to enable manual background operations\n");
3078 return err;
3079 }
3080
3081 puts("Enabled manual background operations\n");
3082
3083 return 0;
3084}
3085#endif