blob: 84d157ff4033518f98073ed9d5f094bf85ce1811 [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
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +020024static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +020025static int mmc_power_cycle(struct mmc *mmc);
Marek Vasut62d77ce2018-04-15 00:37:11 +020026#if !CONFIG_IS_ENABLED(MMC_TINY)
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +020027static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps);
Marek Vasutb5b838f2016-12-01 02:06:33 +010028#endif
29
Simon Glasse7881d82017-07-29 11:35:31 -060030#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020031
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +010032#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020033static int mmc_wait_dat0(struct mmc *mmc, int state, int timeout)
34{
35 return -ENOSYS;
36}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +010037#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020038
Jeroen Hofstee750121c2014-07-12 21:24:08 +020039__weak int board_mmc_getwp(struct mmc *mmc)
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000040{
41 return -1;
42}
43
44int mmc_getwp(struct mmc *mmc)
45{
46 int wp;
47
48 wp = board_mmc_getwp(mmc);
49
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000050 if (wp < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020051 if (mmc->cfg->ops->getwp)
52 wp = mmc->cfg->ops->getwp(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000053 else
54 wp = 0;
55 }
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000056
57 return wp;
58}
59
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +020060__weak int board_mmc_getcd(struct mmc *mmc)
61{
Stefano Babic11fdade2010-02-05 15:04:43 +010062 return -1;
63}
Simon Glass8ca51e52016-06-12 23:30:22 -060064#endif
Stefano Babic11fdade2010-02-05 15:04:43 +010065
Marek Vasut8635ff92012-03-15 18:41:35 +000066#ifdef CONFIG_MMC_TRACE
Simon Glassc0c76eb2016-06-12 23:30:20 -060067void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd)
68{
69 printf("CMD_SEND:%d\n", cmd->cmdidx);
70 printf("\t\tARG\t\t\t 0x%08X\n", cmd->cmdarg);
71}
72
73void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, int ret)
74{
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +000075 int i;
76 u8 *ptr;
77
Bin Meng7863ce52016-03-17 21:53:14 -070078 if (ret) {
79 printf("\t\tRET\t\t\t %d\n", ret);
80 } else {
81 switch (cmd->resp_type) {
82 case MMC_RSP_NONE:
83 printf("\t\tMMC_RSP_NONE\n");
84 break;
85 case MMC_RSP_R1:
86 printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08X \n",
87 cmd->response[0]);
88 break;
89 case MMC_RSP_R1b:
90 printf("\t\tMMC_RSP_R1b\t\t 0x%08X \n",
91 cmd->response[0]);
92 break;
93 case MMC_RSP_R2:
94 printf("\t\tMMC_RSP_R2\t\t 0x%08X \n",
95 cmd->response[0]);
96 printf("\t\t \t\t 0x%08X \n",
97 cmd->response[1]);
98 printf("\t\t \t\t 0x%08X \n",
99 cmd->response[2]);
100 printf("\t\t \t\t 0x%08X \n",
101 cmd->response[3]);
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000102 printf("\n");
Bin Meng7863ce52016-03-17 21:53:14 -0700103 printf("\t\t\t\t\tDUMPING DATA\n");
104 for (i = 0; i < 4; i++) {
105 int j;
106 printf("\t\t\t\t\t%03d - ", i*4);
107 ptr = (u8 *)&cmd->response[i];
108 ptr += 3;
109 for (j = 0; j < 4; j++)
110 printf("%02X ", *ptr--);
111 printf("\n");
112 }
113 break;
114 case MMC_RSP_R3:
115 printf("\t\tMMC_RSP_R3,4\t\t 0x%08X \n",
116 cmd->response[0]);
117 break;
118 default:
119 printf("\t\tERROR MMC rsp not supported\n");
120 break;
Bin Meng53e8e402016-03-17 21:53:13 -0700121 }
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000122 }
Simon Glassc0c76eb2016-06-12 23:30:20 -0600123}
124
125void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd)
126{
127 int status;
128
129 status = (cmd->response[0] & MMC_STATUS_CURR_STATE) >> 9;
130 printf("CURR STATE:%d\n", status);
131}
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000132#endif
Simon Glassc0c76eb2016-06-12 23:30:20 -0600133
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200134#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
135const char *mmc_mode_name(enum bus_mode mode)
136{
137 static const char *const names[] = {
138 [MMC_LEGACY] = "MMC legacy",
139 [SD_LEGACY] = "SD Legacy",
140 [MMC_HS] = "MMC High Speed (26MHz)",
141 [SD_HS] = "SD High Speed (50MHz)",
142 [UHS_SDR12] = "UHS SDR12 (25MHz)",
143 [UHS_SDR25] = "UHS SDR25 (50MHz)",
144 [UHS_SDR50] = "UHS SDR50 (100MHz)",
145 [UHS_SDR104] = "UHS SDR104 (208MHz)",
146 [UHS_DDR50] = "UHS DDR50 (50MHz)",
147 [MMC_HS_52] = "MMC High Speed (52MHz)",
148 [MMC_DDR_52] = "MMC DDR52 (52MHz)",
149 [MMC_HS_200] = "HS200 (200MHz)",
Peng Fan3dd26262018-08-10 14:07:54 +0800150 [MMC_HS_400] = "HS400 (200MHz)",
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200151 };
152
153 if (mode >= MMC_MODES_END)
154 return "Unknown mode";
155 else
156 return names[mode];
157}
158#endif
159
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200160static uint mmc_mode2freq(struct mmc *mmc, enum bus_mode mode)
161{
162 static const int freqs[] = {
Jaehoon Chung1b313aa2018-01-30 14:10:16 +0900163 [MMC_LEGACY] = 25000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200164 [SD_LEGACY] = 25000000,
165 [MMC_HS] = 26000000,
166 [SD_HS] = 50000000,
Jaehoon Chung1b313aa2018-01-30 14:10:16 +0900167 [MMC_HS_52] = 52000000,
168 [MMC_DDR_52] = 52000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200169 [UHS_SDR12] = 25000000,
170 [UHS_SDR25] = 50000000,
171 [UHS_SDR50] = 100000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200172 [UHS_DDR50] = 50000000,
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100173 [UHS_SDR104] = 208000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200174 [MMC_HS_200] = 200000000,
Peng Fan3dd26262018-08-10 14:07:54 +0800175 [MMC_HS_400] = 200000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200176 };
177
178 if (mode == MMC_LEGACY)
179 return mmc->legacy_speed;
180 else if (mode >= MMC_MODES_END)
181 return 0;
182 else
183 return freqs[mode];
184}
185
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200186static int mmc_select_mode(struct mmc *mmc, enum bus_mode mode)
187{
188 mmc->selected_mode = mode;
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200189 mmc->tran_speed = mmc_mode2freq(mmc, mode);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200190 mmc->ddr_mode = mmc_is_mode_ddr(mode);
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900191 pr_debug("selecting mode %s (freq : %d MHz)\n", mmc_mode_name(mode),
192 mmc->tran_speed / 1000000);
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200193 return 0;
194}
195
Simon Glasse7881d82017-07-29 11:35:31 -0600196#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glassc0c76eb2016-06-12 23:30:20 -0600197int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
198{
199 int ret;
200
201 mmmc_trace_before_send(mmc, cmd);
202 ret = mmc->cfg->ops->send_cmd(mmc, cmd, data);
203 mmmc_trace_after_send(mmc, cmd, ret);
204
Marek Vasut8635ff92012-03-15 18:41:35 +0000205 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500206}
Simon Glass8ca51e52016-06-12 23:30:22 -0600207#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500208
Paul Burtonda61fa52013-09-09 15:30:26 +0100209int mmc_send_status(struct mmc *mmc, int timeout)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000210{
211 struct mmc_cmd cmd;
Jan Kloetzked617c422012-02-05 22:29:12 +0000212 int err, retries = 5;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000213
214 cmd.cmdidx = MMC_CMD_SEND_STATUS;
215 cmd.resp_type = MMC_RSP_R1;
Marek Vasutaaf3d412011-08-10 09:24:48 +0200216 if (!mmc_host_is_spi(mmc))
217 cmd.cmdarg = mmc->rca << 16;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000218
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500219 while (1) {
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000220 err = mmc_send_cmd(mmc, &cmd, NULL);
Jan Kloetzked617c422012-02-05 22:29:12 +0000221 if (!err) {
222 if ((cmd.response[0] & MMC_STATUS_RDY_FOR_DATA) &&
223 (cmd.response[0] & MMC_STATUS_CURR_STATE) !=
224 MMC_STATE_PRG)
225 break;
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +0200226
227 if (cmd.response[0] & MMC_STATUS_MASK) {
Paul Burton56196822013-09-04 16:12:25 +0100228#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100229 pr_err("Status Error: 0x%08X\n",
230 cmd.response[0]);
Paul Burton56196822013-09-04 16:12:25 +0100231#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900232 return -ECOMM;
Jan Kloetzked617c422012-02-05 22:29:12 +0000233 }
234 } else if (--retries < 0)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000235 return err;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000236
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500237 if (timeout-- <= 0)
238 break;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000239
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500240 udelay(1000);
241 }
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000242
Simon Glassc0c76eb2016-06-12 23:30:20 -0600243 mmc_trace_state(mmc, &cmd);
Jongman Heo5b0c9422012-06-03 21:32:13 +0000244 if (timeout <= 0) {
Paul Burton56196822013-09-04 16:12:25 +0100245#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100246 pr_err("Timeout waiting card ready\n");
Paul Burton56196822013-09-04 16:12:25 +0100247#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900248 return -ETIMEDOUT;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000249 }
250
251 return 0;
252}
253
Paul Burtonda61fa52013-09-09 15:30:26 +0100254int mmc_set_blocklen(struct mmc *mmc, int len)
Andy Fleming272cc702008-10-30 16:41:01 -0500255{
256 struct mmc_cmd cmd;
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200257 int err;
Andy Fleming272cc702008-10-30 16:41:01 -0500258
Andrew Gabbasov786e8f82014-12-01 06:59:09 -0600259 if (mmc->ddr_mode)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900260 return 0;
261
Andy Fleming272cc702008-10-30 16:41:01 -0500262 cmd.cmdidx = MMC_CMD_SET_BLOCKLEN;
263 cmd.resp_type = MMC_RSP_R1;
264 cmd.cmdarg = len;
Andy Fleming272cc702008-10-30 16:41:01 -0500265
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200266 err = mmc_send_cmd(mmc, &cmd, NULL);
267
268#ifdef CONFIG_MMC_QUIRKS
269 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SET_BLOCKLEN)) {
270 int retries = 4;
271 /*
272 * It has been seen that SET_BLOCKLEN may fail on the first
273 * attempt, let's try a few more time
274 */
275 do {
276 err = mmc_send_cmd(mmc, &cmd, NULL);
277 if (!err)
278 break;
279 } while (retries--);
280 }
281#endif
282
283 return err;
Andy Fleming272cc702008-10-30 16:41:01 -0500284}
285
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100286#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200287static const u8 tuning_blk_pattern_4bit[] = {
288 0xff, 0x0f, 0xff, 0x00, 0xff, 0xcc, 0xc3, 0xcc,
289 0xc3, 0x3c, 0xcc, 0xff, 0xfe, 0xff, 0xfe, 0xef,
290 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xfb, 0xff, 0xfb,
291 0xbf, 0xff, 0x7f, 0xff, 0x77, 0xf7, 0xbd, 0xef,
292 0xff, 0xf0, 0xff, 0xf0, 0x0f, 0xfc, 0xcc, 0x3c,
293 0xcc, 0x33, 0xcc, 0xcf, 0xff, 0xef, 0xff, 0xee,
294 0xff, 0xfd, 0xff, 0xfd, 0xdf, 0xff, 0xbf, 0xff,
295 0xbb, 0xff, 0xf7, 0xff, 0xf7, 0x7f, 0x7b, 0xde,
296};
297
298static const u8 tuning_blk_pattern_8bit[] = {
299 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
300 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc, 0xcc,
301 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff, 0xff,
302 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee, 0xff,
303 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd, 0xdd,
304 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff, 0xbb,
305 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff,
306 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee, 0xff,
307 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00,
308 0x00, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc,
309 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff,
310 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee,
311 0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd,
312 0xdd, 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff,
313 0xbb, 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff,
314 0xff, 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee,
315};
316
317int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error)
318{
319 struct mmc_cmd cmd;
320 struct mmc_data data;
321 const u8 *tuning_block_pattern;
322 int size, err;
323
324 if (mmc->bus_width == 8) {
325 tuning_block_pattern = tuning_blk_pattern_8bit;
326 size = sizeof(tuning_blk_pattern_8bit);
327 } else if (mmc->bus_width == 4) {
328 tuning_block_pattern = tuning_blk_pattern_4bit;
329 size = sizeof(tuning_blk_pattern_4bit);
330 } else {
331 return -EINVAL;
332 }
333
334 ALLOC_CACHE_ALIGN_BUFFER(u8, data_buf, size);
335
336 cmd.cmdidx = opcode;
337 cmd.cmdarg = 0;
338 cmd.resp_type = MMC_RSP_R1;
339
340 data.dest = (void *)data_buf;
341 data.blocks = 1;
342 data.blocksize = size;
343 data.flags = MMC_DATA_READ;
344
345 err = mmc_send_cmd(mmc, &cmd, &data);
346 if (err)
347 return err;
348
349 if (memcmp(data_buf, tuning_block_pattern, size))
350 return -EIO;
351
352 return 0;
353}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100354#endif
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200355
Sascha Silbeff8fef52013-06-14 13:07:25 +0200356static int mmc_read_blocks(struct mmc *mmc, void *dst, lbaint_t start,
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000357 lbaint_t blkcnt)
Andy Fleming272cc702008-10-30 16:41:01 -0500358{
359 struct mmc_cmd cmd;
360 struct mmc_data data;
361
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700362 if (blkcnt > 1)
363 cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK;
364 else
365 cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK;
Andy Fleming272cc702008-10-30 16:41:01 -0500366
367 if (mmc->high_capacity)
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700368 cmd.cmdarg = start;
Andy Fleming272cc702008-10-30 16:41:01 -0500369 else
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700370 cmd.cmdarg = start * mmc->read_bl_len;
Andy Fleming272cc702008-10-30 16:41:01 -0500371
372 cmd.resp_type = MMC_RSP_R1;
Andy Fleming272cc702008-10-30 16:41:01 -0500373
374 data.dest = dst;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700375 data.blocks = blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500376 data.blocksize = mmc->read_bl_len;
377 data.flags = MMC_DATA_READ;
378
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700379 if (mmc_send_cmd(mmc, &cmd, &data))
380 return 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500381
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700382 if (blkcnt > 1) {
383 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
384 cmd.cmdarg = 0;
385 cmd.resp_type = MMC_RSP_R1b;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700386 if (mmc_send_cmd(mmc, &cmd, NULL)) {
Paul Burton56196822013-09-04 16:12:25 +0100387#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100388 pr_err("mmc fail to send stop cmd\n");
Paul Burton56196822013-09-04 16:12:25 +0100389#endif
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700390 return 0;
391 }
Andy Fleming272cc702008-10-30 16:41:01 -0500392 }
393
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700394 return blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500395}
396
Simon Glassc4d660d2017-07-04 13:31:19 -0600397#if CONFIG_IS_ENABLED(BLK)
Simon Glass7dba0b92016-06-12 23:30:15 -0600398ulong mmc_bread(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600399#else
Simon Glass7dba0b92016-06-12 23:30:15 -0600400ulong mmc_bread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt,
401 void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600402#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500403{
Simon Glassc4d660d2017-07-04 13:31:19 -0600404#if CONFIG_IS_ENABLED(BLK)
Simon Glass33fb2112016-05-01 13:52:41 -0600405 struct blk_desc *block_dev = dev_get_uclass_platdata(dev);
406#endif
Simon Glassbcce53d2016-02-29 15:25:51 -0700407 int dev_num = block_dev->devnum;
Stephen Warren873cc1d2015-12-07 11:38:49 -0700408 int err;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700409 lbaint_t cur, blocks_todo = blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500410
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700411 if (blkcnt == 0)
412 return 0;
413
414 struct mmc *mmc = find_mmc_device(dev_num);
Andy Fleming272cc702008-10-30 16:41:01 -0500415 if (!mmc)
416 return 0;
417
Marek Vasutb5b838f2016-12-01 02:06:33 +0100418 if (CONFIG_IS_ENABLED(MMC_TINY))
419 err = mmc_switch_part(mmc, block_dev->hwpart);
420 else
421 err = blk_dselect_hwpart(block_dev, block_dev->hwpart);
422
Stephen Warren873cc1d2015-12-07 11:38:49 -0700423 if (err < 0)
424 return 0;
425
Simon Glassc40fdca2016-05-01 13:52:35 -0600426 if ((start + blkcnt) > block_dev->lba) {
Paul Burton56196822013-09-04 16:12:25 +0100427#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100428 pr_err("MMC: block number 0x" LBAF " exceeds max(0x" LBAF ")\n",
429 start + blkcnt, block_dev->lba);
Paul Burton56196822013-09-04 16:12:25 +0100430#endif
Lei Wend2bf29e2010-09-13 22:07:27 +0800431 return 0;
432 }
Andy Fleming272cc702008-10-30 16:41:01 -0500433
Simon Glass11692992015-06-23 15:38:50 -0600434 if (mmc_set_blocklen(mmc, mmc->read_bl_len)) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900435 pr_debug("%s: Failed to set blocklen\n", __func__);
Andy Fleming272cc702008-10-30 16:41:01 -0500436 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600437 }
Andy Fleming272cc702008-10-30 16:41:01 -0500438
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700439 do {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200440 cur = (blocks_todo > mmc->cfg->b_max) ?
441 mmc->cfg->b_max : blocks_todo;
Simon Glass11692992015-06-23 15:38:50 -0600442 if (mmc_read_blocks(mmc, dst, start, cur) != cur) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900443 pr_debug("%s: Failed to read blocks\n", __func__);
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700444 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600445 }
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700446 blocks_todo -= cur;
447 start += cur;
448 dst += cur * mmc->read_bl_len;
449 } while (blocks_todo > 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500450
451 return blkcnt;
452}
453
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000454static int mmc_go_idle(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -0500455{
456 struct mmc_cmd cmd;
457 int err;
458
459 udelay(1000);
460
461 cmd.cmdidx = MMC_CMD_GO_IDLE_STATE;
462 cmd.cmdarg = 0;
463 cmd.resp_type = MMC_RSP_NONE;
Andy Fleming272cc702008-10-30 16:41:01 -0500464
465 err = mmc_send_cmd(mmc, &cmd, NULL);
466
467 if (err)
468 return err;
469
470 udelay(2000);
471
472 return 0;
473}
474
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100475#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200476static int mmc_switch_voltage(struct mmc *mmc, int signal_voltage)
477{
478 struct mmc_cmd cmd;
479 int err = 0;
480
481 /*
482 * Send CMD11 only if the request is to switch the card to
483 * 1.8V signalling.
484 */
485 if (signal_voltage == MMC_SIGNAL_VOLTAGE_330)
486 return mmc_set_signal_voltage(mmc, signal_voltage);
487
488 cmd.cmdidx = SD_CMD_SWITCH_UHS18V;
489 cmd.cmdarg = 0;
490 cmd.resp_type = MMC_RSP_R1;
491
492 err = mmc_send_cmd(mmc, &cmd, NULL);
493 if (err)
494 return err;
495
496 if (!mmc_host_is_spi(mmc) && (cmd.response[0] & MMC_STATUS_ERROR))
497 return -EIO;
498
499 /*
500 * The card should drive cmd and dat[0:3] low immediately
501 * after the response of cmd11, but wait 100 us to be sure
502 */
503 err = mmc_wait_dat0(mmc, 0, 100);
504 if (err == -ENOSYS)
505 udelay(100);
506 else if (err)
507 return -ETIMEDOUT;
508
509 /*
510 * During a signal voltage level switch, the clock must be gated
511 * for 5 ms according to the SD spec
512 */
Jaehoon Chung65117182018-01-26 19:25:29 +0900513 mmc_set_clock(mmc, mmc->clock, MMC_CLK_DISABLE);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200514
515 err = mmc_set_signal_voltage(mmc, signal_voltage);
516 if (err)
517 return err;
518
519 /* Keep clock gated for at least 10 ms, though spec only says 5 ms */
520 mdelay(10);
Jaehoon Chung65117182018-01-26 19:25:29 +0900521 mmc_set_clock(mmc, mmc->clock, MMC_CLK_ENABLE);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200522
523 /*
524 * Failure to switch is indicated by the card holding
525 * dat[0:3] low. Wait for at least 1 ms according to spec
526 */
527 err = mmc_wait_dat0(mmc, 1, 1000);
528 if (err == -ENOSYS)
529 udelay(1000);
530 else if (err)
531 return -ETIMEDOUT;
532
533 return 0;
534}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100535#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200536
537static int sd_send_op_cond(struct mmc *mmc, bool uhs_en)
Andy Fleming272cc702008-10-30 16:41:01 -0500538{
539 int timeout = 1000;
540 int err;
541 struct mmc_cmd cmd;
542
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500543 while (1) {
Andy Fleming272cc702008-10-30 16:41:01 -0500544 cmd.cmdidx = MMC_CMD_APP_CMD;
545 cmd.resp_type = MMC_RSP_R1;
546 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500547
548 err = mmc_send_cmd(mmc, &cmd, NULL);
549
550 if (err)
551 return err;
552
553 cmd.cmdidx = SD_CMD_APP_SEND_OP_COND;
554 cmd.resp_type = MMC_RSP_R3;
Stefano Babic250de122010-01-20 18:20:39 +0100555
556 /*
557 * Most cards do not answer if some reserved bits
558 * in the ocr are set. However, Some controller
559 * can set bit 7 (reserved for low voltages), but
560 * how to manage low voltages SD card is not yet
561 * specified.
562 */
Thomas Choud52ebf12010-12-24 13:12:21 +0000563 cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 :
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200564 (mmc->cfg->voltages & 0xff8000);
Andy Fleming272cc702008-10-30 16:41:01 -0500565
566 if (mmc->version == SD_VERSION_2)
567 cmd.cmdarg |= OCR_HCS;
568
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200569 if (uhs_en)
570 cmd.cmdarg |= OCR_S18R;
571
Andy Fleming272cc702008-10-30 16:41:01 -0500572 err = mmc_send_cmd(mmc, &cmd, NULL);
573
574 if (err)
575 return err;
576
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500577 if (cmd.response[0] & OCR_BUSY)
578 break;
Andy Fleming272cc702008-10-30 16:41:01 -0500579
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500580 if (timeout-- <= 0)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900581 return -EOPNOTSUPP;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500582
583 udelay(1000);
584 }
Andy Fleming272cc702008-10-30 16:41:01 -0500585
586 if (mmc->version != SD_VERSION_2)
587 mmc->version = SD_VERSION_1_0;
588
Thomas Choud52ebf12010-12-24 13:12:21 +0000589 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
590 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
591 cmd.resp_type = MMC_RSP_R3;
592 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000593
594 err = mmc_send_cmd(mmc, &cmd, NULL);
595
596 if (err)
597 return err;
598 }
599
Rabin Vincent998be3d2009-04-05 13:30:56 +0530600 mmc->ocr = cmd.response[0];
Andy Fleming272cc702008-10-30 16:41:01 -0500601
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100602#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200603 if (uhs_en && !(mmc_host_is_spi(mmc)) && (cmd.response[0] & 0x41000000)
604 == 0x41000000) {
605 err = mmc_switch_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
606 if (err)
607 return err;
608 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100609#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200610
Andy Fleming272cc702008-10-30 16:41:01 -0500611 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
612 mmc->rca = 0;
613
614 return 0;
615}
616
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500617static int mmc_send_op_cond_iter(struct mmc *mmc, int use_arg)
Andy Fleming272cc702008-10-30 16:41:01 -0500618{
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500619 struct mmc_cmd cmd;
Andy Fleming272cc702008-10-30 16:41:01 -0500620 int err;
621
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500622 cmd.cmdidx = MMC_CMD_SEND_OP_COND;
623 cmd.resp_type = MMC_RSP_R3;
624 cmd.cmdarg = 0;
Rob Herring5a203972015-03-23 17:56:59 -0500625 if (use_arg && !mmc_host_is_spi(mmc))
626 cmd.cmdarg = OCR_HCS |
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200627 (mmc->cfg->voltages &
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500628 (mmc->ocr & OCR_VOLTAGE_MASK)) |
629 (mmc->ocr & OCR_ACCESS_MODE);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000630
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500631 err = mmc_send_cmd(mmc, &cmd, NULL);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000632 if (err)
633 return err;
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500634 mmc->ocr = cmd.response[0];
Che-Liang Chioue9550442012-11-28 15:21:13 +0000635 return 0;
636}
637
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200638static int mmc_send_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000639{
Che-Liang Chioue9550442012-11-28 15:21:13 +0000640 int err, i;
641
Andy Fleming272cc702008-10-30 16:41:01 -0500642 /* Some cards seem to need this */
643 mmc_go_idle(mmc);
644
Raffaele Recalcati31cacba2011-03-11 02:01:13 +0000645 /* Asking to the card its capabilities */
Che-Liang Chioue9550442012-11-28 15:21:13 +0000646 for (i = 0; i < 2; i++) {
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500647 err = mmc_send_op_cond_iter(mmc, i != 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500648 if (err)
649 return err;
650
Che-Liang Chioue9550442012-11-28 15:21:13 +0000651 /* exit if not busy (flag seems to be inverted) */
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500652 if (mmc->ocr & OCR_BUSY)
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500653 break;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000654 }
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500655 mmc->op_cond_pending = 1;
656 return 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000657}
Andy Fleming272cc702008-10-30 16:41:01 -0500658
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200659static int mmc_complete_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000660{
661 struct mmc_cmd cmd;
662 int timeout = 1000;
Vipul Kumar36332b62018-05-03 12:20:54 +0530663 ulong start;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000664 int err;
665
666 mmc->op_cond_pending = 0;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500667 if (!(mmc->ocr & OCR_BUSY)) {
Yangbo Lud188b112016-08-02 15:33:18 +0800668 /* Some cards seem to need this */
669 mmc_go_idle(mmc);
670
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500671 start = get_timer(0);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500672 while (1) {
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500673 err = mmc_send_op_cond_iter(mmc, 1);
674 if (err)
675 return err;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500676 if (mmc->ocr & OCR_BUSY)
677 break;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500678 if (get_timer(start) > timeout)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900679 return -EOPNOTSUPP;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500680 udelay(100);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500681 }
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500682 }
Andy Fleming272cc702008-10-30 16:41:01 -0500683
Thomas Choud52ebf12010-12-24 13:12:21 +0000684 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
685 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
686 cmd.resp_type = MMC_RSP_R3;
687 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000688
689 err = mmc_send_cmd(mmc, &cmd, NULL);
690
691 if (err)
692 return err;
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500693
694 mmc->ocr = cmd.response[0];
Thomas Choud52ebf12010-12-24 13:12:21 +0000695 }
696
Andy Fleming272cc702008-10-30 16:41:01 -0500697 mmc->version = MMC_VERSION_UNKNOWN;
Andy Fleming272cc702008-10-30 16:41:01 -0500698
699 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
Stephen Warrendef816a2014-01-30 16:11:12 -0700700 mmc->rca = 1;
Andy Fleming272cc702008-10-30 16:41:01 -0500701
702 return 0;
703}
704
705
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000706static int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd)
Andy Fleming272cc702008-10-30 16:41:01 -0500707{
708 struct mmc_cmd cmd;
709 struct mmc_data data;
710 int err;
711
712 /* Get the Card Status Register */
713 cmd.cmdidx = MMC_CMD_SEND_EXT_CSD;
714 cmd.resp_type = MMC_RSP_R1;
715 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500716
Yoshihiro Shimodacdfd1ac2012-06-07 19:09:11 +0000717 data.dest = (char *)ext_csd;
Andy Fleming272cc702008-10-30 16:41:01 -0500718 data.blocks = 1;
Simon Glass8bfa1952013-04-03 08:54:30 +0000719 data.blocksize = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -0500720 data.flags = MMC_DATA_READ;
721
722 err = mmc_send_cmd(mmc, &cmd, &data);
723
724 return err;
725}
726
Simon Glassc40704f2016-06-12 23:30:18 -0600727int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value)
Andy Fleming272cc702008-10-30 16:41:01 -0500728{
729 struct mmc_cmd cmd;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000730 int timeout = 1000;
Maxime Riparda9003dc2016-11-04 16:18:08 +0100731 int retries = 3;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000732 int ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500733
734 cmd.cmdidx = MMC_CMD_SWITCH;
735 cmd.resp_type = MMC_RSP_R1b;
736 cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000737 (index << 16) |
738 (value << 8);
Andy Fleming272cc702008-10-30 16:41:01 -0500739
Maxime Riparda9003dc2016-11-04 16:18:08 +0100740 while (retries > 0) {
741 ret = mmc_send_cmd(mmc, &cmd, NULL);
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000742
Maxime Riparda9003dc2016-11-04 16:18:08 +0100743 /* Waiting for the ready status */
744 if (!ret) {
745 ret = mmc_send_status(mmc, timeout);
746 return ret;
747 }
748
749 retries--;
750 }
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000751
752 return ret;
753
Andy Fleming272cc702008-10-30 16:41:01 -0500754}
755
Marek Vasut62d77ce2018-04-15 00:37:11 +0200756#if !CONFIG_IS_ENABLED(MMC_TINY)
Marek Vasutb9a2a0e2019-01-03 21:19:24 +0100757static int mmc_set_card_speed(struct mmc *mmc, enum bus_mode mode,
758 bool hsdowngrade)
Andy Fleming272cc702008-10-30 16:41:01 -0500759{
Andy Fleming272cc702008-10-30 16:41:01 -0500760 int err;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200761 int speed_bits;
762
763 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
764
765 switch (mode) {
766 case MMC_HS:
767 case MMC_HS_52:
768 case MMC_DDR_52:
769 speed_bits = EXT_CSD_TIMING_HS;
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200770 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100771#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200772 case MMC_HS_200:
773 speed_bits = EXT_CSD_TIMING_HS200;
774 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100775#endif
Peng Fan3dd26262018-08-10 14:07:54 +0800776#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
777 case MMC_HS_400:
778 speed_bits = EXT_CSD_TIMING_HS400;
779 break;
780#endif
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200781 case MMC_LEGACY:
782 speed_bits = EXT_CSD_TIMING_LEGACY;
783 break;
784 default:
785 return -EINVAL;
786 }
787 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING,
788 speed_bits);
789 if (err)
790 return err;
791
Marek Vasutb9a2a0e2019-01-03 21:19:24 +0100792#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
793 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
794 /*
795 * In case the eMMC is in HS200/HS400 mode and we are downgrading
796 * to HS mode, the card clock are still running much faster than
797 * the supported HS mode clock, so we can not reliably read out
798 * Extended CSD. Reconfigure the controller to run at HS mode.
799 */
800 if (hsdowngrade) {
801 mmc_select_mode(mmc, MMC_HS);
802 mmc_set_clock(mmc, mmc_mode2freq(mmc, MMC_HS), false);
803 }
804#endif
805
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200806 if ((mode == MMC_HS) || (mode == MMC_HS_52)) {
807 /* Now check to see that it worked */
808 err = mmc_send_ext_csd(mmc, test_csd);
809 if (err)
810 return err;
811
812 /* No high-speed support */
813 if (!test_csd[EXT_CSD_HS_TIMING])
814 return -ENOTSUPP;
815 }
816
817 return 0;
818}
819
820static int mmc_get_capabilities(struct mmc *mmc)
821{
822 u8 *ext_csd = mmc->ext_csd;
823 char cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500824
Jean-Jacques Hiblot00e446f2017-11-30 17:43:56 +0100825 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -0500826
Thomas Choud52ebf12010-12-24 13:12:21 +0000827 if (mmc_host_is_spi(mmc))
828 return 0;
829
Andy Fleming272cc702008-10-30 16:41:01 -0500830 /* Only version 4 supports high-speed */
831 if (mmc->version < MMC_VERSION_4)
832 return 0;
833
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200834 if (!ext_csd) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100835 pr_err("No ext_csd found!\n"); /* this should enver happen */
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200836 return -ENOTSUPP;
837 }
838
Andrew Gabbasovfc5b32f2014-12-25 10:22:25 -0600839 mmc->card_caps |= MMC_MODE_4BIT | MMC_MODE_8BIT;
840
Peng Fan3dd26262018-08-10 14:07:54 +0800841 cardtype = ext_csd[EXT_CSD_CARD_TYPE];
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +0200842 mmc->cardtype = cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500843
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100844#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200845 if (cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V |
846 EXT_CSD_CARD_TYPE_HS200_1_8V)) {
847 mmc->card_caps |= MMC_MODE_HS200;
848 }
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +0100849#endif
Peng Fan3dd26262018-08-10 14:07:54 +0800850#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
851 if (cardtype & (EXT_CSD_CARD_TYPE_HS400_1_2V |
852 EXT_CSD_CARD_TYPE_HS400_1_8V)) {
853 mmc->card_caps |= MMC_MODE_HS400;
854 }
855#endif
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900856 if (cardtype & EXT_CSD_CARD_TYPE_52) {
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200857 if (cardtype & EXT_CSD_CARD_TYPE_DDR_52)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900858 mmc->card_caps |= MMC_MODE_DDR_52MHz;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200859 mmc->card_caps |= MMC_MODE_HS_52MHz;
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900860 }
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200861 if (cardtype & EXT_CSD_CARD_TYPE_26)
862 mmc->card_caps |= MMC_MODE_HS;
Andy Fleming272cc702008-10-30 16:41:01 -0500863
864 return 0;
865}
Marek Vasut62d77ce2018-04-15 00:37:11 +0200866#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500867
Stephen Warrenf866a462013-06-11 15:14:01 -0600868static int mmc_set_capacity(struct mmc *mmc, int part_num)
869{
870 switch (part_num) {
871 case 0:
872 mmc->capacity = mmc->capacity_user;
873 break;
874 case 1:
875 case 2:
876 mmc->capacity = mmc->capacity_boot;
877 break;
878 case 3:
879 mmc->capacity = mmc->capacity_rpmb;
880 break;
881 case 4:
882 case 5:
883 case 6:
884 case 7:
885 mmc->capacity = mmc->capacity_gp[part_num - 4];
886 break;
887 default:
888 return -1;
889 }
890
Simon Glassc40fdca2016-05-01 13:52:35 -0600891 mmc_get_blk_desc(mmc)->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Stephen Warrenf866a462013-06-11 15:14:01 -0600892
893 return 0;
894}
895
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100896#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +0200897static int mmc_boot_part_access_chk(struct mmc *mmc, unsigned int part_num)
898{
899 int forbidden = 0;
900 bool change = false;
901
902 if (part_num & PART_ACCESS_MASK)
903 forbidden = MMC_CAP(MMC_HS_200);
904
905 if (MMC_CAP(mmc->selected_mode) & forbidden) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900906 pr_debug("selected mode (%s) is forbidden for part %d\n",
907 mmc_mode_name(mmc->selected_mode), part_num);
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +0200908 change = true;
909 } else if (mmc->selected_mode != mmc->best_mode) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +0900910 pr_debug("selected mode is not optimal\n");
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +0200911 change = true;
912 }
913
914 if (change)
915 return mmc_select_mode_and_width(mmc,
916 mmc->card_caps & ~forbidden);
917
918 return 0;
919}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100920#else
921static inline int mmc_boot_part_access_chk(struct mmc *mmc,
922 unsigned int part_num)
923{
924 return 0;
925}
926#endif
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +0200927
Simon Glass7dba0b92016-06-12 23:30:15 -0600928int mmc_switch_part(struct mmc *mmc, unsigned int part_num)
Lei Wenbc897b12011-05-02 16:26:26 +0000929{
Stephen Warrenf866a462013-06-11 15:14:01 -0600930 int ret;
Lei Wenbc897b12011-05-02 16:26:26 +0000931
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +0200932 ret = mmc_boot_part_access_chk(mmc, part_num);
933 if (ret)
934 return ret;
935
Stephen Warrenf866a462013-06-11 15:14:01 -0600936 ret = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONF,
937 (mmc->part_config & ~PART_ACCESS_MASK)
938 | (part_num & PART_ACCESS_MASK));
Stephen Warrenf866a462013-06-11 15:14:01 -0600939
Peter Bigot6dc93e72014-09-02 18:31:23 -0500940 /*
941 * Set the capacity if the switch succeeded or was intended
942 * to return to representing the raw device.
943 */
Stephen Warren873cc1d2015-12-07 11:38:49 -0700944 if ((ret == 0) || ((ret == -ENODEV) && (part_num == 0))) {
Peter Bigot6dc93e72014-09-02 18:31:23 -0500945 ret = mmc_set_capacity(mmc, part_num);
Simon Glassfdbb1392016-05-01 13:52:37 -0600946 mmc_get_blk_desc(mmc)->hwpart = part_num;
Stephen Warren873cc1d2015-12-07 11:38:49 -0700947 }
Peter Bigot6dc93e72014-09-02 18:31:23 -0500948
949 return ret;
Lei Wenbc897b12011-05-02 16:26:26 +0000950}
951
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100952#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100953int mmc_hwpart_config(struct mmc *mmc,
954 const struct mmc_hwpart_conf *conf,
955 enum mmc_hwpart_conf_mode mode)
956{
957 u8 part_attrs = 0;
958 u32 enh_size_mult;
959 u32 enh_start_addr;
960 u32 gp_size_mult[4];
961 u32 max_enh_size_mult;
962 u32 tot_enh_size_mult = 0;
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +0100963 u8 wr_rel_set;
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100964 int i, pidx, err;
965 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
966
967 if (mode < MMC_HWPART_CONF_CHECK || mode > MMC_HWPART_CONF_COMPLETE)
968 return -EINVAL;
969
970 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100971 pr_err("eMMC >= 4.4 required for enhanced user data area\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100972 return -EMEDIUMTYPE;
973 }
974
975 if (!(mmc->part_support & PART_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100976 pr_err("Card does not support partitioning\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100977 return -EMEDIUMTYPE;
978 }
979
980 if (!mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100981 pr_err("Card does not define HC WP group size\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100982 return -EMEDIUMTYPE;
983 }
984
985 /* check partition alignment and total enhanced size */
986 if (conf->user.enh_size) {
987 if (conf->user.enh_size % mmc->hc_wp_grp_size ||
988 conf->user.enh_start % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100989 pr_err("User data enhanced area not HC WP group "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100990 "size aligned\n");
991 return -EINVAL;
992 }
993 part_attrs |= EXT_CSD_ENH_USR;
994 enh_size_mult = conf->user.enh_size / mmc->hc_wp_grp_size;
995 if (mmc->high_capacity) {
996 enh_start_addr = conf->user.enh_start;
997 } else {
998 enh_start_addr = (conf->user.enh_start << 9);
999 }
1000 } else {
1001 enh_size_mult = 0;
1002 enh_start_addr = 0;
1003 }
1004 tot_enh_size_mult += enh_size_mult;
1005
1006 for (pidx = 0; pidx < 4; pidx++) {
1007 if (conf->gp_part[pidx].size % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001008 pr_err("GP%i partition not HC WP group size "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001009 "aligned\n", pidx+1);
1010 return -EINVAL;
1011 }
1012 gp_size_mult[pidx] = conf->gp_part[pidx].size / mmc->hc_wp_grp_size;
1013 if (conf->gp_part[pidx].size && conf->gp_part[pidx].enhanced) {
1014 part_attrs |= EXT_CSD_ENH_GP(pidx);
1015 tot_enh_size_mult += gp_size_mult[pidx];
1016 }
1017 }
1018
1019 if (part_attrs && ! (mmc->part_support & ENHNCD_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001020 pr_err("Card does not support enhanced attribute\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001021 return -EMEDIUMTYPE;
1022 }
1023
1024 err = mmc_send_ext_csd(mmc, ext_csd);
1025 if (err)
1026 return err;
1027
1028 max_enh_size_mult =
1029 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+2] << 16) +
1030 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+1] << 8) +
1031 ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT];
1032 if (tot_enh_size_mult > max_enh_size_mult) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001033 pr_err("Total enhanced size exceeds maximum (%u > %u)\n",
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001034 tot_enh_size_mult, max_enh_size_mult);
1035 return -EMEDIUMTYPE;
1036 }
1037
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001038 /* The default value of EXT_CSD_WR_REL_SET is device
1039 * dependent, the values can only be changed if the
1040 * EXT_CSD_HS_CTRL_REL bit is set. The values can be
1041 * changed only once and before partitioning is completed. */
1042 wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
1043 if (conf->user.wr_rel_change) {
1044 if (conf->user.wr_rel_set)
1045 wr_rel_set |= EXT_CSD_WR_DATA_REL_USR;
1046 else
1047 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_USR;
1048 }
1049 for (pidx = 0; pidx < 4; pidx++) {
1050 if (conf->gp_part[pidx].wr_rel_change) {
1051 if (conf->gp_part[pidx].wr_rel_set)
1052 wr_rel_set |= EXT_CSD_WR_DATA_REL_GP(pidx);
1053 else
1054 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_GP(pidx);
1055 }
1056 }
1057
1058 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET] &&
1059 !(ext_csd[EXT_CSD_WR_REL_PARAM] & EXT_CSD_HS_CTRL_REL)) {
1060 puts("Card does not support host controlled partition write "
1061 "reliability settings\n");
1062 return -EMEDIUMTYPE;
1063 }
1064
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001065 if (ext_csd[EXT_CSD_PARTITION_SETTING] &
1066 EXT_CSD_PARTITION_SETTING_COMPLETED) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001067 pr_err("Card already partitioned\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001068 return -EPERM;
1069 }
1070
1071 if (mode == MMC_HWPART_CONF_CHECK)
1072 return 0;
1073
1074 /* Partitioning requires high-capacity size definitions */
1075 if (!(ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01)) {
1076 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1077 EXT_CSD_ERASE_GROUP_DEF, 1);
1078
1079 if (err)
1080 return err;
1081
1082 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
1083
1084 /* update erase group size to be high-capacity */
1085 mmc->erase_grp_size =
1086 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
1087
1088 }
1089
1090 /* all OK, write the configuration */
1091 for (i = 0; i < 4; i++) {
1092 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1093 EXT_CSD_ENH_START_ADDR+i,
1094 (enh_start_addr >> (i*8)) & 0xFF);
1095 if (err)
1096 return err;
1097 }
1098 for (i = 0; i < 3; i++) {
1099 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1100 EXT_CSD_ENH_SIZE_MULT+i,
1101 (enh_size_mult >> (i*8)) & 0xFF);
1102 if (err)
1103 return err;
1104 }
1105 for (pidx = 0; pidx < 4; pidx++) {
1106 for (i = 0; i < 3; i++) {
1107 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1108 EXT_CSD_GP_SIZE_MULT+pidx*3+i,
1109 (gp_size_mult[pidx] >> (i*8)) & 0xFF);
1110 if (err)
1111 return err;
1112 }
1113 }
1114 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1115 EXT_CSD_PARTITIONS_ATTRIBUTE, part_attrs);
1116 if (err)
1117 return err;
1118
1119 if (mode == MMC_HWPART_CONF_SET)
1120 return 0;
1121
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001122 /* The WR_REL_SET is a write-once register but shall be
1123 * written before setting PART_SETTING_COMPLETED. As it is
1124 * write-once we can only write it when completing the
1125 * partitioning. */
1126 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET]) {
1127 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1128 EXT_CSD_WR_REL_SET, wr_rel_set);
1129 if (err)
1130 return err;
1131 }
1132
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001133 /* Setting PART_SETTING_COMPLETED confirms the partition
1134 * configuration but it only becomes effective after power
1135 * cycle, so we do not adjust the partition related settings
1136 * in the mmc struct. */
1137
1138 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1139 EXT_CSD_PARTITION_SETTING,
1140 EXT_CSD_PARTITION_SETTING_COMPLETED);
1141 if (err)
1142 return err;
1143
1144 return 0;
1145}
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +01001146#endif
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001147
Simon Glasse7881d82017-07-29 11:35:31 -06001148#if !CONFIG_IS_ENABLED(DM_MMC)
Thierry Reding48972d92012-01-02 01:15:37 +00001149int mmc_getcd(struct mmc *mmc)
1150{
1151 int cd;
1152
1153 cd = board_mmc_getcd(mmc);
1154
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001155 if (cd < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001156 if (mmc->cfg->ops->getcd)
1157 cd = mmc->cfg->ops->getcd(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001158 else
1159 cd = 1;
1160 }
Thierry Reding48972d92012-01-02 01:15:37 +00001161
1162 return cd;
1163}
Simon Glass8ca51e52016-06-12 23:30:22 -06001164#endif
Thierry Reding48972d92012-01-02 01:15:37 +00001165
Marek Vasut62d77ce2018-04-15 00:37:11 +02001166#if !CONFIG_IS_ENABLED(MMC_TINY)
Kim Phillipsfdbb8732012-10-29 13:34:43 +00001167static int sd_switch(struct mmc *mmc, int mode, int group, u8 value, u8 *resp)
Andy Fleming272cc702008-10-30 16:41:01 -05001168{
1169 struct mmc_cmd cmd;
1170 struct mmc_data data;
1171
1172 /* Switch the frequency */
1173 cmd.cmdidx = SD_CMD_SWITCH_FUNC;
1174 cmd.resp_type = MMC_RSP_R1;
1175 cmd.cmdarg = (mode << 31) | 0xffffff;
1176 cmd.cmdarg &= ~(0xf << (group * 4));
1177 cmd.cmdarg |= value << (group * 4);
Andy Fleming272cc702008-10-30 16:41:01 -05001178
1179 data.dest = (char *)resp;
1180 data.blocksize = 64;
1181 data.blocks = 1;
1182 data.flags = MMC_DATA_READ;
1183
1184 return mmc_send_cmd(mmc, &cmd, &data);
1185}
1186
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001187static int sd_get_capabilities(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001188{
1189 int err;
1190 struct mmc_cmd cmd;
Suniel Mahesh18e7c8f2017-10-05 11:32:00 +05301191 ALLOC_CACHE_ALIGN_BUFFER(__be32, scr, 2);
1192 ALLOC_CACHE_ALIGN_BUFFER(__be32, switch_status, 16);
Andy Fleming272cc702008-10-30 16:41:01 -05001193 struct mmc_data data;
1194 int timeout;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001195#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001196 u32 sd3_bus_mode;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001197#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001198
Jean-Jacques Hiblot00e446f2017-11-30 17:43:56 +01001199 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(SD_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05001200
Thomas Choud52ebf12010-12-24 13:12:21 +00001201 if (mmc_host_is_spi(mmc))
1202 return 0;
1203
Andy Fleming272cc702008-10-30 16:41:01 -05001204 /* Read the SCR to find out if this card supports higher speeds */
1205 cmd.cmdidx = MMC_CMD_APP_CMD;
1206 cmd.resp_type = MMC_RSP_R1;
1207 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05001208
1209 err = mmc_send_cmd(mmc, &cmd, NULL);
1210
1211 if (err)
1212 return err;
1213
1214 cmd.cmdidx = SD_CMD_APP_SEND_SCR;
1215 cmd.resp_type = MMC_RSP_R1;
1216 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05001217
1218 timeout = 3;
1219
1220retry_scr:
Anton staaff781dd32011-10-03 13:54:59 +00001221 data.dest = (char *)scr;
Andy Fleming272cc702008-10-30 16:41:01 -05001222 data.blocksize = 8;
1223 data.blocks = 1;
1224 data.flags = MMC_DATA_READ;
1225
1226 err = mmc_send_cmd(mmc, &cmd, &data);
1227
1228 if (err) {
1229 if (timeout--)
1230 goto retry_scr;
1231
1232 return err;
1233 }
1234
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001235 mmc->scr[0] = __be32_to_cpu(scr[0]);
1236 mmc->scr[1] = __be32_to_cpu(scr[1]);
Andy Fleming272cc702008-10-30 16:41:01 -05001237
1238 switch ((mmc->scr[0] >> 24) & 0xf) {
Bin Meng53e8e402016-03-17 21:53:13 -07001239 case 0:
1240 mmc->version = SD_VERSION_1_0;
1241 break;
1242 case 1:
1243 mmc->version = SD_VERSION_1_10;
1244 break;
1245 case 2:
1246 mmc->version = SD_VERSION_2;
1247 if ((mmc->scr[0] >> 15) & 0x1)
1248 mmc->version = SD_VERSION_3;
1249 break;
1250 default:
1251 mmc->version = SD_VERSION_1_0;
1252 break;
Andy Fleming272cc702008-10-30 16:41:01 -05001253 }
1254
Alagu Sankarb44c7082010-05-12 15:08:24 +05301255 if (mmc->scr[0] & SD_DATA_4BIT)
1256 mmc->card_caps |= MMC_MODE_4BIT;
1257
Andy Fleming272cc702008-10-30 16:41:01 -05001258 /* Version 1.0 doesn't support switching */
1259 if (mmc->version == SD_VERSION_1_0)
1260 return 0;
1261
1262 timeout = 4;
1263 while (timeout--) {
1264 err = sd_switch(mmc, SD_SWITCH_CHECK, 0, 1,
Anton staaff781dd32011-10-03 13:54:59 +00001265 (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001266
1267 if (err)
1268 return err;
1269
1270 /* The high-speed function is busy. Try again */
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001271 if (!(__be32_to_cpu(switch_status[7]) & SD_HIGHSPEED_BUSY))
Andy Fleming272cc702008-10-30 16:41:01 -05001272 break;
1273 }
1274
Andy Fleming272cc702008-10-30 16:41:01 -05001275 /* If high-speed isn't supported, we return */
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001276 if (__be32_to_cpu(switch_status[3]) & SD_HIGHSPEED_SUPPORTED)
1277 mmc->card_caps |= MMC_CAP(SD_HS);
Andy Fleming272cc702008-10-30 16:41:01 -05001278
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001279#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001280 /* Version before 3.0 don't support UHS modes */
1281 if (mmc->version < SD_VERSION_3)
1282 return 0;
1283
1284 sd3_bus_mode = __be32_to_cpu(switch_status[3]) >> 16 & 0x1f;
1285 if (sd3_bus_mode & SD_MODE_UHS_SDR104)
1286 mmc->card_caps |= MMC_CAP(UHS_SDR104);
1287 if (sd3_bus_mode & SD_MODE_UHS_SDR50)
1288 mmc->card_caps |= MMC_CAP(UHS_SDR50);
1289 if (sd3_bus_mode & SD_MODE_UHS_SDR25)
1290 mmc->card_caps |= MMC_CAP(UHS_SDR25);
1291 if (sd3_bus_mode & SD_MODE_UHS_SDR12)
1292 mmc->card_caps |= MMC_CAP(UHS_SDR12);
1293 if (sd3_bus_mode & SD_MODE_UHS_DDR50)
1294 mmc->card_caps |= MMC_CAP(UHS_DDR50);
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001295#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001296
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001297 return 0;
1298}
1299
1300static int sd_set_card_speed(struct mmc *mmc, enum bus_mode mode)
1301{
1302 int err;
1303
1304 ALLOC_CACHE_ALIGN_BUFFER(uint, switch_status, 16);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001305 int speed;
Macpaul Lin2c3fbf42011-11-28 16:31:09 +00001306
Marek Vasutcf345762018-11-18 03:25:08 +01001307 /* SD version 1.00 and 1.01 does not support CMD 6 */
1308 if (mmc->version == SD_VERSION_1_0)
1309 return 0;
1310
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001311 switch (mode) {
1312 case SD_LEGACY:
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001313 speed = UHS_SDR12_BUS_SPEED;
1314 break;
1315 case SD_HS:
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +01001316 speed = HIGH_SPEED_BUS_SPEED;
1317 break;
1318#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1319 case UHS_SDR12:
1320 speed = UHS_SDR12_BUS_SPEED;
1321 break;
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001322 case UHS_SDR25:
1323 speed = UHS_SDR25_BUS_SPEED;
1324 break;
1325 case UHS_SDR50:
1326 speed = UHS_SDR50_BUS_SPEED;
1327 break;
1328 case UHS_DDR50:
1329 speed = UHS_DDR50_BUS_SPEED;
1330 break;
1331 case UHS_SDR104:
1332 speed = UHS_SDR104_BUS_SPEED;
1333 break;
Jean-Jacques Hiblotbaef2072018-01-04 15:23:30 +01001334#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001335 default:
1336 return -EINVAL;
1337 }
1338
1339 err = sd_switch(mmc, SD_SWITCH_SWITCH, 0, speed, (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001340 if (err)
1341 return err;
1342
Jean-Jacques Hiblota0276f32018-02-09 12:09:27 +01001343 if (((__be32_to_cpu(switch_status[4]) >> 24) & 0xF) != speed)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001344 return -ENOTSUPP;
1345
1346 return 0;
1347}
1348
Marek Vasutec360e62018-04-15 00:36:45 +02001349static int sd_select_bus_width(struct mmc *mmc, int w)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001350{
1351 int err;
1352 struct mmc_cmd cmd;
1353
1354 if ((w != 4) && (w != 1))
1355 return -EINVAL;
1356
1357 cmd.cmdidx = MMC_CMD_APP_CMD;
1358 cmd.resp_type = MMC_RSP_R1;
1359 cmd.cmdarg = mmc->rca << 16;
1360
1361 err = mmc_send_cmd(mmc, &cmd, NULL);
1362 if (err)
1363 return err;
1364
1365 cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH;
1366 cmd.resp_type = MMC_RSP_R1;
1367 if (w == 4)
1368 cmd.cmdarg = 2;
1369 else if (w == 1)
1370 cmd.cmdarg = 0;
1371 err = mmc_send_cmd(mmc, &cmd, NULL);
1372 if (err)
1373 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05001374
1375 return 0;
1376}
Marek Vasut62d77ce2018-04-15 00:37:11 +02001377#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001378
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001379#if CONFIG_IS_ENABLED(MMC_WRITE)
Peng Fan3697e592016-09-01 11:13:38 +08001380static int sd_read_ssr(struct mmc *mmc)
1381{
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001382 static const unsigned int sd_au_size[] = {
1383 0, SZ_16K / 512, SZ_32K / 512,
1384 SZ_64K / 512, SZ_128K / 512, SZ_256K / 512,
1385 SZ_512K / 512, SZ_1M / 512, SZ_2M / 512,
1386 SZ_4M / 512, SZ_8M / 512, (SZ_8M + SZ_4M) / 512,
1387 SZ_16M / 512, (SZ_16M + SZ_8M) / 512, SZ_32M / 512,
1388 SZ_64M / 512,
1389 };
Peng Fan3697e592016-09-01 11:13:38 +08001390 int err, i;
1391 struct mmc_cmd cmd;
1392 ALLOC_CACHE_ALIGN_BUFFER(uint, ssr, 16);
1393 struct mmc_data data;
1394 int timeout = 3;
1395 unsigned int au, eo, et, es;
1396
1397 cmd.cmdidx = MMC_CMD_APP_CMD;
1398 cmd.resp_type = MMC_RSP_R1;
1399 cmd.cmdarg = mmc->rca << 16;
1400
1401 err = mmc_send_cmd(mmc, &cmd, NULL);
1402 if (err)
1403 return err;
1404
1405 cmd.cmdidx = SD_CMD_APP_SD_STATUS;
1406 cmd.resp_type = MMC_RSP_R1;
1407 cmd.cmdarg = 0;
1408
1409retry_ssr:
1410 data.dest = (char *)ssr;
1411 data.blocksize = 64;
1412 data.blocks = 1;
1413 data.flags = MMC_DATA_READ;
1414
1415 err = mmc_send_cmd(mmc, &cmd, &data);
1416 if (err) {
1417 if (timeout--)
1418 goto retry_ssr;
1419
1420 return err;
1421 }
1422
1423 for (i = 0; i < 16; i++)
1424 ssr[i] = be32_to_cpu(ssr[i]);
1425
1426 au = (ssr[2] >> 12) & 0xF;
1427 if ((au <= 9) || (mmc->version == SD_VERSION_3)) {
1428 mmc->ssr.au = sd_au_size[au];
1429 es = (ssr[3] >> 24) & 0xFF;
1430 es |= (ssr[2] & 0xFF) << 8;
1431 et = (ssr[3] >> 18) & 0x3F;
1432 if (es && et) {
1433 eo = (ssr[3] >> 16) & 0x3;
1434 mmc->ssr.erase_timeout = (et * 1000) / es;
1435 mmc->ssr.erase_offset = eo * 1000;
1436 }
1437 } else {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001438 pr_debug("Invalid Allocation Unit Size.\n");
Peng Fan3697e592016-09-01 11:13:38 +08001439 }
1440
1441 return 0;
1442}
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001443#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001444/* frequency bases */
1445/* divided by 10 to be nice to platforms without floating point */
Mike Frysinger5f837c22010-10-20 01:15:53 +00001446static const int fbase[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001447 10000,
1448 100000,
1449 1000000,
1450 10000000,
1451};
1452
1453/* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
1454 * to platforms without floating point.
1455 */
Simon Glass61fe0762016-05-14 14:02:57 -06001456static const u8 multipliers[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001457 0, /* reserved */
1458 10,
1459 12,
1460 13,
1461 15,
1462 20,
1463 25,
1464 30,
1465 35,
1466 40,
1467 45,
1468 50,
1469 55,
1470 60,
1471 70,
1472 80,
1473};
1474
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001475static inline int bus_width(uint cap)
1476{
1477 if (cap == MMC_MODE_8BIT)
1478 return 8;
1479 if (cap == MMC_MODE_4BIT)
1480 return 4;
1481 if (cap == MMC_MODE_1BIT)
1482 return 1;
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001483 pr_warn("invalid bus witdh capability 0x%x\n", cap);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001484 return 0;
1485}
1486
Simon Glasse7881d82017-07-29 11:35:31 -06001487#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001488#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001489static int mmc_execute_tuning(struct mmc *mmc, uint opcode)
1490{
1491 return -ENOTSUPP;
1492}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001493#endif
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001494
Jean-Jacques Hiblot318a7a52017-09-21 16:30:01 +02001495static void mmc_send_init_stream(struct mmc *mmc)
1496{
1497}
1498
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001499static int mmc_set_ios(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001500{
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001501 int ret = 0;
1502
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001503 if (mmc->cfg->ops->set_ios)
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001504 ret = mmc->cfg->ops->set_ios(mmc);
1505
1506 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05001507}
Simon Glass8ca51e52016-06-12 23:30:22 -06001508#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001509
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001510int mmc_set_clock(struct mmc *mmc, uint clock, bool disable)
Andy Fleming272cc702008-10-30 16:41:01 -05001511{
Jaehoon Chungc0fafe62018-01-23 14:04:30 +09001512 if (!disable) {
Jaehoon Chung9546eb92018-01-17 19:36:58 +09001513 if (clock > mmc->cfg->f_max)
1514 clock = mmc->cfg->f_max;
Andy Fleming272cc702008-10-30 16:41:01 -05001515
Jaehoon Chung9546eb92018-01-17 19:36:58 +09001516 if (clock < mmc->cfg->f_min)
1517 clock = mmc->cfg->f_min;
1518 }
Andy Fleming272cc702008-10-30 16:41:01 -05001519
1520 mmc->clock = clock;
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001521 mmc->clk_disable = disable;
Andy Fleming272cc702008-10-30 16:41:01 -05001522
Jaehoon Chungd2faadb2018-01-26 19:25:30 +09001523 debug("clock is %s (%dHz)\n", disable ? "disabled" : "enabled", clock);
1524
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001525 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001526}
1527
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001528static int mmc_set_bus_width(struct mmc *mmc, uint width)
Andy Fleming272cc702008-10-30 16:41:01 -05001529{
1530 mmc->bus_width = width;
1531
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001532 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001533}
1534
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001535#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
1536/*
1537 * helper function to display the capabilities in a human
1538 * friendly manner. The capabilities include bus width and
1539 * supported modes.
1540 */
1541void mmc_dump_capabilities(const char *text, uint caps)
1542{
1543 enum bus_mode mode;
1544
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001545 pr_debug("%s: widths [", text);
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001546 if (caps & MMC_MODE_8BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001547 pr_debug("8, ");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001548 if (caps & MMC_MODE_4BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001549 pr_debug("4, ");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001550 if (caps & MMC_MODE_1BIT)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001551 pr_debug("1, ");
1552 pr_debug("\b\b] modes [");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001553 for (mode = MMC_LEGACY; mode < MMC_MODES_END; mode++)
1554 if (MMC_CAP(mode) & caps)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001555 pr_debug("%s, ", mmc_mode_name(mode));
1556 pr_debug("\b\b]\n");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001557}
1558#endif
1559
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001560struct mode_width_tuning {
1561 enum bus_mode mode;
1562 uint widths;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001563#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001564 uint tuning;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001565#endif
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001566};
1567
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001568#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001569int mmc_voltage_to_mv(enum mmc_voltage voltage)
1570{
1571 switch (voltage) {
1572 case MMC_SIGNAL_VOLTAGE_000: return 0;
1573 case MMC_SIGNAL_VOLTAGE_330: return 3300;
1574 case MMC_SIGNAL_VOLTAGE_180: return 1800;
1575 case MMC_SIGNAL_VOLTAGE_120: return 1200;
1576 }
1577 return -EINVAL;
1578}
1579
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001580static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1581{
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001582 int err;
1583
1584 if (mmc->signal_voltage == signal_voltage)
1585 return 0;
1586
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001587 mmc->signal_voltage = signal_voltage;
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001588 err = mmc_set_ios(mmc);
1589 if (err)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001590 pr_debug("unable to set voltage (err %d)\n", err);
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001591
1592 return err;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001593}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001594#else
1595static inline int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1596{
1597 return 0;
1598}
1599#endif
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001600
Marek Vasut62d77ce2018-04-15 00:37:11 +02001601#if !CONFIG_IS_ENABLED(MMC_TINY)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001602static const struct mode_width_tuning sd_modes_by_pref[] = {
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001603#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1604#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001605 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001606 .mode = UHS_SDR104,
1607 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1608 .tuning = MMC_CMD_SEND_TUNING_BLOCK
1609 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001610#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001611 {
1612 .mode = UHS_SDR50,
1613 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1614 },
1615 {
1616 .mode = UHS_DDR50,
1617 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1618 },
1619 {
1620 .mode = UHS_SDR25,
1621 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1622 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001623#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001624 {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001625 .mode = SD_HS,
1626 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1627 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001628#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001629 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001630 .mode = UHS_SDR12,
1631 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1632 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001633#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001634 {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001635 .mode = SD_LEGACY,
1636 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1637 }
1638};
1639
1640#define for_each_sd_mode_by_pref(caps, mwt) \
1641 for (mwt = sd_modes_by_pref;\
1642 mwt < sd_modes_by_pref + ARRAY_SIZE(sd_modes_by_pref);\
1643 mwt++) \
1644 if (caps & MMC_CAP(mwt->mode))
1645
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02001646static int sd_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001647{
1648 int err;
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001649 uint widths[] = {MMC_MODE_4BIT, MMC_MODE_1BIT};
1650 const struct mode_width_tuning *mwt;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001651#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001652 bool uhs_en = (mmc->ocr & OCR_S18R) ? true : false;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001653#else
1654 bool uhs_en = false;
1655#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001656 uint caps;
1657
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001658#ifdef DEBUG
1659 mmc_dump_capabilities("sd card", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001660 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001661#endif
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001662
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001663 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001664 caps = card_caps & mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001665
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001666 if (!uhs_en)
1667 caps &= ~UHS_CAPS;
1668
1669 for_each_sd_mode_by_pref(caps, mwt) {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001670 uint *w;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001671
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001672 for (w = widths; w < widths + ARRAY_SIZE(widths); w++) {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001673 if (*w & caps & mwt->widths) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001674 pr_debug("trying mode %s width %d (at %d MHz)\n",
1675 mmc_mode_name(mwt->mode),
1676 bus_width(*w),
1677 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001678
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001679 /* configure the bus width (card + host) */
1680 err = sd_select_bus_width(mmc, bus_width(*w));
1681 if (err)
1682 goto error;
1683 mmc_set_bus_width(mmc, bus_width(*w));
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001684
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001685 /* configure the bus mode (card) */
1686 err = sd_set_card_speed(mmc, mwt->mode);
1687 if (err)
1688 goto error;
1689
1690 /* configure the bus mode (host) */
1691 mmc_select_mode(mmc, mwt->mode);
Jaehoon Chung65117182018-01-26 19:25:29 +09001692 mmc_set_clock(mmc, mmc->tran_speed,
1693 MMC_CLK_ENABLE);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001694
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001695#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001696 /* execute tuning if needed */
1697 if (mwt->tuning && !mmc_host_is_spi(mmc)) {
1698 err = mmc_execute_tuning(mmc,
1699 mwt->tuning);
1700 if (err) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001701 pr_debug("tuning failed\n");
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001702 goto error;
1703 }
1704 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001705#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001706
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001707#if CONFIG_IS_ENABLED(MMC_WRITE)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001708 err = sd_read_ssr(mmc);
Peng Fan0a4c2b02018-03-05 16:20:40 +08001709 if (err)
Jean-Jacques Hiblot5b2e72f2018-01-04 15:23:33 +01001710 pr_warn("unable to read ssr\n");
1711#endif
1712 if (!err)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001713 return 0;
1714
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001715error:
1716 /* revert to a safer bus speed */
1717 mmc_select_mode(mmc, SD_LEGACY);
Jaehoon Chung65117182018-01-26 19:25:29 +09001718 mmc_set_clock(mmc, mmc->tran_speed,
1719 MMC_CLK_ENABLE);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001720 }
1721 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001722 }
1723
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001724 pr_err("unable to select a mode\n");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001725 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001726}
1727
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001728/*
1729 * read the compare the part of ext csd that is constant.
1730 * This can be used to check that the transfer is working
1731 * as expected.
1732 */
1733static int mmc_read_and_compare_ext_csd(struct mmc *mmc)
1734{
1735 int err;
1736 const u8 *ext_csd = mmc->ext_csd;
1737 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
1738
Jean-Jacques Hiblot1de06b92017-11-30 17:43:58 +01001739 if (mmc->version < MMC_VERSION_4)
1740 return 0;
1741
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001742 err = mmc_send_ext_csd(mmc, test_csd);
1743 if (err)
1744 return err;
1745
1746 /* Only compare read only fields */
1747 if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT]
1748 == test_csd[EXT_CSD_PARTITIONING_SUPPORT] &&
1749 ext_csd[EXT_CSD_HC_WP_GRP_SIZE]
1750 == test_csd[EXT_CSD_HC_WP_GRP_SIZE] &&
1751 ext_csd[EXT_CSD_REV]
1752 == test_csd[EXT_CSD_REV] &&
1753 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1754 == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE] &&
1755 memcmp(&ext_csd[EXT_CSD_SEC_CNT],
1756 &test_csd[EXT_CSD_SEC_CNT], 4) == 0)
1757 return 0;
1758
1759 return -EBADMSG;
1760}
1761
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001762#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001763static int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1764 uint32_t allowed_mask)
1765{
1766 u32 card_mask = 0;
1767
1768 switch (mode) {
Peng Fan3dd26262018-08-10 14:07:54 +08001769 case MMC_HS_400:
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001770 case MMC_HS_200:
Peng Fan3dd26262018-08-10 14:07:54 +08001771 if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_8V |
1772 EXT_CSD_CARD_TYPE_HS400_1_8V))
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001773 card_mask |= MMC_SIGNAL_VOLTAGE_180;
Peng Fan3dd26262018-08-10 14:07:54 +08001774 if (mmc->cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V |
1775 EXT_CSD_CARD_TYPE_HS400_1_2V))
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001776 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1777 break;
1778 case MMC_DDR_52:
1779 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_8V)
1780 card_mask |= MMC_SIGNAL_VOLTAGE_330 |
1781 MMC_SIGNAL_VOLTAGE_180;
1782 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_2V)
1783 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1784 break;
1785 default:
1786 card_mask |= MMC_SIGNAL_VOLTAGE_330;
1787 break;
1788 }
1789
1790 while (card_mask & allowed_mask) {
1791 enum mmc_voltage best_match;
1792
1793 best_match = 1 << (ffs(card_mask & allowed_mask) - 1);
1794 if (!mmc_set_signal_voltage(mmc, best_match))
1795 return 0;
1796
1797 allowed_mask &= ~best_match;
1798 }
1799
1800 return -ENOTSUPP;
1801}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001802#else
1803static inline int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1804 uint32_t allowed_mask)
1805{
1806 return 0;
1807}
1808#endif
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001809
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001810static const struct mode_width_tuning mmc_modes_by_pref[] = {
Peng Fan3dd26262018-08-10 14:07:54 +08001811#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
1812 {
1813 .mode = MMC_HS_400,
1814 .widths = MMC_MODE_8BIT,
1815 .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200
1816 },
1817#endif
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001818#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001819 {
1820 .mode = MMC_HS_200,
1821 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001822 .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001823 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001824#endif
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001825 {
1826 .mode = MMC_DDR_52,
1827 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
1828 },
1829 {
1830 .mode = MMC_HS_52,
1831 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1832 },
1833 {
1834 .mode = MMC_HS,
1835 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1836 },
1837 {
1838 .mode = MMC_LEGACY,
1839 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1840 }
1841};
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001842
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001843#define for_each_mmc_mode_by_pref(caps, mwt) \
1844 for (mwt = mmc_modes_by_pref;\
1845 mwt < mmc_modes_by_pref + ARRAY_SIZE(mmc_modes_by_pref);\
1846 mwt++) \
1847 if (caps & MMC_CAP(mwt->mode))
1848
1849static const struct ext_csd_bus_width {
1850 uint cap;
1851 bool is_ddr;
1852 uint ext_csd_bits;
1853} ext_csd_bus_width[] = {
1854 {MMC_MODE_8BIT, true, EXT_CSD_DDR_BUS_WIDTH_8},
1855 {MMC_MODE_4BIT, true, EXT_CSD_DDR_BUS_WIDTH_4},
1856 {MMC_MODE_8BIT, false, EXT_CSD_BUS_WIDTH_8},
1857 {MMC_MODE_4BIT, false, EXT_CSD_BUS_WIDTH_4},
1858 {MMC_MODE_1BIT, false, EXT_CSD_BUS_WIDTH_1},
1859};
1860
Peng Fan3dd26262018-08-10 14:07:54 +08001861#if CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
1862static int mmc_select_hs400(struct mmc *mmc)
1863{
1864 int err;
1865
1866 /* Set timing to HS200 for tuning */
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001867 err = mmc_set_card_speed(mmc, MMC_HS_200, false);
Peng Fan3dd26262018-08-10 14:07:54 +08001868 if (err)
1869 return err;
1870
1871 /* configure the bus mode (host) */
1872 mmc_select_mode(mmc, MMC_HS_200);
1873 mmc_set_clock(mmc, mmc->tran_speed, false);
1874
1875 /* execute tuning if needed */
1876 err = mmc_execute_tuning(mmc, MMC_CMD_SEND_TUNING_BLOCK_HS200);
1877 if (err) {
1878 debug("tuning failed\n");
1879 return err;
1880 }
1881
1882 /* Set back to HS */
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001883 mmc_set_card_speed(mmc, MMC_HS, false);
Peng Fan3dd26262018-08-10 14:07:54 +08001884 mmc_set_clock(mmc, mmc_mode2freq(mmc, MMC_HS), false);
1885
1886 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH,
1887 EXT_CSD_BUS_WIDTH_8 | EXT_CSD_DDR_FLAG);
1888 if (err)
1889 return err;
1890
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001891 err = mmc_set_card_speed(mmc, MMC_HS_400, false);
Peng Fan3dd26262018-08-10 14:07:54 +08001892 if (err)
1893 return err;
1894
1895 mmc_select_mode(mmc, MMC_HS_400);
1896 err = mmc_set_clock(mmc, mmc->tran_speed, false);
1897 if (err)
1898 return err;
1899
1900 return 0;
1901}
1902#else
1903static int mmc_select_hs400(struct mmc *mmc)
1904{
1905 return -ENOTSUPP;
1906}
1907#endif
1908
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001909#define for_each_supported_width(caps, ddr, ecbv) \
1910 for (ecbv = ext_csd_bus_width;\
1911 ecbv < ext_csd_bus_width + ARRAY_SIZE(ext_csd_bus_width);\
1912 ecbv++) \
1913 if ((ddr == ecbv->is_ddr) && (caps & ecbv->cap))
1914
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02001915static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001916{
1917 int err;
1918 const struct mode_width_tuning *mwt;
1919 const struct ext_csd_bus_width *ecbw;
1920
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001921#ifdef DEBUG
1922 mmc_dump_capabilities("mmc", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001923 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001924#endif
1925
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001926 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001927 card_caps &= mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001928
1929 /* Only version 4 of MMC supports wider bus widths */
1930 if (mmc->version < MMC_VERSION_4)
1931 return 0;
1932
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02001933 if (!mmc->ext_csd) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001934 pr_debug("No ext_csd found!\n"); /* this should enver happen */
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02001935 return -ENOTSUPP;
1936 }
1937
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001938#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) || \
1939 CONFIG_IS_ENABLED(MMC_HS400_SUPPORT)
1940 /*
1941 * In case the eMMC is in HS200/HS400 mode, downgrade to HS mode
1942 * before doing anything else, since a transition from either of
1943 * the HS200/HS400 mode directly to legacy mode is not supported.
1944 */
1945 if (mmc->selected_mode == MMC_HS_200 ||
1946 mmc->selected_mode == MMC_HS_400)
1947 mmc_set_card_speed(mmc, MMC_HS, true);
1948 else
1949#endif
1950 mmc_set_clock(mmc, mmc->legacy_speed, MMC_CLK_ENABLE);
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02001951
1952 for_each_mmc_mode_by_pref(card_caps, mwt) {
1953 for_each_supported_width(card_caps & mwt->widths,
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001954 mmc_is_mode_ddr(mwt->mode), ecbw) {
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001955 enum mmc_voltage old_voltage;
Masahiro Yamadad4d64882018-01-28 19:11:42 +09001956 pr_debug("trying mode %s width %d (at %d MHz)\n",
1957 mmc_mode_name(mwt->mode),
1958 bus_width(ecbw->cap),
1959 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001960 old_voltage = mmc->signal_voltage;
1961 err = mmc_set_lowest_voltage(mmc, mwt->mode,
1962 MMC_ALL_SIGNAL_VOLTAGE);
1963 if (err)
1964 continue;
1965
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001966 /* configure the bus width (card + host) */
1967 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1968 EXT_CSD_BUS_WIDTH,
1969 ecbw->ext_csd_bits & ~EXT_CSD_DDR_FLAG);
1970 if (err)
1971 goto error;
1972 mmc_set_bus_width(mmc, bus_width(ecbw->cap));
1973
Peng Fan3dd26262018-08-10 14:07:54 +08001974 if (mwt->mode == MMC_HS_400) {
1975 err = mmc_select_hs400(mmc);
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001976 if (err) {
Peng Fan3dd26262018-08-10 14:07:54 +08001977 printf("Select HS400 failed %d\n", err);
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001978 goto error;
1979 }
Peng Fan3dd26262018-08-10 14:07:54 +08001980 } else {
1981 /* configure the bus speed (card) */
Marek Vasutb9a2a0e2019-01-03 21:19:24 +01001982 err = mmc_set_card_speed(mmc, mwt->mode, false);
Peng Fan3dd26262018-08-10 14:07:54 +08001983 if (err)
1984 goto error;
1985
1986 /*
1987 * configure the bus width AND the ddr mode
1988 * (card). The host side will be taken care
1989 * of in the next step
1990 */
1991 if (ecbw->ext_csd_bits & EXT_CSD_DDR_FLAG) {
1992 err = mmc_switch(mmc,
1993 EXT_CSD_CMD_SET_NORMAL,
1994 EXT_CSD_BUS_WIDTH,
1995 ecbw->ext_csd_bits);
1996 if (err)
1997 goto error;
1998 }
1999
2000 /* configure the bus mode (host) */
2001 mmc_select_mode(mmc, mwt->mode);
2002 mmc_set_clock(mmc, mmc->tran_speed,
2003 MMC_CLK_ENABLE);
2004#ifdef MMC_SUPPORTS_TUNING
2005
2006 /* execute tuning if needed */
2007 if (mwt->tuning) {
2008 err = mmc_execute_tuning(mmc,
2009 mwt->tuning);
2010 if (err) {
2011 pr_debug("tuning failed\n");
2012 goto error;
2013 }
2014 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01002015#endif
Peng Fan3dd26262018-08-10 14:07:54 +08002016 }
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02002017
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002018 /* do a transfer to check the configuration */
2019 err = mmc_read_and_compare_ext_csd(mmc);
2020 if (!err)
2021 return 0;
2022error:
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02002023 mmc_set_signal_voltage(mmc, old_voltage);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002024 /* if an error occured, revert to a safer bus mode */
2025 mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2026 EXT_CSD_BUS_WIDTH, EXT_CSD_BUS_WIDTH_1);
2027 mmc_select_mode(mmc, MMC_LEGACY);
2028 mmc_set_bus_width(mmc, 1);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002029 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002030 }
2031
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002032 pr_err("unable to select a mode\n");
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002033
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02002034 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002035}
Marek Vasut62d77ce2018-04-15 00:37:11 +02002036#endif
2037
2038#if CONFIG_IS_ENABLED(MMC_TINY)
2039DEFINE_CACHE_ALIGN_BUFFER(u8, ext_csd_bkup, MMC_MAX_BLOCK_LEN);
2040#endif
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02002041
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002042static int mmc_startup_v4(struct mmc *mmc)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002043{
2044 int err, i;
2045 u64 capacity;
2046 bool has_parts = false;
2047 bool part_completed;
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002048 static const u32 mmc_versions[] = {
2049 MMC_VERSION_4,
2050 MMC_VERSION_4_1,
2051 MMC_VERSION_4_2,
2052 MMC_VERSION_4_3,
Jean-Jacques Hiblotace1bed2018-02-09 12:09:28 +01002053 MMC_VERSION_4_4,
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002054 MMC_VERSION_4_41,
2055 MMC_VERSION_4_5,
2056 MMC_VERSION_5_0,
2057 MMC_VERSION_5_1
2058 };
2059
Marek Vasut62d77ce2018-04-15 00:37:11 +02002060#if CONFIG_IS_ENABLED(MMC_TINY)
2061 u8 *ext_csd = ext_csd_bkup;
2062
2063 if (IS_SD(mmc) || mmc->version < MMC_VERSION_4)
2064 return 0;
2065
2066 if (!mmc->ext_csd)
2067 memset(ext_csd_bkup, 0, sizeof(ext_csd_bkup));
2068
2069 err = mmc_send_ext_csd(mmc, ext_csd);
2070 if (err)
2071 goto error;
2072
2073 /* store the ext csd for future reference */
2074 if (!mmc->ext_csd)
2075 mmc->ext_csd = ext_csd;
2076#else
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002077 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002078
2079 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4))
2080 return 0;
2081
2082 /* check ext_csd version and capacity */
2083 err = mmc_send_ext_csd(mmc, ext_csd);
2084 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002085 goto error;
2086
2087 /* store the ext csd for future reference */
2088 if (!mmc->ext_csd)
2089 mmc->ext_csd = malloc(MMC_MAX_BLOCK_LEN);
2090 if (!mmc->ext_csd)
2091 return -ENOMEM;
2092 memcpy(mmc->ext_csd, ext_csd, MMC_MAX_BLOCK_LEN);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002093#endif
Alexander Kochetkov76584e32018-02-20 14:35:55 +03002094 if (ext_csd[EXT_CSD_REV] >= ARRAY_SIZE(mmc_versions))
Jean-Jacques Hiblot58a6fb72018-01-04 15:23:31 +01002095 return -EINVAL;
2096
2097 mmc->version = mmc_versions[ext_csd[EXT_CSD_REV]];
2098
2099 if (mmc->version >= MMC_VERSION_4_2) {
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002100 /*
2101 * According to the JEDEC Standard, the value of
2102 * ext_csd's capacity is valid if the value is more
2103 * than 2GB
2104 */
2105 capacity = ext_csd[EXT_CSD_SEC_CNT] << 0
2106 | ext_csd[EXT_CSD_SEC_CNT + 1] << 8
2107 | ext_csd[EXT_CSD_SEC_CNT + 2] << 16
2108 | ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
2109 capacity *= MMC_MAX_BLOCK_LEN;
2110 if ((capacity >> 20) > 2 * 1024)
2111 mmc->capacity_user = capacity;
2112 }
2113
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002114 /* The partition data may be non-zero but it is only
2115 * effective if PARTITION_SETTING_COMPLETED is set in
2116 * EXT_CSD, so ignore any data if this bit is not set,
2117 * except for enabling the high-capacity group size
2118 * definition (see below).
2119 */
2120 part_completed = !!(ext_csd[EXT_CSD_PARTITION_SETTING] &
2121 EXT_CSD_PARTITION_SETTING_COMPLETED);
2122
2123 /* store the partition info of emmc */
2124 mmc->part_support = ext_csd[EXT_CSD_PARTITIONING_SUPPORT];
2125 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) ||
2126 ext_csd[EXT_CSD_BOOT_MULT])
2127 mmc->part_config = ext_csd[EXT_CSD_PART_CONF];
2128 if (part_completed &&
2129 (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & ENHNCD_SUPPORT))
2130 mmc->part_attr = ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE];
2131
2132 mmc->capacity_boot = ext_csd[EXT_CSD_BOOT_MULT] << 17;
2133
2134 mmc->capacity_rpmb = ext_csd[EXT_CSD_RPMB_MULT] << 17;
2135
2136 for (i = 0; i < 4; i++) {
2137 int idx = EXT_CSD_GP_SIZE_MULT + i * 3;
2138 uint mult = (ext_csd[idx + 2] << 16) +
2139 (ext_csd[idx + 1] << 8) + ext_csd[idx];
2140 if (mult)
2141 has_parts = true;
2142 if (!part_completed)
2143 continue;
2144 mmc->capacity_gp[i] = mult;
2145 mmc->capacity_gp[i] *=
2146 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2147 mmc->capacity_gp[i] *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2148 mmc->capacity_gp[i] <<= 19;
2149 }
2150
Jean-Jacques Hiblot173c06d2018-01-04 15:23:35 +01002151#ifndef CONFIG_SPL_BUILD
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002152 if (part_completed) {
2153 mmc->enh_user_size =
2154 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 2] << 16) +
2155 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 1] << 8) +
2156 ext_csd[EXT_CSD_ENH_SIZE_MULT];
2157 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2158 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2159 mmc->enh_user_size <<= 19;
2160 mmc->enh_user_start =
2161 (ext_csd[EXT_CSD_ENH_START_ADDR + 3] << 24) +
2162 (ext_csd[EXT_CSD_ENH_START_ADDR + 2] << 16) +
2163 (ext_csd[EXT_CSD_ENH_START_ADDR + 1] << 8) +
2164 ext_csd[EXT_CSD_ENH_START_ADDR];
2165 if (mmc->high_capacity)
2166 mmc->enh_user_start <<= 9;
2167 }
Jean-Jacques Hiblot173c06d2018-01-04 15:23:35 +01002168#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002169
2170 /*
2171 * Host needs to enable ERASE_GRP_DEF bit if device is
2172 * partitioned. This bit will be lost every time after a reset
2173 * or power off. This will affect erase size.
2174 */
2175 if (part_completed)
2176 has_parts = true;
2177 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) &&
2178 (ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE] & PART_ENH_ATTRIB))
2179 has_parts = true;
2180 if (has_parts) {
2181 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2182 EXT_CSD_ERASE_GROUP_DEF, 1);
2183
2184 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002185 goto error;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002186
2187 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
2188 }
2189
2190 if (ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01) {
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002191#if CONFIG_IS_ENABLED(MMC_WRITE)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002192 /* Read out group size from ext_csd */
2193 mmc->erase_grp_size =
2194 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002195#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002196 /*
2197 * if high capacity and partition setting completed
2198 * SEC_COUNT is valid even if it is smaller than 2 GiB
2199 * JEDEC Standard JESD84-B45, 6.2.4
2200 */
2201 if (mmc->high_capacity && part_completed) {
2202 capacity = (ext_csd[EXT_CSD_SEC_CNT]) |
2203 (ext_csd[EXT_CSD_SEC_CNT + 1] << 8) |
2204 (ext_csd[EXT_CSD_SEC_CNT + 2] << 16) |
2205 (ext_csd[EXT_CSD_SEC_CNT + 3] << 24);
2206 capacity *= MMC_MAX_BLOCK_LEN;
2207 mmc->capacity_user = capacity;
2208 }
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002209 }
2210#if CONFIG_IS_ENABLED(MMC_WRITE)
2211 else {
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002212 /* Calculate the group size from the csd value. */
2213 int erase_gsz, erase_gmul;
2214
2215 erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10;
2216 erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5;
2217 mmc->erase_grp_size = (erase_gsz + 1)
2218 * (erase_gmul + 1);
2219 }
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002220#endif
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +01002221#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002222 mmc->hc_wp_grp_size = 1024
2223 * ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
2224 * ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +01002225#endif
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002226
2227 mmc->wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
2228
2229 return 0;
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002230error:
2231 if (mmc->ext_csd) {
Marek Vasut62d77ce2018-04-15 00:37:11 +02002232#if !CONFIG_IS_ENABLED(MMC_TINY)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002233 free(mmc->ext_csd);
Marek Vasut62d77ce2018-04-15 00:37:11 +02002234#endif
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002235 mmc->ext_csd = NULL;
2236 }
2237 return err;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002238}
2239
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002240static int mmc_startup(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002241{
Stephen Warrenf866a462013-06-11 15:14:01 -06002242 int err, i;
Andy Fleming272cc702008-10-30 16:41:01 -05002243 uint mult, freq;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002244 u64 cmult, csize;
Andy Fleming272cc702008-10-30 16:41:01 -05002245 struct mmc_cmd cmd;
Simon Glassc40fdca2016-05-01 13:52:35 -06002246 struct blk_desc *bdesc;
Andy Fleming272cc702008-10-30 16:41:01 -05002247
Thomas Choud52ebf12010-12-24 13:12:21 +00002248#ifdef CONFIG_MMC_SPI_CRC_ON
2249 if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */
2250 cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF;
2251 cmd.resp_type = MMC_RSP_R1;
2252 cmd.cmdarg = 1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002253 err = mmc_send_cmd(mmc, &cmd, NULL);
Thomas Choud52ebf12010-12-24 13:12:21 +00002254 if (err)
2255 return err;
2256 }
2257#endif
2258
Andy Fleming272cc702008-10-30 16:41:01 -05002259 /* Put the Card in Identify Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002260 cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID :
2261 MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */
Andy Fleming272cc702008-10-30 16:41:01 -05002262 cmd.resp_type = MMC_RSP_R2;
2263 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002264
2265 err = mmc_send_cmd(mmc, &cmd, NULL);
2266
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002267#ifdef CONFIG_MMC_QUIRKS
2268 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SEND_CID)) {
2269 int retries = 4;
2270 /*
2271 * It has been seen that SEND_CID may fail on the first
2272 * attempt, let's try a few more time
2273 */
2274 do {
2275 err = mmc_send_cmd(mmc, &cmd, NULL);
2276 if (!err)
2277 break;
2278 } while (retries--);
2279 }
2280#endif
2281
Andy Fleming272cc702008-10-30 16:41:01 -05002282 if (err)
2283 return err;
2284
2285 memcpy(mmc->cid, cmd.response, 16);
2286
2287 /*
2288 * For MMC cards, set the Relative Address.
2289 * For SD cards, get the Relatvie Address.
2290 * This also puts the cards into Standby State
2291 */
Thomas Choud52ebf12010-12-24 13:12:21 +00002292 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2293 cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR;
2294 cmd.cmdarg = mmc->rca << 16;
2295 cmd.resp_type = MMC_RSP_R6;
Andy Fleming272cc702008-10-30 16:41:01 -05002296
Thomas Choud52ebf12010-12-24 13:12:21 +00002297 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002298
Thomas Choud52ebf12010-12-24 13:12:21 +00002299 if (err)
2300 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002301
Thomas Choud52ebf12010-12-24 13:12:21 +00002302 if (IS_SD(mmc))
2303 mmc->rca = (cmd.response[0] >> 16) & 0xffff;
2304 }
Andy Fleming272cc702008-10-30 16:41:01 -05002305
2306 /* Get the Card-Specific Data */
2307 cmd.cmdidx = MMC_CMD_SEND_CSD;
2308 cmd.resp_type = MMC_RSP_R2;
2309 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05002310
2311 err = mmc_send_cmd(mmc, &cmd, NULL);
2312
2313 if (err)
2314 return err;
2315
Rabin Vincent998be3d2009-04-05 13:30:56 +05302316 mmc->csd[0] = cmd.response[0];
2317 mmc->csd[1] = cmd.response[1];
2318 mmc->csd[2] = cmd.response[2];
2319 mmc->csd[3] = cmd.response[3];
Andy Fleming272cc702008-10-30 16:41:01 -05002320
2321 if (mmc->version == MMC_VERSION_UNKNOWN) {
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302322 int version = (cmd.response[0] >> 26) & 0xf;
Andy Fleming272cc702008-10-30 16:41:01 -05002323
2324 switch (version) {
Bin Meng53e8e402016-03-17 21:53:13 -07002325 case 0:
2326 mmc->version = MMC_VERSION_1_2;
2327 break;
2328 case 1:
2329 mmc->version = MMC_VERSION_1_4;
2330 break;
2331 case 2:
2332 mmc->version = MMC_VERSION_2_2;
2333 break;
2334 case 3:
2335 mmc->version = MMC_VERSION_3;
2336 break;
2337 case 4:
2338 mmc->version = MMC_VERSION_4;
2339 break;
2340 default:
2341 mmc->version = MMC_VERSION_1_2;
2342 break;
Andy Fleming272cc702008-10-30 16:41:01 -05002343 }
2344 }
2345
2346 /* divide frequency by 10, since the mults are 10x bigger */
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302347 freq = fbase[(cmd.response[0] & 0x7)];
2348 mult = multipliers[((cmd.response[0] >> 3) & 0xf)];
Andy Fleming272cc702008-10-30 16:41:01 -05002349
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002350 mmc->legacy_speed = freq * mult;
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002351 mmc_select_mode(mmc, MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05002352
Markus Niebelab711882013-12-16 13:40:46 +01002353 mmc->dsr_imp = ((cmd.response[1] >> 12) & 0x1);
Rabin Vincent998be3d2009-04-05 13:30:56 +05302354 mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf);
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002355#if CONFIG_IS_ENABLED(MMC_WRITE)
Andy Fleming272cc702008-10-30 16:41:01 -05002356
2357 if (IS_SD(mmc))
2358 mmc->write_bl_len = mmc->read_bl_len;
2359 else
Rabin Vincent998be3d2009-04-05 13:30:56 +05302360 mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf);
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002361#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002362
2363 if (mmc->high_capacity) {
2364 csize = (mmc->csd[1] & 0x3f) << 16
2365 | (mmc->csd[2] & 0xffff0000) >> 16;
2366 cmult = 8;
2367 } else {
2368 csize = (mmc->csd[1] & 0x3ff) << 2
2369 | (mmc->csd[2] & 0xc0000000) >> 30;
2370 cmult = (mmc->csd[2] & 0x00038000) >> 15;
2371 }
2372
Stephen Warrenf866a462013-06-11 15:14:01 -06002373 mmc->capacity_user = (csize + 1) << (cmult + 2);
2374 mmc->capacity_user *= mmc->read_bl_len;
2375 mmc->capacity_boot = 0;
2376 mmc->capacity_rpmb = 0;
2377 for (i = 0; i < 4; i++)
2378 mmc->capacity_gp[i] = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002379
Simon Glass8bfa1952013-04-03 08:54:30 +00002380 if (mmc->read_bl_len > MMC_MAX_BLOCK_LEN)
2381 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -05002382
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002383#if CONFIG_IS_ENABLED(MMC_WRITE)
Simon Glass8bfa1952013-04-03 08:54:30 +00002384 if (mmc->write_bl_len > MMC_MAX_BLOCK_LEN)
2385 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002386#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002387
Markus Niebelab711882013-12-16 13:40:46 +01002388 if ((mmc->dsr_imp) && (0xffffffff != mmc->dsr)) {
2389 cmd.cmdidx = MMC_CMD_SET_DSR;
2390 cmd.cmdarg = (mmc->dsr & 0xffff) << 16;
2391 cmd.resp_type = MMC_RSP_NONE;
2392 if (mmc_send_cmd(mmc, &cmd, NULL))
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002393 pr_warn("MMC: SET_DSR failed\n");
Markus Niebelab711882013-12-16 13:40:46 +01002394 }
2395
Andy Fleming272cc702008-10-30 16:41:01 -05002396 /* Select the card, and put it into Transfer Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002397 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2398 cmd.cmdidx = MMC_CMD_SELECT_CARD;
Ajay Bhargavfe8f7062011-10-05 03:13:23 +00002399 cmd.resp_type = MMC_RSP_R1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002400 cmd.cmdarg = mmc->rca << 16;
Thomas Choud52ebf12010-12-24 13:12:21 +00002401 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002402
Thomas Choud52ebf12010-12-24 13:12:21 +00002403 if (err)
2404 return err;
2405 }
Andy Fleming272cc702008-10-30 16:41:01 -05002406
Lei Wene6f99a52011-06-22 17:03:31 +00002407 /*
2408 * For SD, its erase group is always one sector
2409 */
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002410#if CONFIG_IS_ENABLED(MMC_WRITE)
Lei Wene6f99a52011-06-22 17:03:31 +00002411 mmc->erase_grp_size = 1;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002412#endif
Lei Wenbc897b12011-05-02 16:26:26 +00002413 mmc->part_config = MMCPART_NOAVAILABLE;
Lei Wenbc897b12011-05-02 16:26:26 +00002414
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002415 err = mmc_startup_v4(mmc);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002416 if (err)
2417 return err;
Sukumar Ghoraid23e2c02010-09-20 18:29:29 +05302418
Simon Glassc40fdca2016-05-01 13:52:35 -06002419 err = mmc_set_capacity(mmc, mmc_get_blk_desc(mmc)->hwpart);
Stephen Warrenf866a462013-06-11 15:14:01 -06002420 if (err)
2421 return err;
2422
Marek Vasut62d77ce2018-04-15 00:37:11 +02002423#if CONFIG_IS_ENABLED(MMC_TINY)
2424 mmc_set_clock(mmc, mmc->legacy_speed, false);
2425 mmc_select_mode(mmc, IS_SD(mmc) ? SD_LEGACY : MMC_LEGACY);
2426 mmc_set_bus_width(mmc, 1);
2427#else
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002428 if (IS_SD(mmc)) {
2429 err = sd_get_capabilities(mmc);
2430 if (err)
2431 return err;
2432 err = sd_select_mode_and_width(mmc, mmc->card_caps);
2433 } else {
2434 err = mmc_get_capabilities(mmc);
2435 if (err)
2436 return err;
2437 mmc_select_mode_and_width(mmc, mmc->card_caps);
2438 }
Marek Vasut62d77ce2018-04-15 00:37:11 +02002439#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002440 if (err)
2441 return err;
2442
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002443 mmc->best_mode = mmc->selected_mode;
Jaehoon Chungad5fd922012-03-26 21:16:03 +00002444
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002445 /* Fix the block length for DDR mode */
2446 if (mmc->ddr_mode) {
2447 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002448#if CONFIG_IS_ENABLED(MMC_WRITE)
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002449 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +01002450#endif
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002451 }
2452
Andy Fleming272cc702008-10-30 16:41:01 -05002453 /* fill in device description */
Simon Glassc40fdca2016-05-01 13:52:35 -06002454 bdesc = mmc_get_blk_desc(mmc);
2455 bdesc->lun = 0;
2456 bdesc->hwpart = 0;
2457 bdesc->type = 0;
2458 bdesc->blksz = mmc->read_bl_len;
2459 bdesc->log2blksz = LOG2(bdesc->blksz);
2460 bdesc->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Sjoerd Simonsfc011f62015-12-04 23:27:40 +01002461#if !defined(CONFIG_SPL_BUILD) || \
2462 (defined(CONFIG_SPL_LIBCOMMON_SUPPORT) && \
2463 !defined(CONFIG_USE_TINY_PRINTF))
Simon Glassc40fdca2016-05-01 13:52:35 -06002464 sprintf(bdesc->vendor, "Man %06x Snr %04x%04x",
Taylor Huttbabce5f2012-10-20 17:15:59 +00002465 mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff),
2466 (mmc->cid[3] >> 16) & 0xffff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002467 sprintf(bdesc->product, "%c%c%c%c%c%c", mmc->cid[0] & 0xff,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002468 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
2469 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff,
2470 (mmc->cid[2] >> 24) & 0xff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002471 sprintf(bdesc->revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002472 (mmc->cid[2] >> 16) & 0xf);
Paul Burton56196822013-09-04 16:12:25 +01002473#else
Simon Glassc40fdca2016-05-01 13:52:35 -06002474 bdesc->vendor[0] = 0;
2475 bdesc->product[0] = 0;
2476 bdesc->revision[0] = 0;
Paul Burton56196822013-09-04 16:12:25 +01002477#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002478
Andre Przywaraeef05fd2018-12-17 10:05:45 +00002479#if !defined(CONFIG_DM_MMC) && (!defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT))
2480 part_init(bdesc);
2481#endif
2482
Andy Fleming272cc702008-10-30 16:41:01 -05002483 return 0;
2484}
2485
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002486static int mmc_send_if_cond(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002487{
2488 struct mmc_cmd cmd;
2489 int err;
2490
2491 cmd.cmdidx = SD_CMD_SEND_IF_COND;
2492 /* We set the bit if the host supports voltages between 2.7 and 3.6 V */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002493 cmd.cmdarg = ((mmc->cfg->voltages & 0xff8000) != 0) << 8 | 0xaa;
Andy Fleming272cc702008-10-30 16:41:01 -05002494 cmd.resp_type = MMC_RSP_R7;
Andy Fleming272cc702008-10-30 16:41:01 -05002495
2496 err = mmc_send_cmd(mmc, &cmd, NULL);
2497
2498 if (err)
2499 return err;
2500
Rabin Vincent998be3d2009-04-05 13:30:56 +05302501 if ((cmd.response[0] & 0xff) != 0xaa)
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002502 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002503 else
2504 mmc->version = SD_VERSION_2;
2505
2506 return 0;
2507}
2508
Simon Glassc4d660d2017-07-04 13:31:19 -06002509#if !CONFIG_IS_ENABLED(DM_MMC)
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002510/* board-specific MMC power initializations. */
2511__weak void board_mmc_power_init(void)
2512{
2513}
Simon Glass05cbeb72017-04-22 19:10:56 -06002514#endif
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002515
Peng Fan2051aef2016-10-11 15:08:43 +08002516static int mmc_power_init(struct mmc *mmc)
2517{
Simon Glassc4d660d2017-07-04 13:31:19 -06002518#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002519#if CONFIG_IS_ENABLED(DM_REGULATOR)
Peng Fan2051aef2016-10-11 15:08:43 +08002520 int ret;
2521
2522 ret = device_get_supply_regulator(mmc->dev, "vmmc-supply",
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002523 &mmc->vmmc_supply);
2524 if (ret)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002525 pr_debug("%s: No vmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002526
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002527 ret = device_get_supply_regulator(mmc->dev, "vqmmc-supply",
2528 &mmc->vqmmc_supply);
2529 if (ret)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002530 pr_debug("%s: No vqmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002531#endif
Simon Glass05cbeb72017-04-22 19:10:56 -06002532#else /* !CONFIG_DM_MMC */
2533 /*
2534 * Driver model should use a regulator, as above, rather than calling
2535 * out to board code.
2536 */
2537 board_mmc_power_init();
2538#endif
Peng Fan2051aef2016-10-11 15:08:43 +08002539 return 0;
2540}
2541
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002542/*
2543 * put the host in the initial state:
2544 * - turn on Vdd (card power supply)
2545 * - configure the bus width and clock to minimal values
2546 */
2547static void mmc_set_initial_state(struct mmc *mmc)
2548{
2549 int err;
2550
2551 /* First try to set 3.3V. If it fails set to 1.8V */
2552 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_330);
2553 if (err != 0)
2554 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
2555 if (err != 0)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002556 pr_warn("mmc: failed to set signal voltage\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002557
2558 mmc_select_mode(mmc, MMC_LEGACY);
2559 mmc_set_bus_width(mmc, 1);
Jaehoon Chung65117182018-01-26 19:25:29 +09002560 mmc_set_clock(mmc, 0, MMC_CLK_ENABLE);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002561}
2562
2563static int mmc_power_on(struct mmc *mmc)
2564{
2565#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2566 if (mmc->vmmc_supply) {
2567 int ret = regulator_set_enable(mmc->vmmc_supply, true);
2568
2569 if (ret) {
2570 puts("Error enabling VMMC supply\n");
2571 return ret;
2572 }
2573 }
2574#endif
2575 return 0;
2576}
2577
2578static int mmc_power_off(struct mmc *mmc)
2579{
Jaehoon Chung65117182018-01-26 19:25:29 +09002580 mmc_set_clock(mmc, 0, MMC_CLK_DISABLE);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002581#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2582 if (mmc->vmmc_supply) {
2583 int ret = regulator_set_enable(mmc->vmmc_supply, false);
2584
2585 if (ret) {
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002586 pr_debug("Error disabling VMMC supply\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002587 return ret;
2588 }
2589 }
2590#endif
2591 return 0;
2592}
2593
2594static int mmc_power_cycle(struct mmc *mmc)
2595{
2596 int ret;
2597
2598 ret = mmc_power_off(mmc);
2599 if (ret)
2600 return ret;
2601 /*
2602 * SD spec recommends at least 1ms of delay. Let's wait for 2ms
2603 * to be on the safer side.
2604 */
2605 udelay(2000);
2606 return mmc_power_on(mmc);
2607}
2608
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002609int mmc_get_op_cond(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002610{
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002611 bool uhs_en = supports_uhs(mmc->cfg->host_caps);
Macpaul Linafd59322011-11-14 23:35:39 +00002612 int err;
Andy Fleming272cc702008-10-30 16:41:01 -05002613
Lei Wenbc897b12011-05-02 16:26:26 +00002614 if (mmc->has_init)
2615 return 0;
2616
Yangbo Lu5a8dbdc2015-04-22 13:57:00 +08002617#ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
2618 mmc_adapter_card_type_ident();
2619#endif
Peng Fan2051aef2016-10-11 15:08:43 +08002620 err = mmc_power_init(mmc);
2621 if (err)
2622 return err;
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002623
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002624#ifdef CONFIG_MMC_QUIRKS
2625 mmc->quirks = MMC_QUIRK_RETRY_SET_BLOCKLEN |
2626 MMC_QUIRK_RETRY_SEND_CID;
2627#endif
2628
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002629 err = mmc_power_cycle(mmc);
2630 if (err) {
2631 /*
2632 * if power cycling is not supported, we should not try
2633 * to use the UHS modes, because we wouldn't be able to
2634 * recover from an error during the UHS initialization.
2635 */
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002636 pr_debug("Unable to do a full power cycle. Disabling the UHS modes for safety\n");
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002637 uhs_en = false;
2638 mmc->host_caps &= ~UHS_CAPS;
2639 err = mmc_power_on(mmc);
2640 }
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002641 if (err)
2642 return err;
2643
Simon Glasse7881d82017-07-29 11:35:31 -06002644#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass8ca51e52016-06-12 23:30:22 -06002645 /* The device has already been probed ready for use */
2646#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +02002647 /* made sure it's not NULL earlier */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002648 err = mmc->cfg->ops->init(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002649 if (err)
2650 return err;
Simon Glass8ca51e52016-06-12 23:30:22 -06002651#endif
Andrew Gabbasov786e8f82014-12-01 06:59:09 -06002652 mmc->ddr_mode = 0;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02002653
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002654retry:
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002655 mmc_set_initial_state(mmc);
Jean-Jacques Hiblot318a7a52017-09-21 16:30:01 +02002656 mmc_send_init_stream(mmc);
2657
Andy Fleming272cc702008-10-30 16:41:01 -05002658 /* Reset the Card */
2659 err = mmc_go_idle(mmc);
2660
2661 if (err)
2662 return err;
2663
Lei Wenbc897b12011-05-02 16:26:26 +00002664 /* The internal partition reset to user partition(0) at every CMD0*/
Simon Glassc40fdca2016-05-01 13:52:35 -06002665 mmc_get_blk_desc(mmc)->hwpart = 0;
Lei Wenbc897b12011-05-02 16:26:26 +00002666
Andy Fleming272cc702008-10-30 16:41:01 -05002667 /* Test for SD version 2 */
Macpaul Linafd59322011-11-14 23:35:39 +00002668 err = mmc_send_if_cond(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002669
Andy Fleming272cc702008-10-30 16:41:01 -05002670 /* Now try to get the SD card's operating condition */
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002671 err = sd_send_op_cond(mmc, uhs_en);
2672 if (err && uhs_en) {
2673 uhs_en = false;
2674 mmc_power_cycle(mmc);
2675 goto retry;
2676 }
Andy Fleming272cc702008-10-30 16:41:01 -05002677
2678 /* If the command timed out, we check for an MMC card */
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002679 if (err == -ETIMEDOUT) {
Andy Fleming272cc702008-10-30 16:41:01 -05002680 err = mmc_send_op_cond(mmc);
2681
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002682 if (err) {
Paul Burton56196822013-09-04 16:12:25 +01002683#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002684 pr_err("Card did not respond to voltage select!\n");
Paul Burton56196822013-09-04 16:12:25 +01002685#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002686 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002687 }
2688 }
2689
Jon Nettleton6c09eba2018-06-11 15:26:19 +03002690 return err;
2691}
2692
2693int mmc_start_init(struct mmc *mmc)
2694{
2695 bool no_card;
2696 int err = 0;
2697
2698 /*
2699 * all hosts are capable of 1 bit bus-width and able to use the legacy
2700 * timings.
2701 */
2702 mmc->host_caps = mmc->cfg->host_caps | MMC_CAP(SD_LEGACY) |
2703 MMC_CAP(MMC_LEGACY) | MMC_MODE_1BIT;
2704
2705#if !defined(CONFIG_MMC_BROKEN_CD)
2706 /* we pretend there's no card when init is NULL */
2707 no_card = mmc_getcd(mmc) == 0;
2708#else
2709 no_card = 0;
2710#endif
2711#if !CONFIG_IS_ENABLED(DM_MMC)
2712 no_card = no_card || (mmc->cfg->ops->init == NULL);
2713#endif
2714 if (no_card) {
2715 mmc->has_init = 0;
2716#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
2717 pr_err("MMC: no card present\n");
2718#endif
2719 return -ENOMEDIUM;
2720 }
2721
2722 err = mmc_get_op_cond(mmc);
2723
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002724 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002725 mmc->init_in_progress = 1;
2726
2727 return err;
2728}
2729
2730static int mmc_complete_init(struct mmc *mmc)
2731{
2732 int err = 0;
2733
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002734 mmc->init_in_progress = 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002735 if (mmc->op_cond_pending)
2736 err = mmc_complete_op_cond(mmc);
2737
2738 if (!err)
2739 err = mmc_startup(mmc);
Lei Wenbc897b12011-05-02 16:26:26 +00002740 if (err)
2741 mmc->has_init = 0;
2742 else
2743 mmc->has_init = 1;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002744 return err;
2745}
2746
2747int mmc_init(struct mmc *mmc)
2748{
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002749 int err = 0;
Vipul Kumar36332b62018-05-03 12:20:54 +05302750 __maybe_unused ulong start;
Simon Glassc4d660d2017-07-04 13:31:19 -06002751#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass33fb2112016-05-01 13:52:41 -06002752 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc->dev);
Che-Liang Chioue9550442012-11-28 15:21:13 +00002753
Simon Glass33fb2112016-05-01 13:52:41 -06002754 upriv->mmc = mmc;
2755#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00002756 if (mmc->has_init)
2757 return 0;
Mateusz Zalegad803fea2014-04-29 20:15:30 +02002758
2759 start = get_timer(0);
2760
Che-Liang Chioue9550442012-11-28 15:21:13 +00002761 if (!mmc->init_in_progress)
2762 err = mmc_start_init(mmc);
2763
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002764 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002765 err = mmc_complete_init(mmc);
Jagan Teki919b4852017-01-10 11:18:43 +01002766 if (err)
Masahiro Yamadad4d64882018-01-28 19:11:42 +09002767 pr_info("%s: %d, time %lu\n", __func__, err, get_timer(start));
Jagan Teki919b4852017-01-10 11:18:43 +01002768
Lei Wenbc897b12011-05-02 16:26:26 +00002769 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002770}
2771
Markus Niebelab711882013-12-16 13:40:46 +01002772int mmc_set_dsr(struct mmc *mmc, u16 val)
2773{
2774 mmc->dsr = val;
2775 return 0;
2776}
2777
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002778/* CPU-specific MMC initializations */
2779__weak int cpu_mmc_init(bd_t *bis)
Andy Fleming272cc702008-10-30 16:41:01 -05002780{
2781 return -1;
2782}
2783
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002784/* board-specific MMC initializations. */
2785__weak int board_mmc_init(bd_t *bis)
2786{
2787 return -1;
2788}
Andy Fleming272cc702008-10-30 16:41:01 -05002789
Che-Liang Chioue9550442012-11-28 15:21:13 +00002790void mmc_set_preinit(struct mmc *mmc, int preinit)
2791{
2792 mmc->preinit = preinit;
2793}
2794
Faiz Abbas8a856db2018-02-12 19:35:24 +05302795#if CONFIG_IS_ENABLED(DM_MMC)
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002796static int mmc_probe(bd_t *bis)
2797{
Simon Glass4a1db6d2015-12-29 05:22:49 -07002798 int ret, i;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002799 struct uclass *uc;
Simon Glass4a1db6d2015-12-29 05:22:49 -07002800 struct udevice *dev;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002801
2802 ret = uclass_get(UCLASS_MMC, &uc);
2803 if (ret)
2804 return ret;
2805
Simon Glass4a1db6d2015-12-29 05:22:49 -07002806 /*
2807 * Try to add them in sequence order. Really with driver model we
2808 * should allow holes, but the current MMC list does not allow that.
2809 * So if we request 0, 1, 3 we will get 0, 1, 2.
2810 */
2811 for (i = 0; ; i++) {
2812 ret = uclass_get_device_by_seq(UCLASS_MMC, i, &dev);
2813 if (ret == -ENODEV)
2814 break;
2815 }
2816 uclass_foreach_dev(dev, uc) {
2817 ret = device_probe(dev);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002818 if (ret)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002819 pr_err("%s - probe failed: %d\n", dev->name, ret);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002820 }
2821
2822 return 0;
2823}
2824#else
2825static int mmc_probe(bd_t *bis)
2826{
2827 if (board_mmc_init(bis) < 0)
2828 cpu_mmc_init(bis);
2829
2830 return 0;
2831}
2832#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00002833
Andy Fleming272cc702008-10-30 16:41:01 -05002834int mmc_initialize(bd_t *bis)
2835{
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02002836 static int initialized = 0;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002837 int ret;
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02002838 if (initialized) /* Avoid initializing mmc multiple times */
2839 return 0;
2840 initialized = 1;
2841
Simon Glassc4d660d2017-07-04 13:31:19 -06002842#if !CONFIG_IS_ENABLED(BLK)
Marek Vasutb5b838f2016-12-01 02:06:33 +01002843#if !CONFIG_IS_ENABLED(MMC_TINY)
Simon Glassc40fdca2016-05-01 13:52:35 -06002844 mmc_list_init();
2845#endif
Marek Vasutb5b838f2016-12-01 02:06:33 +01002846#endif
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002847 ret = mmc_probe(bis);
2848 if (ret)
2849 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05002850
Ying Zhangbb0dc102013-08-16 15:16:11 +08002851#ifndef CONFIG_SPL_BUILD
Andy Fleming272cc702008-10-30 16:41:01 -05002852 print_mmc_devices(',');
Ying Zhangbb0dc102013-08-16 15:16:11 +08002853#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002854
Simon Glassc40fdca2016-05-01 13:52:35 -06002855 mmc_do_preinit();
Andy Fleming272cc702008-10-30 16:41:01 -05002856 return 0;
2857}
Tomas Melincd3d4882016-11-25 11:01:03 +02002858
2859#ifdef CONFIG_CMD_BKOPS_ENABLE
2860int mmc_set_bkops_enable(struct mmc *mmc)
2861{
2862 int err;
2863 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
2864
2865 err = mmc_send_ext_csd(mmc, ext_csd);
2866 if (err) {
2867 puts("Could not get ext_csd register values\n");
2868 return err;
2869 }
2870
2871 if (!(ext_csd[EXT_CSD_BKOPS_SUPPORT] & 0x1)) {
2872 puts("Background operations not supported on device\n");
2873 return -EMEDIUMTYPE;
2874 }
2875
2876 if (ext_csd[EXT_CSD_BKOPS_EN] & 0x1) {
2877 puts("Background operations already enabled\n");
2878 return 0;
2879 }
2880
2881 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BKOPS_EN, 1);
2882 if (err) {
2883 puts("Failed to enable manual background operations\n");
2884 return err;
2885 }
2886
2887 puts("Enabled manual background operations\n");
2888
2889 return 0;
2890}
2891#endif