blob: 67d05c5413969422176c724514d0b649073e127e [file] [log] [blame]
Andy Fleming272cc702008-10-30 16:41:01 -05001/*
2 * Copyright 2008, Freescale Semiconductor, Inc
3 * Andy Fleming
4 *
5 * Based vaguely on the Linux code
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Andy Fleming272cc702008-10-30 16:41:01 -05008 */
9
10#include <config.h>
11#include <common.h>
12#include <command.h>
Sjoerd Simons8e3332e2015-08-30 16:55:45 -060013#include <dm.h>
14#include <dm/device-internal.h>
Stephen Warrend4622df2014-05-23 12:47:06 -060015#include <errno.h>
Andy Fleming272cc702008-10-30 16:41:01 -050016#include <mmc.h>
17#include <part.h>
Peng Fan2051aef2016-10-11 15:08:43 +080018#include <power/regulator.h>
Andy Fleming272cc702008-10-30 16:41:01 -050019#include <malloc.h>
Simon Glasscf92e052015-09-02 17:24:58 -060020#include <memalign.h>
Andy Fleming272cc702008-10-30 16:41:01 -050021#include <linux/list.h>
Rabin Vincent9b1f9422009-04-05 13:30:54 +053022#include <div64.h>
Paul Burtonda61fa52013-09-09 15:30:26 +010023#include "mmc_private.h"
Andy Fleming272cc702008-10-30 16:41:01 -050024
Peng Fan3697e592016-09-01 11:13:38 +080025static const unsigned int sd_au_size[] = {
26 0, SZ_16K / 512, SZ_32K / 512,
27 SZ_64K / 512, SZ_128K / 512, SZ_256K / 512,
28 SZ_512K / 512, SZ_1M / 512, SZ_2M / 512,
29 SZ_4M / 512, SZ_8M / 512, (SZ_8M + SZ_4M) / 512,
30 SZ_16M / 512, (SZ_16M + SZ_8M) / 512, SZ_32M / 512, SZ_64M / 512,
31};
32
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +020033static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +020034static int mmc_power_cycle(struct mmc *mmc);
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +020035static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps);
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +020036
Marek Vasutb5b838f2016-12-01 02:06:33 +010037#if CONFIG_IS_ENABLED(MMC_TINY)
38static struct mmc mmc_static;
39struct mmc *find_mmc_device(int dev_num)
40{
41 return &mmc_static;
42}
43
44void mmc_do_preinit(void)
45{
46 struct mmc *m = &mmc_static;
47#ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
48 mmc_set_preinit(m, 1);
49#endif
50 if (m->preinit)
51 mmc_start_init(m);
52}
53
54struct blk_desc *mmc_get_blk_desc(struct mmc *mmc)
55{
56 return &mmc->block_dev;
57}
58#endif
59
Simon Glasse7881d82017-07-29 11:35:31 -060060#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020061
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +010062#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020063static int mmc_wait_dat0(struct mmc *mmc, int state, int timeout)
64{
65 return -ENOSYS;
66}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +010067#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +020068
Jeroen Hofstee750121c2014-07-12 21:24:08 +020069__weak int board_mmc_getwp(struct mmc *mmc)
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000070{
71 return -1;
72}
73
74int mmc_getwp(struct mmc *mmc)
75{
76 int wp;
77
78 wp = board_mmc_getwp(mmc);
79
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000080 if (wp < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020081 if (mmc->cfg->ops->getwp)
82 wp = mmc->cfg->ops->getwp(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +000083 else
84 wp = 0;
85 }
Nikita Kiryanovd23d8d72012-12-03 02:19:46 +000086
87 return wp;
88}
89
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +020090__weak int board_mmc_getcd(struct mmc *mmc)
91{
Stefano Babic11fdade2010-02-05 15:04:43 +010092 return -1;
93}
Simon Glass8ca51e52016-06-12 23:30:22 -060094#endif
Stefano Babic11fdade2010-02-05 15:04:43 +010095
Marek Vasut8635ff92012-03-15 18:41:35 +000096#ifdef CONFIG_MMC_TRACE
Simon Glassc0c76eb2016-06-12 23:30:20 -060097void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd)
98{
99 printf("CMD_SEND:%d\n", cmd->cmdidx);
100 printf("\t\tARG\t\t\t 0x%08X\n", cmd->cmdarg);
101}
102
103void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, int ret)
104{
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000105 int i;
106 u8 *ptr;
107
Bin Meng7863ce52016-03-17 21:53:14 -0700108 if (ret) {
109 printf("\t\tRET\t\t\t %d\n", ret);
110 } else {
111 switch (cmd->resp_type) {
112 case MMC_RSP_NONE:
113 printf("\t\tMMC_RSP_NONE\n");
114 break;
115 case MMC_RSP_R1:
116 printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08X \n",
117 cmd->response[0]);
118 break;
119 case MMC_RSP_R1b:
120 printf("\t\tMMC_RSP_R1b\t\t 0x%08X \n",
121 cmd->response[0]);
122 break;
123 case MMC_RSP_R2:
124 printf("\t\tMMC_RSP_R2\t\t 0x%08X \n",
125 cmd->response[0]);
126 printf("\t\t \t\t 0x%08X \n",
127 cmd->response[1]);
128 printf("\t\t \t\t 0x%08X \n",
129 cmd->response[2]);
130 printf("\t\t \t\t 0x%08X \n",
131 cmd->response[3]);
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000132 printf("\n");
Bin Meng7863ce52016-03-17 21:53:14 -0700133 printf("\t\t\t\t\tDUMPING DATA\n");
134 for (i = 0; i < 4; i++) {
135 int j;
136 printf("\t\t\t\t\t%03d - ", i*4);
137 ptr = (u8 *)&cmd->response[i];
138 ptr += 3;
139 for (j = 0; j < 4; j++)
140 printf("%02X ", *ptr--);
141 printf("\n");
142 }
143 break;
144 case MMC_RSP_R3:
145 printf("\t\tMMC_RSP_R3,4\t\t 0x%08X \n",
146 cmd->response[0]);
147 break;
148 default:
149 printf("\t\tERROR MMC rsp not supported\n");
150 break;
Bin Meng53e8e402016-03-17 21:53:13 -0700151 }
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000152 }
Simon Glassc0c76eb2016-06-12 23:30:20 -0600153}
154
155void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd)
156{
157 int status;
158
159 status = (cmd->response[0] & MMC_STATUS_CURR_STATE) >> 9;
160 printf("CURR STATE:%d\n", status);
161}
Raffaele Recalcati5db2fe32011-03-11 02:01:14 +0000162#endif
Simon Glassc0c76eb2016-06-12 23:30:20 -0600163
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200164#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
165const char *mmc_mode_name(enum bus_mode mode)
166{
167 static const char *const names[] = {
168 [MMC_LEGACY] = "MMC legacy",
169 [SD_LEGACY] = "SD Legacy",
170 [MMC_HS] = "MMC High Speed (26MHz)",
171 [SD_HS] = "SD High Speed (50MHz)",
172 [UHS_SDR12] = "UHS SDR12 (25MHz)",
173 [UHS_SDR25] = "UHS SDR25 (50MHz)",
174 [UHS_SDR50] = "UHS SDR50 (100MHz)",
175 [UHS_SDR104] = "UHS SDR104 (208MHz)",
176 [UHS_DDR50] = "UHS DDR50 (50MHz)",
177 [MMC_HS_52] = "MMC High Speed (52MHz)",
178 [MMC_DDR_52] = "MMC DDR52 (52MHz)",
179 [MMC_HS_200] = "HS200 (200MHz)",
180 };
181
182 if (mode >= MMC_MODES_END)
183 return "Unknown mode";
184 else
185 return names[mode];
186}
187#endif
188
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200189static uint mmc_mode2freq(struct mmc *mmc, enum bus_mode mode)
190{
191 static const int freqs[] = {
192 [SD_LEGACY] = 25000000,
193 [MMC_HS] = 26000000,
194 [SD_HS] = 50000000,
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100195#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200196 [UHS_SDR12] = 25000000,
197 [UHS_SDR25] = 50000000,
198 [UHS_SDR50] = 100000000,
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200199 [UHS_DDR50] = 50000000,
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100200#ifdef MMC_SUPPORTS_TUNING
201 [UHS_SDR104] = 208000000,
202#endif
203#endif
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200204 [MMC_HS_52] = 52000000,
205 [MMC_DDR_52] = 52000000,
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100206#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200207 [MMC_HS_200] = 200000000,
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100208#endif
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200209 };
210
211 if (mode == MMC_LEGACY)
212 return mmc->legacy_speed;
213 else if (mode >= MMC_MODES_END)
214 return 0;
215 else
216 return freqs[mode];
217}
218
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200219static int mmc_select_mode(struct mmc *mmc, enum bus_mode mode)
220{
221 mmc->selected_mode = mode;
Jean-Jacques Hiblot05038572017-09-21 16:29:55 +0200222 mmc->tran_speed = mmc_mode2freq(mmc, mode);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200223 mmc->ddr_mode = mmc_is_mode_ddr(mode);
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +0200224 debug("selecting mode %s (freq : %d MHz)\n", mmc_mode_name(mode),
225 mmc->tran_speed / 1000000);
226 return 0;
227}
228
Simon Glasse7881d82017-07-29 11:35:31 -0600229#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glassc0c76eb2016-06-12 23:30:20 -0600230int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
231{
232 int ret;
233
234 mmmc_trace_before_send(mmc, cmd);
235 ret = mmc->cfg->ops->send_cmd(mmc, cmd, data);
236 mmmc_trace_after_send(mmc, cmd, ret);
237
Marek Vasut8635ff92012-03-15 18:41:35 +0000238 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500239}
Simon Glass8ca51e52016-06-12 23:30:22 -0600240#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500241
Paul Burtonda61fa52013-09-09 15:30:26 +0100242int mmc_send_status(struct mmc *mmc, int timeout)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000243{
244 struct mmc_cmd cmd;
Jan Kloetzked617c422012-02-05 22:29:12 +0000245 int err, retries = 5;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000246
247 cmd.cmdidx = MMC_CMD_SEND_STATUS;
248 cmd.resp_type = MMC_RSP_R1;
Marek Vasutaaf3d412011-08-10 09:24:48 +0200249 if (!mmc_host_is_spi(mmc))
250 cmd.cmdarg = mmc->rca << 16;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000251
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500252 while (1) {
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000253 err = mmc_send_cmd(mmc, &cmd, NULL);
Jan Kloetzked617c422012-02-05 22:29:12 +0000254 if (!err) {
255 if ((cmd.response[0] & MMC_STATUS_RDY_FOR_DATA) &&
256 (cmd.response[0] & MMC_STATUS_CURR_STATE) !=
257 MMC_STATE_PRG)
258 break;
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +0200259
260 if (cmd.response[0] & MMC_STATUS_MASK) {
Paul Burton56196822013-09-04 16:12:25 +0100261#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100262 pr_err("Status Error: 0x%08X\n",
263 cmd.response[0]);
Paul Burton56196822013-09-04 16:12:25 +0100264#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900265 return -ECOMM;
Jan Kloetzked617c422012-02-05 22:29:12 +0000266 }
267 } else if (--retries < 0)
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000268 return err;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000269
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500270 if (timeout-- <= 0)
271 break;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000272
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500273 udelay(1000);
274 }
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000275
Simon Glassc0c76eb2016-06-12 23:30:20 -0600276 mmc_trace_state(mmc, &cmd);
Jongman Heo5b0c9422012-06-03 21:32:13 +0000277 if (timeout <= 0) {
Paul Burton56196822013-09-04 16:12:25 +0100278#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100279 pr_err("Timeout waiting card ready\n");
Paul Burton56196822013-09-04 16:12:25 +0100280#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900281 return -ETIMEDOUT;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000282 }
283
284 return 0;
285}
286
Paul Burtonda61fa52013-09-09 15:30:26 +0100287int mmc_set_blocklen(struct mmc *mmc, int len)
Andy Fleming272cc702008-10-30 16:41:01 -0500288{
289 struct mmc_cmd cmd;
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200290 int err;
Andy Fleming272cc702008-10-30 16:41:01 -0500291
Andrew Gabbasov786e8f82014-12-01 06:59:09 -0600292 if (mmc->ddr_mode)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900293 return 0;
294
Andy Fleming272cc702008-10-30 16:41:01 -0500295 cmd.cmdidx = MMC_CMD_SET_BLOCKLEN;
296 cmd.resp_type = MMC_RSP_R1;
297 cmd.cmdarg = len;
Andy Fleming272cc702008-10-30 16:41:01 -0500298
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +0200299 err = mmc_send_cmd(mmc, &cmd, NULL);
300
301#ifdef CONFIG_MMC_QUIRKS
302 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SET_BLOCKLEN)) {
303 int retries = 4;
304 /*
305 * It has been seen that SET_BLOCKLEN may fail on the first
306 * attempt, let's try a few more time
307 */
308 do {
309 err = mmc_send_cmd(mmc, &cmd, NULL);
310 if (!err)
311 break;
312 } while (retries--);
313 }
314#endif
315
316 return err;
Andy Fleming272cc702008-10-30 16:41:01 -0500317}
318
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100319#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200320static const u8 tuning_blk_pattern_4bit[] = {
321 0xff, 0x0f, 0xff, 0x00, 0xff, 0xcc, 0xc3, 0xcc,
322 0xc3, 0x3c, 0xcc, 0xff, 0xfe, 0xff, 0xfe, 0xef,
323 0xff, 0xdf, 0xff, 0xdd, 0xff, 0xfb, 0xff, 0xfb,
324 0xbf, 0xff, 0x7f, 0xff, 0x77, 0xf7, 0xbd, 0xef,
325 0xff, 0xf0, 0xff, 0xf0, 0x0f, 0xfc, 0xcc, 0x3c,
326 0xcc, 0x33, 0xcc, 0xcf, 0xff, 0xef, 0xff, 0xee,
327 0xff, 0xfd, 0xff, 0xfd, 0xdf, 0xff, 0xbf, 0xff,
328 0xbb, 0xff, 0xf7, 0xff, 0xf7, 0x7f, 0x7b, 0xde,
329};
330
331static const u8 tuning_blk_pattern_8bit[] = {
332 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00, 0x00,
333 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc, 0xcc,
334 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff, 0xff,
335 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee, 0xff,
336 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd, 0xdd,
337 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff, 0xbb,
338 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff, 0xff,
339 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee, 0xff,
340 0xff, 0xff, 0xff, 0x00, 0xff, 0xff, 0xff, 0x00,
341 0x00, 0xff, 0xff, 0xcc, 0xcc, 0xcc, 0x33, 0xcc,
342 0xcc, 0xcc, 0x33, 0x33, 0xcc, 0xcc, 0xcc, 0xff,
343 0xff, 0xff, 0xee, 0xff, 0xff, 0xff, 0xee, 0xee,
344 0xff, 0xff, 0xff, 0xdd, 0xff, 0xff, 0xff, 0xdd,
345 0xdd, 0xff, 0xff, 0xff, 0xbb, 0xff, 0xff, 0xff,
346 0xbb, 0xbb, 0xff, 0xff, 0xff, 0x77, 0xff, 0xff,
347 0xff, 0x77, 0x77, 0xff, 0x77, 0xbb, 0xdd, 0xee,
348};
349
350int mmc_send_tuning(struct mmc *mmc, u32 opcode, int *cmd_error)
351{
352 struct mmc_cmd cmd;
353 struct mmc_data data;
354 const u8 *tuning_block_pattern;
355 int size, err;
356
357 if (mmc->bus_width == 8) {
358 tuning_block_pattern = tuning_blk_pattern_8bit;
359 size = sizeof(tuning_blk_pattern_8bit);
360 } else if (mmc->bus_width == 4) {
361 tuning_block_pattern = tuning_blk_pattern_4bit;
362 size = sizeof(tuning_blk_pattern_4bit);
363 } else {
364 return -EINVAL;
365 }
366
367 ALLOC_CACHE_ALIGN_BUFFER(u8, data_buf, size);
368
369 cmd.cmdidx = opcode;
370 cmd.cmdarg = 0;
371 cmd.resp_type = MMC_RSP_R1;
372
373 data.dest = (void *)data_buf;
374 data.blocks = 1;
375 data.blocksize = size;
376 data.flags = MMC_DATA_READ;
377
378 err = mmc_send_cmd(mmc, &cmd, &data);
379 if (err)
380 return err;
381
382 if (memcmp(data_buf, tuning_block_pattern, size))
383 return -EIO;
384
385 return 0;
386}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100387#endif
Jean-Jacques Hiblot9815e3b2017-09-21 16:30:12 +0200388
Sascha Silbeff8fef52013-06-14 13:07:25 +0200389static int mmc_read_blocks(struct mmc *mmc, void *dst, lbaint_t start,
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000390 lbaint_t blkcnt)
Andy Fleming272cc702008-10-30 16:41:01 -0500391{
392 struct mmc_cmd cmd;
393 struct mmc_data data;
394
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700395 if (blkcnt > 1)
396 cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK;
397 else
398 cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK;
Andy Fleming272cc702008-10-30 16:41:01 -0500399
400 if (mmc->high_capacity)
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700401 cmd.cmdarg = start;
Andy Fleming272cc702008-10-30 16:41:01 -0500402 else
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700403 cmd.cmdarg = start * mmc->read_bl_len;
Andy Fleming272cc702008-10-30 16:41:01 -0500404
405 cmd.resp_type = MMC_RSP_R1;
Andy Fleming272cc702008-10-30 16:41:01 -0500406
407 data.dest = dst;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700408 data.blocks = blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500409 data.blocksize = mmc->read_bl_len;
410 data.flags = MMC_DATA_READ;
411
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700412 if (mmc_send_cmd(mmc, &cmd, &data))
413 return 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500414
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700415 if (blkcnt > 1) {
416 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
417 cmd.cmdarg = 0;
418 cmd.resp_type = MMC_RSP_R1b;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700419 if (mmc_send_cmd(mmc, &cmd, NULL)) {
Paul Burton56196822013-09-04 16:12:25 +0100420#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100421 pr_err("mmc fail to send stop cmd\n");
Paul Burton56196822013-09-04 16:12:25 +0100422#endif
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700423 return 0;
424 }
Andy Fleming272cc702008-10-30 16:41:01 -0500425 }
426
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700427 return blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500428}
429
Simon Glassc4d660d2017-07-04 13:31:19 -0600430#if CONFIG_IS_ENABLED(BLK)
Simon Glass7dba0b92016-06-12 23:30:15 -0600431ulong mmc_bread(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600432#else
Simon Glass7dba0b92016-06-12 23:30:15 -0600433ulong mmc_bread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt,
434 void *dst)
Simon Glass33fb2112016-05-01 13:52:41 -0600435#endif
Andy Fleming272cc702008-10-30 16:41:01 -0500436{
Simon Glassc4d660d2017-07-04 13:31:19 -0600437#if CONFIG_IS_ENABLED(BLK)
Simon Glass33fb2112016-05-01 13:52:41 -0600438 struct blk_desc *block_dev = dev_get_uclass_platdata(dev);
439#endif
Simon Glassbcce53d2016-02-29 15:25:51 -0700440 int dev_num = block_dev->devnum;
Stephen Warren873cc1d2015-12-07 11:38:49 -0700441 int err;
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700442 lbaint_t cur, blocks_todo = blkcnt;
Andy Fleming272cc702008-10-30 16:41:01 -0500443
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700444 if (blkcnt == 0)
445 return 0;
446
447 struct mmc *mmc = find_mmc_device(dev_num);
Andy Fleming272cc702008-10-30 16:41:01 -0500448 if (!mmc)
449 return 0;
450
Marek Vasutb5b838f2016-12-01 02:06:33 +0100451 if (CONFIG_IS_ENABLED(MMC_TINY))
452 err = mmc_switch_part(mmc, block_dev->hwpart);
453 else
454 err = blk_dselect_hwpart(block_dev, block_dev->hwpart);
455
Stephen Warren873cc1d2015-12-07 11:38:49 -0700456 if (err < 0)
457 return 0;
458
Simon Glassc40fdca2016-05-01 13:52:35 -0600459 if ((start + blkcnt) > block_dev->lba) {
Paul Burton56196822013-09-04 16:12:25 +0100460#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100461 pr_err("MMC: block number 0x" LBAF " exceeds max(0x" LBAF ")\n",
462 start + blkcnt, block_dev->lba);
Paul Burton56196822013-09-04 16:12:25 +0100463#endif
Lei Wend2bf29e2010-09-13 22:07:27 +0800464 return 0;
465 }
Andy Fleming272cc702008-10-30 16:41:01 -0500466
Simon Glass11692992015-06-23 15:38:50 -0600467 if (mmc_set_blocklen(mmc, mmc->read_bl_len)) {
468 debug("%s: Failed to set blocklen\n", __func__);
Andy Fleming272cc702008-10-30 16:41:01 -0500469 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600470 }
Andy Fleming272cc702008-10-30 16:41:01 -0500471
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700472 do {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200473 cur = (blocks_todo > mmc->cfg->b_max) ?
474 mmc->cfg->b_max : blocks_todo;
Simon Glass11692992015-06-23 15:38:50 -0600475 if (mmc_read_blocks(mmc, dst, start, cur) != cur) {
476 debug("%s: Failed to read blocks\n", __func__);
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700477 return 0;
Simon Glass11692992015-06-23 15:38:50 -0600478 }
Alagu Sankar4a1a06b2010-10-25 07:23:56 -0700479 blocks_todo -= cur;
480 start += cur;
481 dst += cur * mmc->read_bl_len;
482 } while (blocks_todo > 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500483
484 return blkcnt;
485}
486
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000487static int mmc_go_idle(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -0500488{
489 struct mmc_cmd cmd;
490 int err;
491
492 udelay(1000);
493
494 cmd.cmdidx = MMC_CMD_GO_IDLE_STATE;
495 cmd.cmdarg = 0;
496 cmd.resp_type = MMC_RSP_NONE;
Andy Fleming272cc702008-10-30 16:41:01 -0500497
498 err = mmc_send_cmd(mmc, &cmd, NULL);
499
500 if (err)
501 return err;
502
503 udelay(2000);
504
505 return 0;
506}
507
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100508#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200509static int mmc_switch_voltage(struct mmc *mmc, int signal_voltage)
510{
511 struct mmc_cmd cmd;
512 int err = 0;
513
514 /*
515 * Send CMD11 only if the request is to switch the card to
516 * 1.8V signalling.
517 */
518 if (signal_voltage == MMC_SIGNAL_VOLTAGE_330)
519 return mmc_set_signal_voltage(mmc, signal_voltage);
520
521 cmd.cmdidx = SD_CMD_SWITCH_UHS18V;
522 cmd.cmdarg = 0;
523 cmd.resp_type = MMC_RSP_R1;
524
525 err = mmc_send_cmd(mmc, &cmd, NULL);
526 if (err)
527 return err;
528
529 if (!mmc_host_is_spi(mmc) && (cmd.response[0] & MMC_STATUS_ERROR))
530 return -EIO;
531
532 /*
533 * The card should drive cmd and dat[0:3] low immediately
534 * after the response of cmd11, but wait 100 us to be sure
535 */
536 err = mmc_wait_dat0(mmc, 0, 100);
537 if (err == -ENOSYS)
538 udelay(100);
539 else if (err)
540 return -ETIMEDOUT;
541
542 /*
543 * During a signal voltage level switch, the clock must be gated
544 * for 5 ms according to the SD spec
545 */
546 mmc_set_clock(mmc, mmc->clock, true);
547
548 err = mmc_set_signal_voltage(mmc, signal_voltage);
549 if (err)
550 return err;
551
552 /* Keep clock gated for at least 10 ms, though spec only says 5 ms */
553 mdelay(10);
554 mmc_set_clock(mmc, mmc->clock, false);
555
556 /*
557 * Failure to switch is indicated by the card holding
558 * dat[0:3] low. Wait for at least 1 ms according to spec
559 */
560 err = mmc_wait_dat0(mmc, 1, 1000);
561 if (err == -ENOSYS)
562 udelay(1000);
563 else if (err)
564 return -ETIMEDOUT;
565
566 return 0;
567}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100568#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200569
570static int sd_send_op_cond(struct mmc *mmc, bool uhs_en)
Andy Fleming272cc702008-10-30 16:41:01 -0500571{
572 int timeout = 1000;
573 int err;
574 struct mmc_cmd cmd;
575
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500576 while (1) {
Andy Fleming272cc702008-10-30 16:41:01 -0500577 cmd.cmdidx = MMC_CMD_APP_CMD;
578 cmd.resp_type = MMC_RSP_R1;
579 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500580
581 err = mmc_send_cmd(mmc, &cmd, NULL);
582
583 if (err)
584 return err;
585
586 cmd.cmdidx = SD_CMD_APP_SEND_OP_COND;
587 cmd.resp_type = MMC_RSP_R3;
Stefano Babic250de122010-01-20 18:20:39 +0100588
589 /*
590 * Most cards do not answer if some reserved bits
591 * in the ocr are set. However, Some controller
592 * can set bit 7 (reserved for low voltages), but
593 * how to manage low voltages SD card is not yet
594 * specified.
595 */
Thomas Choud52ebf12010-12-24 13:12:21 +0000596 cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 :
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200597 (mmc->cfg->voltages & 0xff8000);
Andy Fleming272cc702008-10-30 16:41:01 -0500598
599 if (mmc->version == SD_VERSION_2)
600 cmd.cmdarg |= OCR_HCS;
601
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200602 if (uhs_en)
603 cmd.cmdarg |= OCR_S18R;
604
Andy Fleming272cc702008-10-30 16:41:01 -0500605 err = mmc_send_cmd(mmc, &cmd, NULL);
606
607 if (err)
608 return err;
609
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500610 if (cmd.response[0] & OCR_BUSY)
611 break;
Andy Fleming272cc702008-10-30 16:41:01 -0500612
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500613 if (timeout-- <= 0)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900614 return -EOPNOTSUPP;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500615
616 udelay(1000);
617 }
Andy Fleming272cc702008-10-30 16:41:01 -0500618
619 if (mmc->version != SD_VERSION_2)
620 mmc->version = SD_VERSION_1_0;
621
Thomas Choud52ebf12010-12-24 13:12:21 +0000622 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
623 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
624 cmd.resp_type = MMC_RSP_R3;
625 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000626
627 err = mmc_send_cmd(mmc, &cmd, NULL);
628
629 if (err)
630 return err;
631 }
632
Rabin Vincent998be3d2009-04-05 13:30:56 +0530633 mmc->ocr = cmd.response[0];
Andy Fleming272cc702008-10-30 16:41:01 -0500634
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100635#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200636 if (uhs_en && !(mmc_host_is_spi(mmc)) && (cmd.response[0] & 0x41000000)
637 == 0x41000000) {
638 err = mmc_switch_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
639 if (err)
640 return err;
641 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100642#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +0200643
Andy Fleming272cc702008-10-30 16:41:01 -0500644 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
645 mmc->rca = 0;
646
647 return 0;
648}
649
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500650static int mmc_send_op_cond_iter(struct mmc *mmc, int use_arg)
Andy Fleming272cc702008-10-30 16:41:01 -0500651{
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500652 struct mmc_cmd cmd;
Andy Fleming272cc702008-10-30 16:41:01 -0500653 int err;
654
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500655 cmd.cmdidx = MMC_CMD_SEND_OP_COND;
656 cmd.resp_type = MMC_RSP_R3;
657 cmd.cmdarg = 0;
Rob Herring5a203972015-03-23 17:56:59 -0500658 if (use_arg && !mmc_host_is_spi(mmc))
659 cmd.cmdarg = OCR_HCS |
Pantelis Antoniou93bfd612014-03-11 19:34:20 +0200660 (mmc->cfg->voltages &
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500661 (mmc->ocr & OCR_VOLTAGE_MASK)) |
662 (mmc->ocr & OCR_ACCESS_MODE);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000663
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500664 err = mmc_send_cmd(mmc, &cmd, NULL);
Che-Liang Chioue9550442012-11-28 15:21:13 +0000665 if (err)
666 return err;
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500667 mmc->ocr = cmd.response[0];
Che-Liang Chioue9550442012-11-28 15:21:13 +0000668 return 0;
669}
670
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200671static int mmc_send_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000672{
Che-Liang Chioue9550442012-11-28 15:21:13 +0000673 int err, i;
674
Andy Fleming272cc702008-10-30 16:41:01 -0500675 /* Some cards seem to need this */
676 mmc_go_idle(mmc);
677
Raffaele Recalcati31cacba2011-03-11 02:01:13 +0000678 /* Asking to the card its capabilities */
Che-Liang Chioue9550442012-11-28 15:21:13 +0000679 for (i = 0; i < 2; i++) {
Andrew Gabbasov5289b532015-03-19 07:44:04 -0500680 err = mmc_send_op_cond_iter(mmc, i != 0);
Andy Fleming272cc702008-10-30 16:41:01 -0500681 if (err)
682 return err;
683
Che-Liang Chioue9550442012-11-28 15:21:13 +0000684 /* exit if not busy (flag seems to be inverted) */
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500685 if (mmc->ocr & OCR_BUSY)
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500686 break;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000687 }
Andrew Gabbasovbd47c132015-03-19 07:44:07 -0500688 mmc->op_cond_pending = 1;
689 return 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +0000690}
Andy Fleming272cc702008-10-30 16:41:01 -0500691
Jeroen Hofstee750121c2014-07-12 21:24:08 +0200692static int mmc_complete_op_cond(struct mmc *mmc)
Che-Liang Chioue9550442012-11-28 15:21:13 +0000693{
694 struct mmc_cmd cmd;
695 int timeout = 1000;
696 uint start;
697 int err;
698
699 mmc->op_cond_pending = 0;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500700 if (!(mmc->ocr & OCR_BUSY)) {
Yangbo Lud188b112016-08-02 15:33:18 +0800701 /* Some cards seem to need this */
702 mmc_go_idle(mmc);
703
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500704 start = get_timer(0);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500705 while (1) {
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500706 err = mmc_send_op_cond_iter(mmc, 1);
707 if (err)
708 return err;
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500709 if (mmc->ocr & OCR_BUSY)
710 break;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500711 if (get_timer(start) > timeout)
Jaehoon Chung915ffa52016-07-19 16:33:36 +0900712 return -EOPNOTSUPP;
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500713 udelay(100);
Andrew Gabbasov1677eef2015-03-19 07:44:06 -0500714 }
Andrew Gabbasovcc17c012015-03-19 07:44:05 -0500715 }
Andy Fleming272cc702008-10-30 16:41:01 -0500716
Thomas Choud52ebf12010-12-24 13:12:21 +0000717 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
718 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
719 cmd.resp_type = MMC_RSP_R3;
720 cmd.cmdarg = 0;
Thomas Choud52ebf12010-12-24 13:12:21 +0000721
722 err = mmc_send_cmd(mmc, &cmd, NULL);
723
724 if (err)
725 return err;
Andrew Gabbasova626c8d2015-03-19 07:44:03 -0500726
727 mmc->ocr = cmd.response[0];
Thomas Choud52ebf12010-12-24 13:12:21 +0000728 }
729
Andy Fleming272cc702008-10-30 16:41:01 -0500730 mmc->version = MMC_VERSION_UNKNOWN;
Andy Fleming272cc702008-10-30 16:41:01 -0500731
732 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
Stephen Warrendef816a2014-01-30 16:11:12 -0700733 mmc->rca = 1;
Andy Fleming272cc702008-10-30 16:41:01 -0500734
735 return 0;
736}
737
738
Kim Phillipsfdbb8732012-10-29 13:34:43 +0000739static int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd)
Andy Fleming272cc702008-10-30 16:41:01 -0500740{
741 struct mmc_cmd cmd;
742 struct mmc_data data;
743 int err;
744
745 /* Get the Card Status Register */
746 cmd.cmdidx = MMC_CMD_SEND_EXT_CSD;
747 cmd.resp_type = MMC_RSP_R1;
748 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -0500749
Yoshihiro Shimodacdfd1ac2012-06-07 19:09:11 +0000750 data.dest = (char *)ext_csd;
Andy Fleming272cc702008-10-30 16:41:01 -0500751 data.blocks = 1;
Simon Glass8bfa1952013-04-03 08:54:30 +0000752 data.blocksize = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -0500753 data.flags = MMC_DATA_READ;
754
755 err = mmc_send_cmd(mmc, &cmd, &data);
756
757 return err;
758}
759
Simon Glassc40704f2016-06-12 23:30:18 -0600760int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value)
Andy Fleming272cc702008-10-30 16:41:01 -0500761{
762 struct mmc_cmd cmd;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000763 int timeout = 1000;
Maxime Riparda9003dc2016-11-04 16:18:08 +0100764 int retries = 3;
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000765 int ret;
Andy Fleming272cc702008-10-30 16:41:01 -0500766
767 cmd.cmdidx = MMC_CMD_SWITCH;
768 cmd.resp_type = MMC_RSP_R1b;
769 cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000770 (index << 16) |
771 (value << 8);
Andy Fleming272cc702008-10-30 16:41:01 -0500772
Maxime Riparda9003dc2016-11-04 16:18:08 +0100773 while (retries > 0) {
774 ret = mmc_send_cmd(mmc, &cmd, NULL);
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000775
Maxime Riparda9003dc2016-11-04 16:18:08 +0100776 /* Waiting for the ready status */
777 if (!ret) {
778 ret = mmc_send_status(mmc, timeout);
779 return ret;
780 }
781
782 retries--;
783 }
Raffaele Recalcati5d4fc8d2011-03-11 02:01:12 +0000784
785 return ret;
786
Andy Fleming272cc702008-10-30 16:41:01 -0500787}
788
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200789static int mmc_set_card_speed(struct mmc *mmc, enum bus_mode mode)
Andy Fleming272cc702008-10-30 16:41:01 -0500790{
Andy Fleming272cc702008-10-30 16:41:01 -0500791 int err;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200792 int speed_bits;
793
794 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
795
796 switch (mode) {
797 case MMC_HS:
798 case MMC_HS_52:
799 case MMC_DDR_52:
800 speed_bits = EXT_CSD_TIMING_HS;
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200801 break;
802 case MMC_HS_200:
803 speed_bits = EXT_CSD_TIMING_HS200;
804 break;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200805 case MMC_LEGACY:
806 speed_bits = EXT_CSD_TIMING_LEGACY;
807 break;
808 default:
809 return -EINVAL;
810 }
811 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING,
812 speed_bits);
813 if (err)
814 return err;
815
816 if ((mode == MMC_HS) || (mode == MMC_HS_52)) {
817 /* Now check to see that it worked */
818 err = mmc_send_ext_csd(mmc, test_csd);
819 if (err)
820 return err;
821
822 /* No high-speed support */
823 if (!test_csd[EXT_CSD_HS_TIMING])
824 return -ENOTSUPP;
825 }
826
827 return 0;
828}
829
830static int mmc_get_capabilities(struct mmc *mmc)
831{
832 u8 *ext_csd = mmc->ext_csd;
833 char cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500834
Jean-Jacques Hiblot00e446f2017-11-30 17:43:56 +0100835 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -0500836
Thomas Choud52ebf12010-12-24 13:12:21 +0000837 if (mmc_host_is_spi(mmc))
838 return 0;
839
Andy Fleming272cc702008-10-30 16:41:01 -0500840 /* Only version 4 supports high-speed */
841 if (mmc->version < MMC_VERSION_4)
842 return 0;
843
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200844 if (!ext_csd) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100845 pr_err("No ext_csd found!\n"); /* this should enver happen */
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200846 return -ENOTSUPP;
847 }
848
Andrew Gabbasovfc5b32f2014-12-25 10:22:25 -0600849 mmc->card_caps |= MMC_MODE_4BIT | MMC_MODE_8BIT;
850
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200851 cardtype = ext_csd[EXT_CSD_CARD_TYPE] & 0x3f;
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +0200852 mmc->cardtype = cardtype;
Andy Fleming272cc702008-10-30 16:41:01 -0500853
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +0200854 if (cardtype & (EXT_CSD_CARD_TYPE_HS200_1_2V |
855 EXT_CSD_CARD_TYPE_HS200_1_8V)) {
856 mmc->card_caps |= MMC_MODE_HS200;
857 }
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900858 if (cardtype & EXT_CSD_CARD_TYPE_52) {
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200859 if (cardtype & EXT_CSD_CARD_TYPE_DDR_52)
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900860 mmc->card_caps |= MMC_MODE_DDR_52MHz;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200861 mmc->card_caps |= MMC_MODE_HS_52MHz;
Jaehoon Chungd22e3d42014-05-16 13:59:54 +0900862 }
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +0200863 if (cardtype & EXT_CSD_CARD_TYPE_26)
864 mmc->card_caps |= MMC_MODE_HS;
Andy Fleming272cc702008-10-30 16:41:01 -0500865
866 return 0;
867}
868
Stephen Warrenf866a462013-06-11 15:14:01 -0600869static int mmc_set_capacity(struct mmc *mmc, int part_num)
870{
871 switch (part_num) {
872 case 0:
873 mmc->capacity = mmc->capacity_user;
874 break;
875 case 1:
876 case 2:
877 mmc->capacity = mmc->capacity_boot;
878 break;
879 case 3:
880 mmc->capacity = mmc->capacity_rpmb;
881 break;
882 case 4:
883 case 5:
884 case 6:
885 case 7:
886 mmc->capacity = mmc->capacity_gp[part_num - 4];
887 break;
888 default:
889 return -1;
890 }
891
Simon Glassc40fdca2016-05-01 13:52:35 -0600892 mmc_get_blk_desc(mmc)->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Stephen Warrenf866a462013-06-11 15:14:01 -0600893
894 return 0;
895}
896
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100897#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +0200898static int mmc_boot_part_access_chk(struct mmc *mmc, unsigned int part_num)
899{
900 int forbidden = 0;
901 bool change = false;
902
903 if (part_num & PART_ACCESS_MASK)
904 forbidden = MMC_CAP(MMC_HS_200);
905
906 if (MMC_CAP(mmc->selected_mode) & forbidden) {
907 debug("selected mode (%s) is forbidden for part %d\n",
908 mmc_mode_name(mmc->selected_mode), part_num);
909 change = true;
910 } else if (mmc->selected_mode != mmc->best_mode) {
911 debug("selected mode is not optimal\n");
912 change = true;
913 }
914
915 if (change)
916 return mmc_select_mode_and_width(mmc,
917 mmc->card_caps & ~forbidden);
918
919 return 0;
920}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +0100921#else
922static inline int mmc_boot_part_access_chk(struct mmc *mmc,
923 unsigned int part_num)
924{
925 return 0;
926}
927#endif
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +0200928
Simon Glass7dba0b92016-06-12 23:30:15 -0600929int mmc_switch_part(struct mmc *mmc, unsigned int part_num)
Lei Wenbc897b12011-05-02 16:26:26 +0000930{
Stephen Warrenf866a462013-06-11 15:14:01 -0600931 int ret;
Lei Wenbc897b12011-05-02 16:26:26 +0000932
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +0200933 ret = mmc_boot_part_access_chk(mmc, part_num);
934 if (ret)
935 return ret;
936
Stephen Warrenf866a462013-06-11 15:14:01 -0600937 ret = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONF,
938 (mmc->part_config & ~PART_ACCESS_MASK)
939 | (part_num & PART_ACCESS_MASK));
Stephen Warrenf866a462013-06-11 15:14:01 -0600940
Peter Bigot6dc93e72014-09-02 18:31:23 -0500941 /*
942 * Set the capacity if the switch succeeded or was intended
943 * to return to representing the raw device.
944 */
Stephen Warren873cc1d2015-12-07 11:38:49 -0700945 if ((ret == 0) || ((ret == -ENODEV) && (part_num == 0))) {
Peter Bigot6dc93e72014-09-02 18:31:23 -0500946 ret = mmc_set_capacity(mmc, part_num);
Simon Glassfdbb1392016-05-01 13:52:37 -0600947 mmc_get_blk_desc(mmc)->hwpart = part_num;
Stephen Warren873cc1d2015-12-07 11:38:49 -0700948 }
Peter Bigot6dc93e72014-09-02 18:31:23 -0500949
950 return ret;
Lei Wenbc897b12011-05-02 16:26:26 +0000951}
952
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100953#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100954int mmc_hwpart_config(struct mmc *mmc,
955 const struct mmc_hwpart_conf *conf,
956 enum mmc_hwpart_conf_mode mode)
957{
958 u8 part_attrs = 0;
959 u32 enh_size_mult;
960 u32 enh_start_addr;
961 u32 gp_size_mult[4];
962 u32 max_enh_size_mult;
963 u32 tot_enh_size_mult = 0;
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +0100964 u8 wr_rel_set;
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100965 int i, pidx, err;
966 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
967
968 if (mode < MMC_HWPART_CONF_CHECK || mode > MMC_HWPART_CONF_COMPLETE)
969 return -EINVAL;
970
971 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100972 pr_err("eMMC >= 4.4 required for enhanced user data area\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100973 return -EMEDIUMTYPE;
974 }
975
976 if (!(mmc->part_support & PART_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100977 pr_err("Card does not support partitioning\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100978 return -EMEDIUMTYPE;
979 }
980
981 if (!mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100982 pr_err("Card does not define HC WP group size\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100983 return -EMEDIUMTYPE;
984 }
985
986 /* check partition alignment and total enhanced size */
987 if (conf->user.enh_size) {
988 if (conf->user.enh_size % mmc->hc_wp_grp_size ||
989 conf->user.enh_start % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +0100990 pr_err("User data enhanced area not HC WP group "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +0100991 "size aligned\n");
992 return -EINVAL;
993 }
994 part_attrs |= EXT_CSD_ENH_USR;
995 enh_size_mult = conf->user.enh_size / mmc->hc_wp_grp_size;
996 if (mmc->high_capacity) {
997 enh_start_addr = conf->user.enh_start;
998 } else {
999 enh_start_addr = (conf->user.enh_start << 9);
1000 }
1001 } else {
1002 enh_size_mult = 0;
1003 enh_start_addr = 0;
1004 }
1005 tot_enh_size_mult += enh_size_mult;
1006
1007 for (pidx = 0; pidx < 4; pidx++) {
1008 if (conf->gp_part[pidx].size % mmc->hc_wp_grp_size) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001009 pr_err("GP%i partition not HC WP group size "
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001010 "aligned\n", pidx+1);
1011 return -EINVAL;
1012 }
1013 gp_size_mult[pidx] = conf->gp_part[pidx].size / mmc->hc_wp_grp_size;
1014 if (conf->gp_part[pidx].size && conf->gp_part[pidx].enhanced) {
1015 part_attrs |= EXT_CSD_ENH_GP(pidx);
1016 tot_enh_size_mult += gp_size_mult[pidx];
1017 }
1018 }
1019
1020 if (part_attrs && ! (mmc->part_support & ENHNCD_SUPPORT)) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001021 pr_err("Card does not support enhanced attribute\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001022 return -EMEDIUMTYPE;
1023 }
1024
1025 err = mmc_send_ext_csd(mmc, ext_csd);
1026 if (err)
1027 return err;
1028
1029 max_enh_size_mult =
1030 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+2] << 16) +
1031 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+1] << 8) +
1032 ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT];
1033 if (tot_enh_size_mult > max_enh_size_mult) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001034 pr_err("Total enhanced size exceeds maximum (%u > %u)\n",
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001035 tot_enh_size_mult, max_enh_size_mult);
1036 return -EMEDIUMTYPE;
1037 }
1038
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001039 /* The default value of EXT_CSD_WR_REL_SET is device
1040 * dependent, the values can only be changed if the
1041 * EXT_CSD_HS_CTRL_REL bit is set. The values can be
1042 * changed only once and before partitioning is completed. */
1043 wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
1044 if (conf->user.wr_rel_change) {
1045 if (conf->user.wr_rel_set)
1046 wr_rel_set |= EXT_CSD_WR_DATA_REL_USR;
1047 else
1048 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_USR;
1049 }
1050 for (pidx = 0; pidx < 4; pidx++) {
1051 if (conf->gp_part[pidx].wr_rel_change) {
1052 if (conf->gp_part[pidx].wr_rel_set)
1053 wr_rel_set |= EXT_CSD_WR_DATA_REL_GP(pidx);
1054 else
1055 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_GP(pidx);
1056 }
1057 }
1058
1059 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET] &&
1060 !(ext_csd[EXT_CSD_WR_REL_PARAM] & EXT_CSD_HS_CTRL_REL)) {
1061 puts("Card does not support host controlled partition write "
1062 "reliability settings\n");
1063 return -EMEDIUMTYPE;
1064 }
1065
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001066 if (ext_csd[EXT_CSD_PARTITION_SETTING] &
1067 EXT_CSD_PARTITION_SETTING_COMPLETED) {
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001068 pr_err("Card already partitioned\n");
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001069 return -EPERM;
1070 }
1071
1072 if (mode == MMC_HWPART_CONF_CHECK)
1073 return 0;
1074
1075 /* Partitioning requires high-capacity size definitions */
1076 if (!(ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01)) {
1077 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1078 EXT_CSD_ERASE_GROUP_DEF, 1);
1079
1080 if (err)
1081 return err;
1082
1083 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
1084
1085 /* update erase group size to be high-capacity */
1086 mmc->erase_grp_size =
1087 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
1088
1089 }
1090
1091 /* all OK, write the configuration */
1092 for (i = 0; i < 4; i++) {
1093 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1094 EXT_CSD_ENH_START_ADDR+i,
1095 (enh_start_addr >> (i*8)) & 0xFF);
1096 if (err)
1097 return err;
1098 }
1099 for (i = 0; i < 3; i++) {
1100 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1101 EXT_CSD_ENH_SIZE_MULT+i,
1102 (enh_size_mult >> (i*8)) & 0xFF);
1103 if (err)
1104 return err;
1105 }
1106 for (pidx = 0; pidx < 4; pidx++) {
1107 for (i = 0; i < 3; i++) {
1108 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1109 EXT_CSD_GP_SIZE_MULT+pidx*3+i,
1110 (gp_size_mult[pidx] >> (i*8)) & 0xFF);
1111 if (err)
1112 return err;
1113 }
1114 }
1115 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1116 EXT_CSD_PARTITIONS_ATTRIBUTE, part_attrs);
1117 if (err)
1118 return err;
1119
1120 if (mode == MMC_HWPART_CONF_SET)
1121 return 0;
1122
Diego Santa Cruz8dda5b0e2014-12-23 10:50:31 +01001123 /* The WR_REL_SET is a write-once register but shall be
1124 * written before setting PART_SETTING_COMPLETED. As it is
1125 * write-once we can only write it when completing the
1126 * partitioning. */
1127 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET]) {
1128 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1129 EXT_CSD_WR_REL_SET, wr_rel_set);
1130 if (err)
1131 return err;
1132 }
1133
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001134 /* Setting PART_SETTING_COMPLETED confirms the partition
1135 * configuration but it only becomes effective after power
1136 * cycle, so we do not adjust the partition related settings
1137 * in the mmc struct. */
1138
1139 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1140 EXT_CSD_PARTITION_SETTING,
1141 EXT_CSD_PARTITION_SETTING_COMPLETED);
1142 if (err)
1143 return err;
1144
1145 return 0;
1146}
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +01001147#endif
Diego Santa Cruzac9da0e2014-12-23 10:50:29 +01001148
Simon Glasse7881d82017-07-29 11:35:31 -06001149#if !CONFIG_IS_ENABLED(DM_MMC)
Thierry Reding48972d92012-01-02 01:15:37 +00001150int mmc_getcd(struct mmc *mmc)
1151{
1152 int cd;
1153
1154 cd = board_mmc_getcd(mmc);
1155
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001156 if (cd < 0) {
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001157 if (mmc->cfg->ops->getcd)
1158 cd = mmc->cfg->ops->getcd(mmc);
Peter Korsgaardd4e1da42013-03-21 04:00:03 +00001159 else
1160 cd = 1;
1161 }
Thierry Reding48972d92012-01-02 01:15:37 +00001162
1163 return cd;
1164}
Simon Glass8ca51e52016-06-12 23:30:22 -06001165#endif
Thierry Reding48972d92012-01-02 01:15:37 +00001166
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
1187
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001188static int sd_get_capabilities(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001189{
1190 int err;
1191 struct mmc_cmd cmd;
Suniel Mahesh18e7c8f2017-10-05 11:32:00 +05301192 ALLOC_CACHE_ALIGN_BUFFER(__be32, scr, 2);
1193 ALLOC_CACHE_ALIGN_BUFFER(__be32, switch_status, 16);
Andy Fleming272cc702008-10-30 16:41:01 -05001194 struct mmc_data data;
1195 int timeout;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001196#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001197 u32 sd3_bus_mode;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001198#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001199
Jean-Jacques Hiblot00e446f2017-11-30 17:43:56 +01001200 mmc->card_caps = MMC_MODE_1BIT | MMC_CAP(SD_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05001201
Thomas Choud52ebf12010-12-24 13:12:21 +00001202 if (mmc_host_is_spi(mmc))
1203 return 0;
1204
Andy Fleming272cc702008-10-30 16:41:01 -05001205 /* Read the SCR to find out if this card supports higher speeds */
1206 cmd.cmdidx = MMC_CMD_APP_CMD;
1207 cmd.resp_type = MMC_RSP_R1;
1208 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05001209
1210 err = mmc_send_cmd(mmc, &cmd, NULL);
1211
1212 if (err)
1213 return err;
1214
1215 cmd.cmdidx = SD_CMD_APP_SEND_SCR;
1216 cmd.resp_type = MMC_RSP_R1;
1217 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05001218
1219 timeout = 3;
1220
1221retry_scr:
Anton staaff781dd32011-10-03 13:54:59 +00001222 data.dest = (char *)scr;
Andy Fleming272cc702008-10-30 16:41:01 -05001223 data.blocksize = 8;
1224 data.blocks = 1;
1225 data.flags = MMC_DATA_READ;
1226
1227 err = mmc_send_cmd(mmc, &cmd, &data);
1228
1229 if (err) {
1230 if (timeout--)
1231 goto retry_scr;
1232
1233 return err;
1234 }
1235
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001236 mmc->scr[0] = __be32_to_cpu(scr[0]);
1237 mmc->scr[1] = __be32_to_cpu(scr[1]);
Andy Fleming272cc702008-10-30 16:41:01 -05001238
1239 switch ((mmc->scr[0] >> 24) & 0xf) {
Bin Meng53e8e402016-03-17 21:53:13 -07001240 case 0:
1241 mmc->version = SD_VERSION_1_0;
1242 break;
1243 case 1:
1244 mmc->version = SD_VERSION_1_10;
1245 break;
1246 case 2:
1247 mmc->version = SD_VERSION_2;
1248 if ((mmc->scr[0] >> 15) & 0x1)
1249 mmc->version = SD_VERSION_3;
1250 break;
1251 default:
1252 mmc->version = SD_VERSION_1_0;
1253 break;
Andy Fleming272cc702008-10-30 16:41:01 -05001254 }
1255
Alagu Sankarb44c7082010-05-12 15:08:24 +05301256 if (mmc->scr[0] & SD_DATA_4BIT)
1257 mmc->card_caps |= MMC_MODE_4BIT;
1258
Andy Fleming272cc702008-10-30 16:41:01 -05001259 /* Version 1.0 doesn't support switching */
1260 if (mmc->version == SD_VERSION_1_0)
1261 return 0;
1262
1263 timeout = 4;
1264 while (timeout--) {
1265 err = sd_switch(mmc, SD_SWITCH_CHECK, 0, 1,
Anton staaff781dd32011-10-03 13:54:59 +00001266 (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001267
1268 if (err)
1269 return err;
1270
1271 /* The high-speed function is busy. Try again */
Yauhen Kharuzhy4e3d89b2009-05-07 00:43:30 +03001272 if (!(__be32_to_cpu(switch_status[7]) & SD_HIGHSPEED_BUSY))
Andy Fleming272cc702008-10-30 16:41:01 -05001273 break;
1274 }
1275
Andy Fleming272cc702008-10-30 16:41:01 -05001276 /* If high-speed isn't supported, we return */
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001277 if (__be32_to_cpu(switch_status[3]) & SD_HIGHSPEED_SUPPORTED)
1278 mmc->card_caps |= MMC_CAP(SD_HS);
Andy Fleming272cc702008-10-30 16:41:01 -05001279
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001280#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001281 /* Version before 3.0 don't support UHS modes */
1282 if (mmc->version < SD_VERSION_3)
1283 return 0;
1284
1285 sd3_bus_mode = __be32_to_cpu(switch_status[3]) >> 16 & 0x1f;
1286 if (sd3_bus_mode & SD_MODE_UHS_SDR104)
1287 mmc->card_caps |= MMC_CAP(UHS_SDR104);
1288 if (sd3_bus_mode & SD_MODE_UHS_SDR50)
1289 mmc->card_caps |= MMC_CAP(UHS_SDR50);
1290 if (sd3_bus_mode & SD_MODE_UHS_SDR25)
1291 mmc->card_caps |= MMC_CAP(UHS_SDR25);
1292 if (sd3_bus_mode & SD_MODE_UHS_SDR12)
1293 mmc->card_caps |= MMC_CAP(UHS_SDR12);
1294 if (sd3_bus_mode & SD_MODE_UHS_DDR50)
1295 mmc->card_caps |= MMC_CAP(UHS_DDR50);
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001296#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001297
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001298 return 0;
1299}
1300
1301static int sd_set_card_speed(struct mmc *mmc, enum bus_mode mode)
1302{
1303 int err;
1304
1305 ALLOC_CACHE_ALIGN_BUFFER(uint, switch_status, 16);
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001306 int speed;
Macpaul Lin2c3fbf42011-11-28 16:31:09 +00001307
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001308 switch (mode) {
1309 case SD_LEGACY:
1310 case UHS_SDR12:
1311 speed = UHS_SDR12_BUS_SPEED;
1312 break;
1313 case SD_HS:
1314 case UHS_SDR25:
1315 speed = UHS_SDR25_BUS_SPEED;
1316 break;
1317 case UHS_SDR50:
1318 speed = UHS_SDR50_BUS_SPEED;
1319 break;
1320 case UHS_DDR50:
1321 speed = UHS_DDR50_BUS_SPEED;
1322 break;
1323 case UHS_SDR104:
1324 speed = UHS_SDR104_BUS_SPEED;
1325 break;
1326 default:
1327 return -EINVAL;
1328 }
1329
1330 err = sd_switch(mmc, SD_SWITCH_SWITCH, 0, speed, (u8 *)switch_status);
Andy Fleming272cc702008-10-30 16:41:01 -05001331 if (err)
1332 return err;
1333
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001334 if ((__be32_to_cpu(switch_status[4]) >> 24) != speed)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001335 return -ENOTSUPP;
1336
1337 return 0;
1338}
1339
1340int sd_select_bus_width(struct mmc *mmc, int w)
1341{
1342 int err;
1343 struct mmc_cmd cmd;
1344
1345 if ((w != 4) && (w != 1))
1346 return -EINVAL;
1347
1348 cmd.cmdidx = MMC_CMD_APP_CMD;
1349 cmd.resp_type = MMC_RSP_R1;
1350 cmd.cmdarg = mmc->rca << 16;
1351
1352 err = mmc_send_cmd(mmc, &cmd, NULL);
1353 if (err)
1354 return err;
1355
1356 cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH;
1357 cmd.resp_type = MMC_RSP_R1;
1358 if (w == 4)
1359 cmd.cmdarg = 2;
1360 else if (w == 1)
1361 cmd.cmdarg = 0;
1362 err = mmc_send_cmd(mmc, &cmd, NULL);
1363 if (err)
1364 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05001365
1366 return 0;
1367}
1368
Peng Fan3697e592016-09-01 11:13:38 +08001369static int sd_read_ssr(struct mmc *mmc)
1370{
1371 int err, i;
1372 struct mmc_cmd cmd;
1373 ALLOC_CACHE_ALIGN_BUFFER(uint, ssr, 16);
1374 struct mmc_data data;
1375 int timeout = 3;
1376 unsigned int au, eo, et, es;
1377
1378 cmd.cmdidx = MMC_CMD_APP_CMD;
1379 cmd.resp_type = MMC_RSP_R1;
1380 cmd.cmdarg = mmc->rca << 16;
1381
1382 err = mmc_send_cmd(mmc, &cmd, NULL);
1383 if (err)
1384 return err;
1385
1386 cmd.cmdidx = SD_CMD_APP_SD_STATUS;
1387 cmd.resp_type = MMC_RSP_R1;
1388 cmd.cmdarg = 0;
1389
1390retry_ssr:
1391 data.dest = (char *)ssr;
1392 data.blocksize = 64;
1393 data.blocks = 1;
1394 data.flags = MMC_DATA_READ;
1395
1396 err = mmc_send_cmd(mmc, &cmd, &data);
1397 if (err) {
1398 if (timeout--)
1399 goto retry_ssr;
1400
1401 return err;
1402 }
1403
1404 for (i = 0; i < 16; i++)
1405 ssr[i] = be32_to_cpu(ssr[i]);
1406
1407 au = (ssr[2] >> 12) & 0xF;
1408 if ((au <= 9) || (mmc->version == SD_VERSION_3)) {
1409 mmc->ssr.au = sd_au_size[au];
1410 es = (ssr[3] >> 24) & 0xFF;
1411 es |= (ssr[2] & 0xFF) << 8;
1412 et = (ssr[3] >> 18) & 0x3F;
1413 if (es && et) {
1414 eo = (ssr[3] >> 16) & 0x3;
1415 mmc->ssr.erase_timeout = (et * 1000) / es;
1416 mmc->ssr.erase_offset = eo * 1000;
1417 }
1418 } else {
1419 debug("Invalid Allocation Unit Size.\n");
1420 }
1421
1422 return 0;
1423}
1424
Andy Fleming272cc702008-10-30 16:41:01 -05001425/* frequency bases */
1426/* divided by 10 to be nice to platforms without floating point */
Mike Frysinger5f837c22010-10-20 01:15:53 +00001427static const int fbase[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001428 10000,
1429 100000,
1430 1000000,
1431 10000000,
1432};
1433
1434/* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
1435 * to platforms without floating point.
1436 */
Simon Glass61fe0762016-05-14 14:02:57 -06001437static const u8 multipliers[] = {
Andy Fleming272cc702008-10-30 16:41:01 -05001438 0, /* reserved */
1439 10,
1440 12,
1441 13,
1442 15,
1443 20,
1444 25,
1445 30,
1446 35,
1447 40,
1448 45,
1449 50,
1450 55,
1451 60,
1452 70,
1453 80,
1454};
1455
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001456static inline int bus_width(uint cap)
1457{
1458 if (cap == MMC_MODE_8BIT)
1459 return 8;
1460 if (cap == MMC_MODE_4BIT)
1461 return 4;
1462 if (cap == MMC_MODE_1BIT)
1463 return 1;
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001464 pr_warn("invalid bus witdh capability 0x%x\n", cap);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001465 return 0;
1466}
1467
Simon Glasse7881d82017-07-29 11:35:31 -06001468#if !CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001469#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001470static int mmc_execute_tuning(struct mmc *mmc, uint opcode)
1471{
1472 return -ENOTSUPP;
1473}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001474#endif
Kishon Vijay Abraham Iec841202017-09-21 16:30:05 +02001475
Jean-Jacques Hiblot318a7a52017-09-21 16:30:01 +02001476static void mmc_send_init_stream(struct mmc *mmc)
1477{
1478}
1479
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001480static int mmc_set_ios(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05001481{
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001482 int ret = 0;
1483
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001484 if (mmc->cfg->ops->set_ios)
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001485 ret = mmc->cfg->ops->set_ios(mmc);
1486
1487 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05001488}
Simon Glass8ca51e52016-06-12 23:30:22 -06001489#endif
Andy Fleming272cc702008-10-30 16:41:01 -05001490
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001491int mmc_set_clock(struct mmc *mmc, uint clock, bool disable)
Andy Fleming272cc702008-10-30 16:41:01 -05001492{
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001493 if (clock > mmc->cfg->f_max)
1494 clock = mmc->cfg->f_max;
Andy Fleming272cc702008-10-30 16:41:01 -05001495
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02001496 if (clock < mmc->cfg->f_min)
1497 clock = mmc->cfg->f_min;
Andy Fleming272cc702008-10-30 16:41:01 -05001498
1499 mmc->clock = clock;
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001500 mmc->clk_disable = disable;
Andy Fleming272cc702008-10-30 16:41:01 -05001501
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001502 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001503}
1504
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001505static int mmc_set_bus_width(struct mmc *mmc, uint width)
Andy Fleming272cc702008-10-30 16:41:01 -05001506{
1507 mmc->bus_width = width;
1508
Kishon Vijay Abraham I2a4d2122017-09-21 16:29:59 +02001509 return mmc_set_ios(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05001510}
1511
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001512#if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG)
1513/*
1514 * helper function to display the capabilities in a human
1515 * friendly manner. The capabilities include bus width and
1516 * supported modes.
1517 */
1518void mmc_dump_capabilities(const char *text, uint caps)
1519{
1520 enum bus_mode mode;
1521
1522 printf("%s: widths [", text);
1523 if (caps & MMC_MODE_8BIT)
1524 printf("8, ");
1525 if (caps & MMC_MODE_4BIT)
1526 printf("4, ");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001527 if (caps & MMC_MODE_1BIT)
1528 printf("1, ");
1529 printf("\b\b] modes [");
Jean-Jacques Hiblot4c9d2aa2017-09-21 16:29:54 +02001530 for (mode = MMC_LEGACY; mode < MMC_MODES_END; mode++)
1531 if (MMC_CAP(mode) & caps)
1532 printf("%s, ", mmc_mode_name(mode));
1533 printf("\b\b]\n");
1534}
1535#endif
1536
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001537struct mode_width_tuning {
1538 enum bus_mode mode;
1539 uint widths;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001540#ifdef MMC_SUPPORTS_TUNING
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001541 uint tuning;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001542#endif
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001543};
1544
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001545#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001546int mmc_voltage_to_mv(enum mmc_voltage voltage)
1547{
1548 switch (voltage) {
1549 case MMC_SIGNAL_VOLTAGE_000: return 0;
1550 case MMC_SIGNAL_VOLTAGE_330: return 3300;
1551 case MMC_SIGNAL_VOLTAGE_180: return 1800;
1552 case MMC_SIGNAL_VOLTAGE_120: return 1200;
1553 }
1554 return -EINVAL;
1555}
1556
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001557static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1558{
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001559 int err;
1560
1561 if (mmc->signal_voltage == signal_voltage)
1562 return 0;
1563
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001564 mmc->signal_voltage = signal_voltage;
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001565 err = mmc_set_ios(mmc);
1566 if (err)
1567 debug("unable to set voltage (err %d)\n", err);
1568
1569 return err;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001570}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001571#else
1572static inline int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage)
1573{
1574 return 0;
1575}
1576#endif
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02001577
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001578static const struct mode_width_tuning sd_modes_by_pref[] = {
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001579#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
1580#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001581 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001582 .mode = UHS_SDR104,
1583 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1584 .tuning = MMC_CMD_SEND_TUNING_BLOCK
1585 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001586#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001587 {
1588 .mode = UHS_SDR50,
1589 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1590 },
1591 {
1592 .mode = UHS_DDR50,
1593 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1594 },
1595 {
1596 .mode = UHS_SDR25,
1597 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1598 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001599#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001600 {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001601 .mode = SD_HS,
1602 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1603 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001604#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001605 {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001606 .mode = UHS_SDR12,
1607 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1608 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001609#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001610 {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001611 .mode = SD_LEGACY,
1612 .widths = MMC_MODE_4BIT | MMC_MODE_1BIT,
1613 }
1614};
1615
1616#define for_each_sd_mode_by_pref(caps, mwt) \
1617 for (mwt = sd_modes_by_pref;\
1618 mwt < sd_modes_by_pref + ARRAY_SIZE(sd_modes_by_pref);\
1619 mwt++) \
1620 if (caps & MMC_CAP(mwt->mode))
1621
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02001622static int sd_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001623{
1624 int err;
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001625 uint widths[] = {MMC_MODE_4BIT, MMC_MODE_1BIT};
1626 const struct mode_width_tuning *mwt;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001627#if CONFIG_IS_ENABLED(MMC_UHS_SUPPORT)
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001628 bool uhs_en = (mmc->ocr & OCR_S18R) ? true : false;
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001629#else
1630 bool uhs_en = false;
1631#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001632 uint caps;
1633
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001634#ifdef DEBUG
1635 mmc_dump_capabilities("sd card", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001636 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001637#endif
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001638
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001639 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001640 caps = card_caps & mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001641
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001642 if (!uhs_en)
1643 caps &= ~UHS_CAPS;
1644
1645 for_each_sd_mode_by_pref(caps, mwt) {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001646 uint *w;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001647
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001648 for (w = widths; w < widths + ARRAY_SIZE(widths); w++) {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001649 if (*w & caps & mwt->widths) {
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001650 debug("trying mode %s width %d (at %d MHz)\n",
1651 mmc_mode_name(mwt->mode),
1652 bus_width(*w),
1653 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001654
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001655 /* configure the bus width (card + host) */
1656 err = sd_select_bus_width(mmc, bus_width(*w));
1657 if (err)
1658 goto error;
1659 mmc_set_bus_width(mmc, bus_width(*w));
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001660
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001661 /* configure the bus mode (card) */
1662 err = sd_set_card_speed(mmc, mwt->mode);
1663 if (err)
1664 goto error;
1665
1666 /* configure the bus mode (host) */
1667 mmc_select_mode(mmc, mwt->mode);
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001668 mmc_set_clock(mmc, mmc->tran_speed, false);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001669
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001670#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001671 /* execute tuning if needed */
1672 if (mwt->tuning && !mmc_host_is_spi(mmc)) {
1673 err = mmc_execute_tuning(mmc,
1674 mwt->tuning);
1675 if (err) {
1676 debug("tuning failed\n");
1677 goto error;
1678 }
1679 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001680#endif
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02001681
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001682 err = sd_read_ssr(mmc);
1683 if (!err)
1684 return 0;
1685
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001686 pr_warn("bad ssr\n");
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001687
1688error:
1689 /* revert to a safer bus speed */
1690 mmc_select_mode(mmc, SD_LEGACY);
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001691 mmc_set_clock(mmc, mmc->tran_speed, false);
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001692 }
1693 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001694 }
1695
Jean-Jacques Hiblotd0c221f2017-09-21 16:29:57 +02001696 printf("unable to select a mode\n");
1697 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001698}
1699
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001700/*
1701 * read the compare the part of ext csd that is constant.
1702 * This can be used to check that the transfer is working
1703 * as expected.
1704 */
1705static int mmc_read_and_compare_ext_csd(struct mmc *mmc)
1706{
1707 int err;
1708 const u8 *ext_csd = mmc->ext_csd;
1709 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
1710
Jean-Jacques Hiblot1de06b92017-11-30 17:43:58 +01001711 if (mmc->version < MMC_VERSION_4)
1712 return 0;
1713
Jean-Jacques Hiblot7382e692017-09-21 16:29:52 +02001714 err = mmc_send_ext_csd(mmc, test_csd);
1715 if (err)
1716 return err;
1717
1718 /* Only compare read only fields */
1719 if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT]
1720 == test_csd[EXT_CSD_PARTITIONING_SUPPORT] &&
1721 ext_csd[EXT_CSD_HC_WP_GRP_SIZE]
1722 == test_csd[EXT_CSD_HC_WP_GRP_SIZE] &&
1723 ext_csd[EXT_CSD_REV]
1724 == test_csd[EXT_CSD_REV] &&
1725 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1726 == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE] &&
1727 memcmp(&ext_csd[EXT_CSD_SEC_CNT],
1728 &test_csd[EXT_CSD_SEC_CNT], 4) == 0)
1729 return 0;
1730
1731 return -EBADMSG;
1732}
1733
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001734#if CONFIG_IS_ENABLED(MMC_IO_VOLTAGE)
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001735static int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1736 uint32_t allowed_mask)
1737{
1738 u32 card_mask = 0;
1739
1740 switch (mode) {
1741 case MMC_HS_200:
1742 if (mmc->cardtype & EXT_CSD_CARD_TYPE_HS200_1_8V)
1743 card_mask |= MMC_SIGNAL_VOLTAGE_180;
1744 if (mmc->cardtype & EXT_CSD_CARD_TYPE_HS200_1_2V)
1745 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1746 break;
1747 case MMC_DDR_52:
1748 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_8V)
1749 card_mask |= MMC_SIGNAL_VOLTAGE_330 |
1750 MMC_SIGNAL_VOLTAGE_180;
1751 if (mmc->cardtype & EXT_CSD_CARD_TYPE_DDR_1_2V)
1752 card_mask |= MMC_SIGNAL_VOLTAGE_120;
1753 break;
1754 default:
1755 card_mask |= MMC_SIGNAL_VOLTAGE_330;
1756 break;
1757 }
1758
1759 while (card_mask & allowed_mask) {
1760 enum mmc_voltage best_match;
1761
1762 best_match = 1 << (ffs(card_mask & allowed_mask) - 1);
1763 if (!mmc_set_signal_voltage(mmc, best_match))
1764 return 0;
1765
1766 allowed_mask &= ~best_match;
1767 }
1768
1769 return -ENOTSUPP;
1770}
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001771#else
1772static inline int mmc_set_lowest_voltage(struct mmc *mmc, enum bus_mode mode,
1773 uint32_t allowed_mask)
1774{
1775 return 0;
1776}
1777#endif
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001778
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001779static const struct mode_width_tuning mmc_modes_by_pref[] = {
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001780#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001781 {
1782 .mode = MMC_HS_200,
1783 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001784 .tuning = MMC_CMD_SEND_TUNING_BLOCK_HS200
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001785 },
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001786#endif
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001787 {
1788 .mode = MMC_DDR_52,
1789 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT,
1790 },
1791 {
1792 .mode = MMC_HS_52,
1793 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1794 },
1795 {
1796 .mode = MMC_HS,
1797 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1798 },
1799 {
1800 .mode = MMC_LEGACY,
1801 .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT,
1802 }
1803};
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001804
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001805#define for_each_mmc_mode_by_pref(caps, mwt) \
1806 for (mwt = mmc_modes_by_pref;\
1807 mwt < mmc_modes_by_pref + ARRAY_SIZE(mmc_modes_by_pref);\
1808 mwt++) \
1809 if (caps & MMC_CAP(mwt->mode))
1810
1811static const struct ext_csd_bus_width {
1812 uint cap;
1813 bool is_ddr;
1814 uint ext_csd_bits;
1815} ext_csd_bus_width[] = {
1816 {MMC_MODE_8BIT, true, EXT_CSD_DDR_BUS_WIDTH_8},
1817 {MMC_MODE_4BIT, true, EXT_CSD_DDR_BUS_WIDTH_4},
1818 {MMC_MODE_8BIT, false, EXT_CSD_BUS_WIDTH_8},
1819 {MMC_MODE_4BIT, false, EXT_CSD_BUS_WIDTH_4},
1820 {MMC_MODE_1BIT, false, EXT_CSD_BUS_WIDTH_1},
1821};
1822
1823#define for_each_supported_width(caps, ddr, ecbv) \
1824 for (ecbv = ext_csd_bus_width;\
1825 ecbv < ext_csd_bus_width + ARRAY_SIZE(ext_csd_bus_width);\
1826 ecbv++) \
1827 if ((ddr == ecbv->is_ddr) && (caps & ecbv->cap))
1828
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02001829static int mmc_select_mode_and_width(struct mmc *mmc, uint card_caps)
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001830{
1831 int err;
1832 const struct mode_width_tuning *mwt;
1833 const struct ext_csd_bus_width *ecbw;
1834
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001835#ifdef DEBUG
1836 mmc_dump_capabilities("mmc", card_caps);
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001837 mmc_dump_capabilities("host", mmc->host_caps);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +01001838#endif
1839
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001840 /* Restrict card's capabilities by what the host can do */
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01001841 card_caps &= mmc->host_caps;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001842
1843 /* Only version 4 of MMC supports wider bus widths */
1844 if (mmc->version < MMC_VERSION_4)
1845 return 0;
1846
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02001847 if (!mmc->ext_csd) {
1848 debug("No ext_csd found!\n"); /* this should enver happen */
1849 return -ENOTSUPP;
1850 }
1851
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02001852 mmc_set_clock(mmc, mmc->legacy_speed, false);
1853
1854 for_each_mmc_mode_by_pref(card_caps, mwt) {
1855 for_each_supported_width(card_caps & mwt->widths,
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001856 mmc_is_mode_ddr(mwt->mode), ecbw) {
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001857 enum mmc_voltage old_voltage;
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001858 debug("trying mode %s width %d (at %d MHz)\n",
1859 mmc_mode_name(mwt->mode),
1860 bus_width(ecbw->cap),
1861 mmc_mode2freq(mmc, mwt->mode) / 1000000);
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001862 old_voltage = mmc->signal_voltage;
1863 err = mmc_set_lowest_voltage(mmc, mwt->mode,
1864 MMC_ALL_SIGNAL_VOLTAGE);
1865 if (err)
1866 continue;
1867
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001868 /* configure the bus width (card + host) */
1869 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1870 EXT_CSD_BUS_WIDTH,
1871 ecbw->ext_csd_bits & ~EXT_CSD_DDR_FLAG);
1872 if (err)
1873 goto error;
1874 mmc_set_bus_width(mmc, bus_width(ecbw->cap));
1875
1876 /* configure the bus speed (card) */
1877 err = mmc_set_card_speed(mmc, mwt->mode);
1878 if (err)
1879 goto error;
1880
1881 /*
1882 * configure the bus width AND the ddr mode (card)
1883 * The host side will be taken care of in the next step
1884 */
1885 if (ecbw->ext_csd_bits & EXT_CSD_DDR_FLAG) {
1886 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1887 EXT_CSD_BUS_WIDTH,
1888 ecbw->ext_csd_bits);
1889 if (err)
1890 goto error;
1891 }
1892
1893 /* configure the bus mode (host) */
1894 mmc_select_mode(mmc, mwt->mode);
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02001895 mmc_set_clock(mmc, mmc->tran_speed, false);
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001896#ifdef MMC_SUPPORTS_TUNING
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001897
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001898 /* execute tuning if needed */
1899 if (mwt->tuning) {
1900 err = mmc_execute_tuning(mmc, mwt->tuning);
1901 if (err) {
1902 debug("tuning failed\n");
1903 goto error;
1904 }
1905 }
Jean-Jacques Hiblotf99c2ef2017-11-30 17:44:01 +01001906#endif
Kishon Vijay Abraham I634d4842017-09-21 16:30:06 +02001907
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001908 /* do a transfer to check the configuration */
1909 err = mmc_read_and_compare_ext_csd(mmc);
1910 if (!err)
1911 return 0;
1912error:
Jean-Jacques Hiblotbc1e3272017-09-21 16:30:11 +02001913 mmc_set_signal_voltage(mmc, old_voltage);
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001914 /* if an error occured, revert to a safer bus mode */
1915 mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1916 EXT_CSD_BUS_WIDTH, EXT_CSD_BUS_WIDTH_1);
1917 mmc_select_mode(mmc, MMC_LEGACY);
1918 mmc_set_bus_width(mmc, 1);
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001919 }
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001920 }
1921
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01001922 pr_err("unable to select a mode\n");
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001923
Jean-Jacques Hiblot3862b852017-09-21 16:29:58 +02001924 return -ENOTSUPP;
Jean-Jacques Hiblot8ac8a262017-09-21 16:29:49 +02001925}
1926
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02001927static int mmc_startup_v4(struct mmc *mmc)
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02001928{
1929 int err, i;
1930 u64 capacity;
1931 bool has_parts = false;
1932 bool part_completed;
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01001933 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02001934
1935 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4))
1936 return 0;
1937
1938 /* check ext_csd version and capacity */
1939 err = mmc_send_ext_csd(mmc, ext_csd);
1940 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01001941 goto error;
1942
1943 /* store the ext csd for future reference */
1944 if (!mmc->ext_csd)
1945 mmc->ext_csd = malloc(MMC_MAX_BLOCK_LEN);
1946 if (!mmc->ext_csd)
1947 return -ENOMEM;
1948 memcpy(mmc->ext_csd, ext_csd, MMC_MAX_BLOCK_LEN);
1949
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02001950 if (ext_csd[EXT_CSD_REV] >= 2) {
1951 /*
1952 * According to the JEDEC Standard, the value of
1953 * ext_csd's capacity is valid if the value is more
1954 * than 2GB
1955 */
1956 capacity = ext_csd[EXT_CSD_SEC_CNT] << 0
1957 | ext_csd[EXT_CSD_SEC_CNT + 1] << 8
1958 | ext_csd[EXT_CSD_SEC_CNT + 2] << 16
1959 | ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
1960 capacity *= MMC_MAX_BLOCK_LEN;
1961 if ((capacity >> 20) > 2 * 1024)
1962 mmc->capacity_user = capacity;
1963 }
1964
1965 switch (ext_csd[EXT_CSD_REV]) {
1966 case 1:
1967 mmc->version = MMC_VERSION_4_1;
1968 break;
1969 case 2:
1970 mmc->version = MMC_VERSION_4_2;
1971 break;
1972 case 3:
1973 mmc->version = MMC_VERSION_4_3;
1974 break;
1975 case 5:
1976 mmc->version = MMC_VERSION_4_41;
1977 break;
1978 case 6:
1979 mmc->version = MMC_VERSION_4_5;
1980 break;
1981 case 7:
1982 mmc->version = MMC_VERSION_5_0;
1983 break;
1984 case 8:
1985 mmc->version = MMC_VERSION_5_1;
1986 break;
1987 }
1988
1989 /* The partition data may be non-zero but it is only
1990 * effective if PARTITION_SETTING_COMPLETED is set in
1991 * EXT_CSD, so ignore any data if this bit is not set,
1992 * except for enabling the high-capacity group size
1993 * definition (see below).
1994 */
1995 part_completed = !!(ext_csd[EXT_CSD_PARTITION_SETTING] &
1996 EXT_CSD_PARTITION_SETTING_COMPLETED);
1997
1998 /* store the partition info of emmc */
1999 mmc->part_support = ext_csd[EXT_CSD_PARTITIONING_SUPPORT];
2000 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) ||
2001 ext_csd[EXT_CSD_BOOT_MULT])
2002 mmc->part_config = ext_csd[EXT_CSD_PART_CONF];
2003 if (part_completed &&
2004 (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & ENHNCD_SUPPORT))
2005 mmc->part_attr = ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE];
2006
2007 mmc->capacity_boot = ext_csd[EXT_CSD_BOOT_MULT] << 17;
2008
2009 mmc->capacity_rpmb = ext_csd[EXT_CSD_RPMB_MULT] << 17;
2010
2011 for (i = 0; i < 4; i++) {
2012 int idx = EXT_CSD_GP_SIZE_MULT + i * 3;
2013 uint mult = (ext_csd[idx + 2] << 16) +
2014 (ext_csd[idx + 1] << 8) + ext_csd[idx];
2015 if (mult)
2016 has_parts = true;
2017 if (!part_completed)
2018 continue;
2019 mmc->capacity_gp[i] = mult;
2020 mmc->capacity_gp[i] *=
2021 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2022 mmc->capacity_gp[i] *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2023 mmc->capacity_gp[i] <<= 19;
2024 }
2025
2026 if (part_completed) {
2027 mmc->enh_user_size =
2028 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 2] << 16) +
2029 (ext_csd[EXT_CSD_ENH_SIZE_MULT + 1] << 8) +
2030 ext_csd[EXT_CSD_ENH_SIZE_MULT];
2031 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
2032 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2033 mmc->enh_user_size <<= 19;
2034 mmc->enh_user_start =
2035 (ext_csd[EXT_CSD_ENH_START_ADDR + 3] << 24) +
2036 (ext_csd[EXT_CSD_ENH_START_ADDR + 2] << 16) +
2037 (ext_csd[EXT_CSD_ENH_START_ADDR + 1] << 8) +
2038 ext_csd[EXT_CSD_ENH_START_ADDR];
2039 if (mmc->high_capacity)
2040 mmc->enh_user_start <<= 9;
2041 }
2042
2043 /*
2044 * Host needs to enable ERASE_GRP_DEF bit if device is
2045 * partitioned. This bit will be lost every time after a reset
2046 * or power off. This will affect erase size.
2047 */
2048 if (part_completed)
2049 has_parts = true;
2050 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) &&
2051 (ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE] & PART_ENH_ATTRIB))
2052 has_parts = true;
2053 if (has_parts) {
2054 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
2055 EXT_CSD_ERASE_GROUP_DEF, 1);
2056
2057 if (err)
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002058 goto error;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002059
2060 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
2061 }
2062
2063 if (ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01) {
2064 /* Read out group size from ext_csd */
2065 mmc->erase_grp_size =
2066 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
2067 /*
2068 * if high capacity and partition setting completed
2069 * SEC_COUNT is valid even if it is smaller than 2 GiB
2070 * JEDEC Standard JESD84-B45, 6.2.4
2071 */
2072 if (mmc->high_capacity && part_completed) {
2073 capacity = (ext_csd[EXT_CSD_SEC_CNT]) |
2074 (ext_csd[EXT_CSD_SEC_CNT + 1] << 8) |
2075 (ext_csd[EXT_CSD_SEC_CNT + 2] << 16) |
2076 (ext_csd[EXT_CSD_SEC_CNT + 3] << 24);
2077 capacity *= MMC_MAX_BLOCK_LEN;
2078 mmc->capacity_user = capacity;
2079 }
2080 } else {
2081 /* Calculate the group size from the csd value. */
2082 int erase_gsz, erase_gmul;
2083
2084 erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10;
2085 erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5;
2086 mmc->erase_grp_size = (erase_gsz + 1)
2087 * (erase_gmul + 1);
2088 }
2089
2090 mmc->hc_wp_grp_size = 1024
2091 * ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
2092 * ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
2093
2094 mmc->wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
2095
2096 return 0;
Jean-Jacques Hiblotf7d5dff2017-11-30 17:43:59 +01002097error:
2098 if (mmc->ext_csd) {
2099 free(mmc->ext_csd);
2100 mmc->ext_csd = NULL;
2101 }
2102 return err;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002103}
2104
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002105static int mmc_startup(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002106{
Stephen Warrenf866a462013-06-11 15:14:01 -06002107 int err, i;
Andy Fleming272cc702008-10-30 16:41:01 -05002108 uint mult, freq;
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002109 u64 cmult, csize;
Andy Fleming272cc702008-10-30 16:41:01 -05002110 struct mmc_cmd cmd;
Simon Glassc40fdca2016-05-01 13:52:35 -06002111 struct blk_desc *bdesc;
Andy Fleming272cc702008-10-30 16:41:01 -05002112
Thomas Choud52ebf12010-12-24 13:12:21 +00002113#ifdef CONFIG_MMC_SPI_CRC_ON
2114 if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */
2115 cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF;
2116 cmd.resp_type = MMC_RSP_R1;
2117 cmd.cmdarg = 1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002118 err = mmc_send_cmd(mmc, &cmd, NULL);
Thomas Choud52ebf12010-12-24 13:12:21 +00002119 if (err)
2120 return err;
2121 }
2122#endif
2123
Andy Fleming272cc702008-10-30 16:41:01 -05002124 /* Put the Card in Identify Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002125 cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID :
2126 MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */
Andy Fleming272cc702008-10-30 16:41:01 -05002127 cmd.resp_type = MMC_RSP_R2;
2128 cmd.cmdarg = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002129
2130 err = mmc_send_cmd(mmc, &cmd, NULL);
2131
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002132#ifdef CONFIG_MMC_QUIRKS
2133 if (err && (mmc->quirks & MMC_QUIRK_RETRY_SEND_CID)) {
2134 int retries = 4;
2135 /*
2136 * It has been seen that SEND_CID may fail on the first
2137 * attempt, let's try a few more time
2138 */
2139 do {
2140 err = mmc_send_cmd(mmc, &cmd, NULL);
2141 if (!err)
2142 break;
2143 } while (retries--);
2144 }
2145#endif
2146
Andy Fleming272cc702008-10-30 16:41:01 -05002147 if (err)
2148 return err;
2149
2150 memcpy(mmc->cid, cmd.response, 16);
2151
2152 /*
2153 * For MMC cards, set the Relative Address.
2154 * For SD cards, get the Relatvie Address.
2155 * This also puts the cards into Standby State
2156 */
Thomas Choud52ebf12010-12-24 13:12:21 +00002157 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2158 cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR;
2159 cmd.cmdarg = mmc->rca << 16;
2160 cmd.resp_type = MMC_RSP_R6;
Andy Fleming272cc702008-10-30 16:41:01 -05002161
Thomas Choud52ebf12010-12-24 13:12:21 +00002162 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002163
Thomas Choud52ebf12010-12-24 13:12:21 +00002164 if (err)
2165 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002166
Thomas Choud52ebf12010-12-24 13:12:21 +00002167 if (IS_SD(mmc))
2168 mmc->rca = (cmd.response[0] >> 16) & 0xffff;
2169 }
Andy Fleming272cc702008-10-30 16:41:01 -05002170
2171 /* Get the Card-Specific Data */
2172 cmd.cmdidx = MMC_CMD_SEND_CSD;
2173 cmd.resp_type = MMC_RSP_R2;
2174 cmd.cmdarg = mmc->rca << 16;
Andy Fleming272cc702008-10-30 16:41:01 -05002175
2176 err = mmc_send_cmd(mmc, &cmd, NULL);
2177
2178 if (err)
2179 return err;
2180
Rabin Vincent998be3d2009-04-05 13:30:56 +05302181 mmc->csd[0] = cmd.response[0];
2182 mmc->csd[1] = cmd.response[1];
2183 mmc->csd[2] = cmd.response[2];
2184 mmc->csd[3] = cmd.response[3];
Andy Fleming272cc702008-10-30 16:41:01 -05002185
2186 if (mmc->version == MMC_VERSION_UNKNOWN) {
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302187 int version = (cmd.response[0] >> 26) & 0xf;
Andy Fleming272cc702008-10-30 16:41:01 -05002188
2189 switch (version) {
Bin Meng53e8e402016-03-17 21:53:13 -07002190 case 0:
2191 mmc->version = MMC_VERSION_1_2;
2192 break;
2193 case 1:
2194 mmc->version = MMC_VERSION_1_4;
2195 break;
2196 case 2:
2197 mmc->version = MMC_VERSION_2_2;
2198 break;
2199 case 3:
2200 mmc->version = MMC_VERSION_3;
2201 break;
2202 case 4:
2203 mmc->version = MMC_VERSION_4;
2204 break;
2205 default:
2206 mmc->version = MMC_VERSION_1_2;
2207 break;
Andy Fleming272cc702008-10-30 16:41:01 -05002208 }
2209 }
2210
2211 /* divide frequency by 10, since the mults are 10x bigger */
Rabin Vincent0b453ff2009-04-05 13:30:55 +05302212 freq = fbase[(cmd.response[0] & 0x7)];
2213 mult = multipliers[((cmd.response[0] >> 3) & 0xf)];
Andy Fleming272cc702008-10-30 16:41:01 -05002214
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002215 mmc->legacy_speed = freq * mult;
Jean-Jacques Hiblot35f9e192017-09-21 16:29:53 +02002216 mmc_select_mode(mmc, MMC_LEGACY);
Andy Fleming272cc702008-10-30 16:41:01 -05002217
Markus Niebelab711882013-12-16 13:40:46 +01002218 mmc->dsr_imp = ((cmd.response[1] >> 12) & 0x1);
Rabin Vincent998be3d2009-04-05 13:30:56 +05302219 mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf);
Andy Fleming272cc702008-10-30 16:41:01 -05002220
2221 if (IS_SD(mmc))
2222 mmc->write_bl_len = mmc->read_bl_len;
2223 else
Rabin Vincent998be3d2009-04-05 13:30:56 +05302224 mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf);
Andy Fleming272cc702008-10-30 16:41:01 -05002225
2226 if (mmc->high_capacity) {
2227 csize = (mmc->csd[1] & 0x3f) << 16
2228 | (mmc->csd[2] & 0xffff0000) >> 16;
2229 cmult = 8;
2230 } else {
2231 csize = (mmc->csd[1] & 0x3ff) << 2
2232 | (mmc->csd[2] & 0xc0000000) >> 30;
2233 cmult = (mmc->csd[2] & 0x00038000) >> 15;
2234 }
2235
Stephen Warrenf866a462013-06-11 15:14:01 -06002236 mmc->capacity_user = (csize + 1) << (cmult + 2);
2237 mmc->capacity_user *= mmc->read_bl_len;
2238 mmc->capacity_boot = 0;
2239 mmc->capacity_rpmb = 0;
2240 for (i = 0; i < 4; i++)
2241 mmc->capacity_gp[i] = 0;
Andy Fleming272cc702008-10-30 16:41:01 -05002242
Simon Glass8bfa1952013-04-03 08:54:30 +00002243 if (mmc->read_bl_len > MMC_MAX_BLOCK_LEN)
2244 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -05002245
Simon Glass8bfa1952013-04-03 08:54:30 +00002246 if (mmc->write_bl_len > MMC_MAX_BLOCK_LEN)
2247 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
Andy Fleming272cc702008-10-30 16:41:01 -05002248
Markus Niebelab711882013-12-16 13:40:46 +01002249 if ((mmc->dsr_imp) && (0xffffffff != mmc->dsr)) {
2250 cmd.cmdidx = MMC_CMD_SET_DSR;
2251 cmd.cmdarg = (mmc->dsr & 0xffff) << 16;
2252 cmd.resp_type = MMC_RSP_NONE;
2253 if (mmc_send_cmd(mmc, &cmd, NULL))
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002254 pr_warn("MMC: SET_DSR failed\n");
Markus Niebelab711882013-12-16 13:40:46 +01002255 }
2256
Andy Fleming272cc702008-10-30 16:41:01 -05002257 /* Select the card, and put it into Transfer Mode */
Thomas Choud52ebf12010-12-24 13:12:21 +00002258 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
2259 cmd.cmdidx = MMC_CMD_SELECT_CARD;
Ajay Bhargavfe8f7062011-10-05 03:13:23 +00002260 cmd.resp_type = MMC_RSP_R1;
Thomas Choud52ebf12010-12-24 13:12:21 +00002261 cmd.cmdarg = mmc->rca << 16;
Thomas Choud52ebf12010-12-24 13:12:21 +00002262 err = mmc_send_cmd(mmc, &cmd, NULL);
Andy Fleming272cc702008-10-30 16:41:01 -05002263
Thomas Choud52ebf12010-12-24 13:12:21 +00002264 if (err)
2265 return err;
2266 }
Andy Fleming272cc702008-10-30 16:41:01 -05002267
Lei Wene6f99a52011-06-22 17:03:31 +00002268 /*
2269 * For SD, its erase group is always one sector
2270 */
2271 mmc->erase_grp_size = 1;
Lei Wenbc897b12011-05-02 16:26:26 +00002272 mmc->part_config = MMCPART_NOAVAILABLE;
Lei Wenbc897b12011-05-02 16:26:26 +00002273
Jean-Jacques Hiblotdfda9d82017-09-21 16:29:51 +02002274 err = mmc_startup_v4(mmc);
Jean-Jacques Hiblotc744b6f2017-09-21 16:29:50 +02002275 if (err)
2276 return err;
Sukumar Ghoraid23e2c02010-09-20 18:29:29 +05302277
Simon Glassc40fdca2016-05-01 13:52:35 -06002278 err = mmc_set_capacity(mmc, mmc_get_blk_desc(mmc)->hwpart);
Stephen Warrenf866a462013-06-11 15:14:01 -06002279 if (err)
2280 return err;
2281
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002282 if (IS_SD(mmc)) {
2283 err = sd_get_capabilities(mmc);
2284 if (err)
2285 return err;
2286 err = sd_select_mode_and_width(mmc, mmc->card_caps);
2287 } else {
2288 err = mmc_get_capabilities(mmc);
2289 if (err)
2290 return err;
2291 mmc_select_mode_and_width(mmc, mmc->card_caps);
2292 }
Andy Fleming272cc702008-10-30 16:41:01 -05002293
2294 if (err)
2295 return err;
2296
Jean-Jacques Hiblot01298da2017-09-21 16:30:09 +02002297 mmc->best_mode = mmc->selected_mode;
Jaehoon Chungad5fd922012-03-26 21:16:03 +00002298
Andrew Gabbasov5af8f452014-12-01 06:59:11 -06002299 /* Fix the block length for DDR mode */
2300 if (mmc->ddr_mode) {
2301 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
2302 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
2303 }
2304
Andy Fleming272cc702008-10-30 16:41:01 -05002305 /* fill in device description */
Simon Glassc40fdca2016-05-01 13:52:35 -06002306 bdesc = mmc_get_blk_desc(mmc);
2307 bdesc->lun = 0;
2308 bdesc->hwpart = 0;
2309 bdesc->type = 0;
2310 bdesc->blksz = mmc->read_bl_len;
2311 bdesc->log2blksz = LOG2(bdesc->blksz);
2312 bdesc->lba = lldiv(mmc->capacity, mmc->read_bl_len);
Sjoerd Simonsfc011f62015-12-04 23:27:40 +01002313#if !defined(CONFIG_SPL_BUILD) || \
2314 (defined(CONFIG_SPL_LIBCOMMON_SUPPORT) && \
2315 !defined(CONFIG_USE_TINY_PRINTF))
Simon Glassc40fdca2016-05-01 13:52:35 -06002316 sprintf(bdesc->vendor, "Man %06x Snr %04x%04x",
Taylor Huttbabce5f2012-10-20 17:15:59 +00002317 mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff),
2318 (mmc->cid[3] >> 16) & 0xffff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002319 sprintf(bdesc->product, "%c%c%c%c%c%c", mmc->cid[0] & 0xff,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002320 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
2321 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff,
2322 (mmc->cid[2] >> 24) & 0xff);
Simon Glassc40fdca2016-05-01 13:52:35 -06002323 sprintf(bdesc->revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf,
Taylor Huttbabce5f2012-10-20 17:15:59 +00002324 (mmc->cid[2] >> 16) & 0xf);
Paul Burton56196822013-09-04 16:12:25 +01002325#else
Simon Glassc40fdca2016-05-01 13:52:35 -06002326 bdesc->vendor[0] = 0;
2327 bdesc->product[0] = 0;
2328 bdesc->revision[0] = 0;
Paul Burton56196822013-09-04 16:12:25 +01002329#endif
Mikhail Kshevetskiy122efd42012-07-09 08:53:38 +00002330#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT)
Simon Glassc40fdca2016-05-01 13:52:35 -06002331 part_init(bdesc);
Mikhail Kshevetskiy122efd42012-07-09 08:53:38 +00002332#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002333
2334 return 0;
2335}
2336
Kim Phillipsfdbb8732012-10-29 13:34:43 +00002337static int mmc_send_if_cond(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002338{
2339 struct mmc_cmd cmd;
2340 int err;
2341
2342 cmd.cmdidx = SD_CMD_SEND_IF_COND;
2343 /* We set the bit if the host supports voltages between 2.7 and 3.6 V */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002344 cmd.cmdarg = ((mmc->cfg->voltages & 0xff8000) != 0) << 8 | 0xaa;
Andy Fleming272cc702008-10-30 16:41:01 -05002345 cmd.resp_type = MMC_RSP_R7;
Andy Fleming272cc702008-10-30 16:41:01 -05002346
2347 err = mmc_send_cmd(mmc, &cmd, NULL);
2348
2349 if (err)
2350 return err;
2351
Rabin Vincent998be3d2009-04-05 13:30:56 +05302352 if ((cmd.response[0] & 0xff) != 0xaa)
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002353 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002354 else
2355 mmc->version = SD_VERSION_2;
2356
2357 return 0;
2358}
2359
Simon Glassc4d660d2017-07-04 13:31:19 -06002360#if !CONFIG_IS_ENABLED(DM_MMC)
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002361/* board-specific MMC power initializations. */
2362__weak void board_mmc_power_init(void)
2363{
2364}
Simon Glass05cbeb72017-04-22 19:10:56 -06002365#endif
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002366
Peng Fan2051aef2016-10-11 15:08:43 +08002367static int mmc_power_init(struct mmc *mmc)
2368{
Simon Glassc4d660d2017-07-04 13:31:19 -06002369#if CONFIG_IS_ENABLED(DM_MMC)
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002370#if CONFIG_IS_ENABLED(DM_REGULATOR)
Peng Fan2051aef2016-10-11 15:08:43 +08002371 int ret;
2372
2373 ret = device_get_supply_regulator(mmc->dev, "vmmc-supply",
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002374 &mmc->vmmc_supply);
2375 if (ret)
Jaehoon Chung288db7c2016-10-24 15:22:22 +09002376 debug("%s: No vmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002377
Jean-Jacques Hiblot06ec0452017-09-21 16:29:48 +02002378 ret = device_get_supply_regulator(mmc->dev, "vqmmc-supply",
2379 &mmc->vqmmc_supply);
2380 if (ret)
2381 debug("%s: No vqmmc supply\n", mmc->dev->name);
Peng Fan2051aef2016-10-11 15:08:43 +08002382#endif
Simon Glass05cbeb72017-04-22 19:10:56 -06002383#else /* !CONFIG_DM_MMC */
2384 /*
2385 * Driver model should use a regulator, as above, rather than calling
2386 * out to board code.
2387 */
2388 board_mmc_power_init();
2389#endif
Peng Fan2051aef2016-10-11 15:08:43 +08002390 return 0;
2391}
2392
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002393/*
2394 * put the host in the initial state:
2395 * - turn on Vdd (card power supply)
2396 * - configure the bus width and clock to minimal values
2397 */
2398static void mmc_set_initial_state(struct mmc *mmc)
2399{
2400 int err;
2401
2402 /* First try to set 3.3V. If it fails set to 1.8V */
2403 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_330);
2404 if (err != 0)
2405 err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_180);
2406 if (err != 0)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002407 pr_warn("mmc: failed to set signal voltage\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002408
2409 mmc_select_mode(mmc, MMC_LEGACY);
2410 mmc_set_bus_width(mmc, 1);
Kishon Vijay Abraham I35f67822017-09-21 16:30:03 +02002411 mmc_set_clock(mmc, 0, false);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002412}
2413
2414static int mmc_power_on(struct mmc *mmc)
2415{
2416#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2417 if (mmc->vmmc_supply) {
2418 int ret = regulator_set_enable(mmc->vmmc_supply, true);
2419
2420 if (ret) {
2421 puts("Error enabling VMMC supply\n");
2422 return ret;
2423 }
2424 }
2425#endif
2426 return 0;
2427}
2428
2429static int mmc_power_off(struct mmc *mmc)
2430{
Kishon Vijay Abraham I2e7410d2017-09-21 16:30:04 +02002431 mmc_set_clock(mmc, 1, true);
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002432#if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR)
2433 if (mmc->vmmc_supply) {
2434 int ret = regulator_set_enable(mmc->vmmc_supply, false);
2435
2436 if (ret) {
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002437 debug("Error disabling VMMC supply\n");
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002438 return ret;
2439 }
2440 }
2441#endif
2442 return 0;
2443}
2444
2445static int mmc_power_cycle(struct mmc *mmc)
2446{
2447 int ret;
2448
2449 ret = mmc_power_off(mmc);
2450 if (ret)
2451 return ret;
2452 /*
2453 * SD spec recommends at least 1ms of delay. Let's wait for 2ms
2454 * to be on the safer side.
2455 */
2456 udelay(2000);
2457 return mmc_power_on(mmc);
2458}
2459
Che-Liang Chioue9550442012-11-28 15:21:13 +00002460int mmc_start_init(struct mmc *mmc)
Andy Fleming272cc702008-10-30 16:41:01 -05002461{
Simon Glass8ca51e52016-06-12 23:30:22 -06002462 bool no_card;
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002463 bool uhs_en = supports_uhs(mmc->cfg->host_caps);
Macpaul Linafd59322011-11-14 23:35:39 +00002464 int err;
Andy Fleming272cc702008-10-30 16:41:01 -05002465
Jean-Jacques Hiblot1da8eb52017-11-30 17:43:57 +01002466 /*
2467 * all hosts are capable of 1 bit bus-width and able to use the legacy
2468 * timings.
2469 */
2470 mmc->host_caps = mmc->cfg->host_caps | MMC_CAP(SD_LEGACY) |
2471 MMC_CAP(MMC_LEGACY) | MMC_MODE_1BIT;
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002472
Pantelis Antoniouab769f22014-02-26 19:28:45 +02002473 /* we pretend there's no card when init is NULL */
Simon Glass8ca51e52016-06-12 23:30:22 -06002474 no_card = mmc_getcd(mmc) == 0;
Simon Glasse7881d82017-07-29 11:35:31 -06002475#if !CONFIG_IS_ENABLED(DM_MMC)
Simon Glass8ca51e52016-06-12 23:30:22 -06002476 no_card = no_card || (mmc->cfg->ops->init == NULL);
2477#endif
2478 if (no_card) {
Thierry Reding48972d92012-01-02 01:15:37 +00002479 mmc->has_init = 0;
Paul Burton56196822013-09-04 16:12:25 +01002480#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Thierry Reding48972d92012-01-02 01:15:37 +00002481 printf("MMC: no card present\n");
Paul Burton56196822013-09-04 16:12:25 +01002482#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002483 return -ENOMEDIUM;
Thierry Reding48972d92012-01-02 01:15:37 +00002484 }
2485
Lei Wenbc897b12011-05-02 16:26:26 +00002486 if (mmc->has_init)
2487 return 0;
2488
Yangbo Lu5a8dbdc2015-04-22 13:57:00 +08002489#ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
2490 mmc_adapter_card_type_ident();
2491#endif
Peng Fan2051aef2016-10-11 15:08:43 +08002492 err = mmc_power_init(mmc);
2493 if (err)
2494 return err;
Paul Kocialkowski95de9ab2014-11-08 20:55:45 +01002495
Kishon Vijay Abraham I83dc4222017-09-21 16:30:10 +02002496#ifdef CONFIG_MMC_QUIRKS
2497 mmc->quirks = MMC_QUIRK_RETRY_SET_BLOCKLEN |
2498 MMC_QUIRK_RETRY_SEND_CID;
2499#endif
2500
Jean-Jacques Hiblot04a2ea22017-09-21 16:30:08 +02002501 err = mmc_power_cycle(mmc);
2502 if (err) {
2503 /*
2504 * if power cycling is not supported, we should not try
2505 * to use the UHS modes, because we wouldn't be able to
2506 * recover from an error during the UHS initialization.
2507 */
2508 debug("Unable to do a full power cycle. Disabling the UHS modes for safety\n");
2509 uhs_en = false;
2510 mmc->host_caps &= ~UHS_CAPS;
2511 err = mmc_power_on(mmc);
2512 }
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002513 if (err)
2514 return err;
2515
Simon Glasse7881d82017-07-29 11:35:31 -06002516#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass8ca51e52016-06-12 23:30:22 -06002517 /* The device has already been probed ready for use */
2518#else
Pantelis Antoniouab769f22014-02-26 19:28:45 +02002519 /* made sure it's not NULL earlier */
Pantelis Antoniou93bfd612014-03-11 19:34:20 +02002520 err = mmc->cfg->ops->init(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002521 if (err)
2522 return err;
Simon Glass8ca51e52016-06-12 23:30:22 -06002523#endif
Andrew Gabbasov786e8f82014-12-01 06:59:09 -06002524 mmc->ddr_mode = 0;
Kishon Vijay Abraham Iaff5d3c2017-09-21 16:30:00 +02002525
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002526retry:
Kishon Vijay Abraham Ifb7c3be2017-09-21 16:30:02 +02002527 mmc_set_initial_state(mmc);
Jean-Jacques Hiblot318a7a52017-09-21 16:30:01 +02002528 mmc_send_init_stream(mmc);
2529
Andy Fleming272cc702008-10-30 16:41:01 -05002530 /* Reset the Card */
2531 err = mmc_go_idle(mmc);
2532
2533 if (err)
2534 return err;
2535
Lei Wenbc897b12011-05-02 16:26:26 +00002536 /* The internal partition reset to user partition(0) at every CMD0*/
Simon Glassc40fdca2016-05-01 13:52:35 -06002537 mmc_get_blk_desc(mmc)->hwpart = 0;
Lei Wenbc897b12011-05-02 16:26:26 +00002538
Andy Fleming272cc702008-10-30 16:41:01 -05002539 /* Test for SD version 2 */
Macpaul Linafd59322011-11-14 23:35:39 +00002540 err = mmc_send_if_cond(mmc);
Andy Fleming272cc702008-10-30 16:41:01 -05002541
Andy Fleming272cc702008-10-30 16:41:01 -05002542 /* Now try to get the SD card's operating condition */
Jean-Jacques Hiblotc10b85d2017-09-21 16:30:07 +02002543 err = sd_send_op_cond(mmc, uhs_en);
2544 if (err && uhs_en) {
2545 uhs_en = false;
2546 mmc_power_cycle(mmc);
2547 goto retry;
2548 }
Andy Fleming272cc702008-10-30 16:41:01 -05002549
2550 /* If the command timed out, we check for an MMC card */
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002551 if (err == -ETIMEDOUT) {
Andy Fleming272cc702008-10-30 16:41:01 -05002552 err = mmc_send_op_cond(mmc);
2553
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002554 if (err) {
Paul Burton56196822013-09-04 16:12:25 +01002555#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002556 pr_err("Card did not respond to voltage select!\n");
Paul Burton56196822013-09-04 16:12:25 +01002557#endif
Jaehoon Chung915ffa52016-07-19 16:33:36 +09002558 return -EOPNOTSUPP;
Andy Fleming272cc702008-10-30 16:41:01 -05002559 }
2560 }
2561
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002562 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002563 mmc->init_in_progress = 1;
2564
2565 return err;
2566}
2567
2568static int mmc_complete_init(struct mmc *mmc)
2569{
2570 int err = 0;
2571
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002572 mmc->init_in_progress = 0;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002573 if (mmc->op_cond_pending)
2574 err = mmc_complete_op_cond(mmc);
2575
2576 if (!err)
2577 err = mmc_startup(mmc);
Lei Wenbc897b12011-05-02 16:26:26 +00002578 if (err)
2579 mmc->has_init = 0;
2580 else
2581 mmc->has_init = 1;
Che-Liang Chioue9550442012-11-28 15:21:13 +00002582 return err;
2583}
2584
2585int mmc_init(struct mmc *mmc)
2586{
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002587 int err = 0;
Marek Vasutce9eca92016-12-01 02:06:32 +01002588 __maybe_unused unsigned start;
Simon Glassc4d660d2017-07-04 13:31:19 -06002589#if CONFIG_IS_ENABLED(DM_MMC)
Simon Glass33fb2112016-05-01 13:52:41 -06002590 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc->dev);
Che-Liang Chioue9550442012-11-28 15:21:13 +00002591
Simon Glass33fb2112016-05-01 13:52:41 -06002592 upriv->mmc = mmc;
2593#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00002594 if (mmc->has_init)
2595 return 0;
Mateusz Zalegad803fea2014-04-29 20:15:30 +02002596
2597 start = get_timer(0);
2598
Che-Liang Chioue9550442012-11-28 15:21:13 +00002599 if (!mmc->init_in_progress)
2600 err = mmc_start_init(mmc);
2601
Andrew Gabbasovbd47c132015-03-19 07:44:07 -05002602 if (!err)
Che-Liang Chioue9550442012-11-28 15:21:13 +00002603 err = mmc_complete_init(mmc);
Jagan Teki919b4852017-01-10 11:18:43 +01002604 if (err)
2605 printf("%s: %d, time %lu\n", __func__, err, get_timer(start));
2606
Lei Wenbc897b12011-05-02 16:26:26 +00002607 return err;
Andy Fleming272cc702008-10-30 16:41:01 -05002608}
2609
Markus Niebelab711882013-12-16 13:40:46 +01002610int mmc_set_dsr(struct mmc *mmc, u16 val)
2611{
2612 mmc->dsr = val;
2613 return 0;
2614}
2615
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002616/* CPU-specific MMC initializations */
2617__weak int cpu_mmc_init(bd_t *bis)
Andy Fleming272cc702008-10-30 16:41:01 -05002618{
2619 return -1;
2620}
2621
Jeroen Hofsteecee9ab72014-07-10 22:46:28 +02002622/* board-specific MMC initializations. */
2623__weak int board_mmc_init(bd_t *bis)
2624{
2625 return -1;
2626}
Andy Fleming272cc702008-10-30 16:41:01 -05002627
Che-Liang Chioue9550442012-11-28 15:21:13 +00002628void mmc_set_preinit(struct mmc *mmc, int preinit)
2629{
2630 mmc->preinit = preinit;
2631}
2632
Simon Glassc4d660d2017-07-04 13:31:19 -06002633#if CONFIG_IS_ENABLED(DM_MMC) && defined(CONFIG_SPL_BUILD)
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002634static int mmc_probe(bd_t *bis)
2635{
2636 return 0;
2637}
Simon Glassc4d660d2017-07-04 13:31:19 -06002638#elif CONFIG_IS_ENABLED(DM_MMC)
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002639static int mmc_probe(bd_t *bis)
2640{
Simon Glass4a1db6d2015-12-29 05:22:49 -07002641 int ret, i;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002642 struct uclass *uc;
Simon Glass4a1db6d2015-12-29 05:22:49 -07002643 struct udevice *dev;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002644
2645 ret = uclass_get(UCLASS_MMC, &uc);
2646 if (ret)
2647 return ret;
2648
Simon Glass4a1db6d2015-12-29 05:22:49 -07002649 /*
2650 * Try to add them in sequence order. Really with driver model we
2651 * should allow holes, but the current MMC list does not allow that.
2652 * So if we request 0, 1, 3 we will get 0, 1, 2.
2653 */
2654 for (i = 0; ; i++) {
2655 ret = uclass_get_device_by_seq(UCLASS_MMC, i, &dev);
2656 if (ret == -ENODEV)
2657 break;
2658 }
2659 uclass_foreach_dev(dev, uc) {
2660 ret = device_probe(dev);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002661 if (ret)
Jean-Jacques Hiblotd8e3d422017-11-30 17:44:00 +01002662 pr_err("%s - probe failed: %d\n", dev->name, ret);
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002663 }
2664
2665 return 0;
2666}
2667#else
2668static int mmc_probe(bd_t *bis)
2669{
2670 if (board_mmc_init(bis) < 0)
2671 cpu_mmc_init(bis);
2672
2673 return 0;
2674}
2675#endif
Che-Liang Chioue9550442012-11-28 15:21:13 +00002676
Andy Fleming272cc702008-10-30 16:41:01 -05002677int mmc_initialize(bd_t *bis)
2678{
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02002679 static int initialized = 0;
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002680 int ret;
Daniel Kochmański1b26bab2015-05-29 16:55:43 +02002681 if (initialized) /* Avoid initializing mmc multiple times */
2682 return 0;
2683 initialized = 1;
2684
Simon Glassc4d660d2017-07-04 13:31:19 -06002685#if !CONFIG_IS_ENABLED(BLK)
Marek Vasutb5b838f2016-12-01 02:06:33 +01002686#if !CONFIG_IS_ENABLED(MMC_TINY)
Simon Glassc40fdca2016-05-01 13:52:35 -06002687 mmc_list_init();
2688#endif
Marek Vasutb5b838f2016-12-01 02:06:33 +01002689#endif
Sjoerd Simons8e3332e2015-08-30 16:55:45 -06002690 ret = mmc_probe(bis);
2691 if (ret)
2692 return ret;
Andy Fleming272cc702008-10-30 16:41:01 -05002693
Ying Zhangbb0dc102013-08-16 15:16:11 +08002694#ifndef CONFIG_SPL_BUILD
Andy Fleming272cc702008-10-30 16:41:01 -05002695 print_mmc_devices(',');
Ying Zhangbb0dc102013-08-16 15:16:11 +08002696#endif
Andy Fleming272cc702008-10-30 16:41:01 -05002697
Simon Glassc40fdca2016-05-01 13:52:35 -06002698 mmc_do_preinit();
Andy Fleming272cc702008-10-30 16:41:01 -05002699 return 0;
2700}
Tomas Melincd3d4882016-11-25 11:01:03 +02002701
2702#ifdef CONFIG_CMD_BKOPS_ENABLE
2703int mmc_set_bkops_enable(struct mmc *mmc)
2704{
2705 int err;
2706 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
2707
2708 err = mmc_send_ext_csd(mmc, ext_csd);
2709 if (err) {
2710 puts("Could not get ext_csd register values\n");
2711 return err;
2712 }
2713
2714 if (!(ext_csd[EXT_CSD_BKOPS_SUPPORT] & 0x1)) {
2715 puts("Background operations not supported on device\n");
2716 return -EMEDIUMTYPE;
2717 }
2718
2719 if (ext_csd[EXT_CSD_BKOPS_EN] & 0x1) {
2720 puts("Background operations already enabled\n");
2721 return 0;
2722 }
2723
2724 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BKOPS_EN, 1);
2725 if (err) {
2726 puts("Failed to enable manual background operations\n");
2727 return err;
2728 }
2729
2730 puts("Enabled manual background operations\n");
2731
2732 return 0;
2733}
2734#endif