blob: 65601d82c305226cf3fca845c94e52fbd43561aa [file] [log] [blame]
wdenk7a428cc2003-06-15 22:40:42 +00001/*
2 * (C) Copyright 2003
3 * Kyle Harris, kharris@nexus-tech.net
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk7a428cc2003-06-15 22:40:42 +00006 */
7
8#include <common.h>
9#include <command.h>
Simon Glassa73bda42015-11-08 23:47:45 -070010#include <console.h>
wdenk7a428cc2003-06-15 22:40:42 +000011#include <mmc.h>
12
Mike Frysinger0289fe62009-06-14 21:35:21 -040013static int curr_device = -1;
Andy Flemingad347bb2008-10-30 16:41:01 -050014
15static void print_mmcinfo(struct mmc *mmc)
16{
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010017 int i;
18
Pantelis Antoniou2c850462014-03-11 19:34:20 +020019 printf("Device: %s\n", mmc->cfg->name);
Andy Flemingad347bb2008-10-30 16:41:01 -050020 printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
21 printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
22 printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
23 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
24 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
25
Jean-Jacques Hiblotf62caf92017-09-21 16:29:56 +020026 printf("Bus Speed: %d\n", mmc->clock);
Jean-Jacques Hiblot93c31d12017-11-30 17:43:54 +010027#if CONFIG_IS_ENABLED(MMC_VERBOSE)
Jean-Jacques Hiblotf62caf92017-09-21 16:29:56 +020028 printf("Mode : %s\n", mmc_mode_name(mmc->selected_mode));
Jean-Jacques Hiblot93c31d12017-11-30 17:43:54 +010029 mmc_dump_capabilities("card capabilities", mmc->card_caps);
30 mmc_dump_capabilities("host capabilities", mmc->host_caps);
31#endif
Andy Flemingad347bb2008-10-30 16:41:01 -050032 printf("Rd Block Len: %d\n", mmc->read_bl_len);
33
Pantelis Antonioua095bfd2015-01-23 12:12:01 +020034 printf("%s version %d.%d", IS_SD(mmc) ? "SD" : "MMC",
35 EXTRACT_SDMMC_MAJOR_VERSION(mmc->version),
36 EXTRACT_SDMMC_MINOR_VERSION(mmc->version));
37 if (EXTRACT_SDMMC_CHANGE_VERSION(mmc->version) != 0)
38 printf(".%d", EXTRACT_SDMMC_CHANGE_VERSION(mmc->version));
39 printf("\n");
Andy Flemingad347bb2008-10-30 16:41:01 -050040
41 printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
Minkyu Kang316f81a2011-01-04 01:04:19 +000042 puts("Capacity: ");
43 print_size(mmc->capacity, "\n");
Andy Flemingad347bb2008-10-30 16:41:01 -050044
Andrew Gabbasov9fc2a412014-12-01 06:59:09 -060045 printf("Bus Width: %d-bit%s\n", mmc->bus_width,
46 mmc->ddr_mode ? " DDR" : "");
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010047
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +010048#if CONFIG_IS_ENABLED(MMC_WRITE)
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010049 puts("Erase Group Size: ");
50 print_size(((u64)mmc->erase_grp_size) << 9, "\n");
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +010051#endif
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010052
Diego Santa Cruz1f69e222014-12-23 10:50:19 +010053 if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010054 bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
Diego Santa Cruz2b45f582014-12-23 10:50:23 +010055 bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010056
57 puts("HC WP Group Size: ");
58 print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
59
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010060 puts("User Capacity: ");
Diego Santa Cruz37a50b92014-12-23 10:50:33 +010061 print_size(mmc->capacity_user, usr_enh ? " ENH" : "");
62 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_USR)
63 puts(" WRREL\n");
64 else
65 putc('\n');
Diego Santa Cruz2b45f582014-12-23 10:50:23 +010066 if (usr_enh) {
67 puts("User Enhanced Start: ");
68 print_size(mmc->enh_user_start, "\n");
69 puts("User Enhanced Size: ");
70 print_size(mmc->enh_user_size, "\n");
71 }
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010072 puts("Boot Capacity: ");
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010073 print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010074 puts("RPMB Capacity: ");
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010075 print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010076
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010077 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010078 bool is_enh = has_enh &&
79 (mmc->part_attr & EXT_CSD_ENH_GP(i));
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010080 if (mmc->capacity_gp[i]) {
Diego Santa Cruzd8358432014-12-23 10:50:18 +010081 printf("GP%i Capacity: ", i+1);
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010082 print_size(mmc->capacity_gp[i],
Diego Santa Cruz37a50b92014-12-23 10:50:33 +010083 is_enh ? " ENH" : "");
84 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_GP(i))
85 puts(" WRREL\n");
86 else
87 putc('\n');
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010088 }
89 }
90 }
Andy Flemingad347bb2008-10-30 16:41:01 -050091}
Stephen Warrenb627f4b2014-05-23 13:24:45 -060092static struct mmc *init_mmc_device(int dev, bool force_init)
Pierre Aubertbcc302c2014-04-24 10:30:08 +020093{
94 struct mmc *mmc;
95 mmc = find_mmc_device(dev);
96 if (!mmc) {
97 printf("no mmc device at slot %x\n", dev);
98 return NULL;
99 }
Eric Nelsonbc181662016-03-27 12:00:14 -0700100
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600101 if (force_init)
102 mmc->has_init = 0;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200103 if (mmc_init(mmc))
104 return NULL;
105 return mmc;
106}
Kim Phillipsdc00a682012-10-29 13:34:31 +0000107static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Flemingad347bb2008-10-30 16:41:01 -0500108{
109 struct mmc *mmc;
Andy Flemingad347bb2008-10-30 16:41:01 -0500110
Lei Wend430d7c2011-05-02 16:26:25 +0000111 if (curr_device < 0) {
112 if (get_mmc_num() > 0)
113 curr_device = 0;
114 else {
115 puts("No MMC device available\n");
116 return 1;
117 }
118 }
Andy Flemingad347bb2008-10-30 16:41:01 -0500119
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600120 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200121 if (!mmc)
122 return CMD_RET_FAILURE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500123
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200124 print_mmcinfo(mmc);
125 return CMD_RET_SUCCESS;
126}
Andy Flemingad347bb2008-10-30 16:41:01 -0500127
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200128#ifdef CONFIG_SUPPORT_EMMC_RPMB
129static int confirm_key_prog(void)
130{
131 puts("Warning: Programming authentication key can be done only once !\n"
132 " Use this command only if you are sure of what you are doing,\n"
133 "Really perform the key programming? <y/N> ");
134 if (confirm_yesno())
Lei Wend430d7c2011-05-02 16:26:25 +0000135 return 1;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200136
137 puts("Authentication key programming aborted\n");
138 return 0;
139}
140static int do_mmcrpmb_key(cmd_tbl_t *cmdtp, int flag,
141 int argc, char * const argv[])
142{
143 void *key_addr;
144 struct mmc *mmc = find_mmc_device(curr_device);
145
146 if (argc != 2)
147 return CMD_RET_USAGE;
148
149 key_addr = (void *)simple_strtoul(argv[1], NULL, 16);
150 if (!confirm_key_prog())
151 return CMD_RET_FAILURE;
152 if (mmc_rpmb_set_key(mmc, key_addr)) {
153 printf("ERROR - Key already programmed ?\n");
154 return CMD_RET_FAILURE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500155 }
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200156 return CMD_RET_SUCCESS;
Andy Flemingad347bb2008-10-30 16:41:01 -0500157}
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200158static int do_mmcrpmb_read(cmd_tbl_t *cmdtp, int flag,
159 int argc, char * const argv[])
160{
161 u16 blk, cnt;
162 void *addr;
163 int n;
164 void *key_addr = NULL;
165 struct mmc *mmc = find_mmc_device(curr_device);
Andy Flemingad347bb2008-10-30 16:41:01 -0500166
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200167 if (argc < 4)
168 return CMD_RET_USAGE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500169
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200170 addr = (void *)simple_strtoul(argv[1], NULL, 16);
171 blk = simple_strtoul(argv[2], NULL, 16);
172 cnt = simple_strtoul(argv[3], NULL, 16);
173
174 if (argc == 5)
175 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
176
177 printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
178 curr_device, blk, cnt);
179 n = mmc_rpmb_read(mmc, addr, blk, cnt, key_addr);
180
181 printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
182 if (n != cnt)
183 return CMD_RET_FAILURE;
184 return CMD_RET_SUCCESS;
185}
186static int do_mmcrpmb_write(cmd_tbl_t *cmdtp, int flag,
187 int argc, char * const argv[])
Andy Flemingad347bb2008-10-30 16:41:01 -0500188{
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200189 u16 blk, cnt;
190 void *addr;
191 int n;
192 void *key_addr;
193 struct mmc *mmc = find_mmc_device(curr_device);
Lei Wen64b2b1e2011-06-22 17:03:30 +0000194
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200195 if (argc != 5)
Simon Glassa06dfc72011-12-10 08:44:01 +0000196 return CMD_RET_USAGE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500197
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200198 addr = (void *)simple_strtoul(argv[1], NULL, 16);
199 blk = simple_strtoul(argv[2], NULL, 16);
200 cnt = simple_strtoul(argv[3], NULL, 16);
201 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
202
203 printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
204 curr_device, blk, cnt);
205 n = mmc_rpmb_write(mmc, addr, blk, cnt, key_addr);
206
207 printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
208 if (n != cnt)
209 return CMD_RET_FAILURE;
210 return CMD_RET_SUCCESS;
211}
212static int do_mmcrpmb_counter(cmd_tbl_t *cmdtp, int flag,
213 int argc, char * const argv[])
214{
215 unsigned long counter;
216 struct mmc *mmc = find_mmc_device(curr_device);
217
218 if (mmc_rpmb_get_counter(mmc, &counter))
219 return CMD_RET_FAILURE;
220 printf("RPMB Write counter= %lx\n", counter);
221 return CMD_RET_SUCCESS;
222}
223
224static cmd_tbl_t cmd_rpmb[] = {
225 U_BOOT_CMD_MKENT(key, 2, 0, do_mmcrpmb_key, "", ""),
226 U_BOOT_CMD_MKENT(read, 5, 1, do_mmcrpmb_read, "", ""),
227 U_BOOT_CMD_MKENT(write, 5, 0, do_mmcrpmb_write, "", ""),
228 U_BOOT_CMD_MKENT(counter, 1, 1, do_mmcrpmb_counter, "", ""),
229};
230
231static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
232 int argc, char * const argv[])
233{
234 cmd_tbl_t *cp;
235 struct mmc *mmc;
236 char original_part;
237 int ret;
238
239 cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));
240
241 /* Drop the rpmb subcommand */
242 argc--;
243 argv++;
244
245 if (cp == NULL || argc > cp->maxargs)
246 return CMD_RET_USAGE;
247 if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
248 return CMD_RET_SUCCESS;
249
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600250 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200251 if (!mmc)
252 return CMD_RET_FAILURE;
253
254 if (!(mmc->version & MMC_VERSION_MMC)) {
255 printf("It is not a EMMC device\n");
256 return CMD_RET_FAILURE;
Lei Wend430d7c2011-05-02 16:26:25 +0000257 }
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200258 if (mmc->version < MMC_VERSION_4_41) {
259 printf("RPMB not supported before version 4.41\n");
260 return CMD_RET_FAILURE;
261 }
262 /* Switch to the RPMB partition */
Kever Yangcb5f1932017-06-08 09:20:03 +0800263#ifndef CONFIG_BLK
Marek Vasuta62cf492016-05-04 16:35:25 +0200264 original_part = mmc->block_dev.hwpart;
Kever Yangcb5f1932017-06-08 09:20:03 +0800265#else
266 original_part = mmc_get_blk_desc(mmc)->hwpart;
267#endif
Simon Glass11f2bb62016-05-01 13:52:29 -0600268 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, MMC_PART_RPMB) !=
269 0)
Stephen Warren1e0f92a2015-12-07 11:38:49 -0700270 return CMD_RET_FAILURE;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200271 ret = cp->cmd(cmdtp, flag, argc, argv);
Andy Flemingad347bb2008-10-30 16:41:01 -0500272
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200273 /* Return to original partition */
Simon Glass11f2bb62016-05-01 13:52:29 -0600274 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, original_part) !=
275 0)
Stephen Warren1e0f92a2015-12-07 11:38:49 -0700276 return CMD_RET_FAILURE;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200277 return ret;
278}
279#endif
Rabin Vincent3e448aa2009-04-05 13:30:53 +0530280
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200281static int do_mmc_read(cmd_tbl_t *cmdtp, int flag,
282 int argc, char * const argv[])
283{
284 struct mmc *mmc;
285 u32 blk, cnt, n;
286 void *addr;
Stephen Warren18faca72013-04-01 11:50:28 +0000287
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200288 if (argc != 4)
289 return CMD_RET_USAGE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500290
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200291 addr = (void *)simple_strtoul(argv[1], NULL, 16);
292 blk = simple_strtoul(argv[2], NULL, 16);
293 cnt = simple_strtoul(argv[3], NULL, 16);
Lei Wen61dba932010-09-13 22:07:28 +0800294
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600295 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200296 if (!mmc)
297 return CMD_RET_FAILURE;
Lei Wen61dba932010-09-13 22:07:28 +0800298
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200299 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
300 curr_device, blk, cnt);
Stephen Warren18faca72013-04-01 11:50:28 +0000301
Simon Glasse5db1152016-05-01 13:52:35 -0600302 n = blk_dread(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200303 printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
Lei Wend430d7c2011-05-02 16:26:25 +0000304
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200305 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
306}
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +0100307
308#if CONFIG_IS_ENABLED(MMC_WRITE)
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200309static int do_mmc_write(cmd_tbl_t *cmdtp, int flag,
310 int argc, char * const argv[])
311{
312 struct mmc *mmc;
313 u32 blk, cnt, n;
314 void *addr;
Andy Flemingad347bb2008-10-30 16:41:01 -0500315
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200316 if (argc != 4)
317 return CMD_RET_USAGE;
Lei Wend430d7c2011-05-02 16:26:25 +0000318
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200319 addr = (void *)simple_strtoul(argv[1], NULL, 16);
320 blk = simple_strtoul(argv[2], NULL, 16);
321 cnt = simple_strtoul(argv[3], NULL, 16);
Lei Wend430d7c2011-05-02 16:26:25 +0000322
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600323 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200324 if (!mmc)
325 return CMD_RET_FAILURE;
Lei Wen31b99802011-05-02 16:26:26 +0000326
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200327 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
328 curr_device, blk, cnt);
Lei Wen31b99802011-05-02 16:26:26 +0000329
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200330 if (mmc_getwp(mmc) == 1) {
331 printf("Error: card is write protected!\n");
332 return CMD_RET_FAILURE;
333 }
Simon Glasse5db1152016-05-01 13:52:35 -0600334 n = blk_dwrite(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200335 printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
Lei Wend430d7c2011-05-02 16:26:25 +0000336
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200337 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
338}
339static int do_mmc_erase(cmd_tbl_t *cmdtp, int flag,
340 int argc, char * const argv[])
341{
342 struct mmc *mmc;
343 u32 blk, cnt, n;
Tom Rinif8c6f792014-02-05 10:24:21 -0500344
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200345 if (argc != 3)
346 return CMD_RET_USAGE;
Tom Rinif8c6f792014-02-05 10:24:21 -0500347
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200348 blk = simple_strtoul(argv[1], NULL, 16);
349 cnt = simple_strtoul(argv[2], NULL, 16);
Amar3ccad532013-04-27 11:43:00 +0530350
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600351 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200352 if (!mmc)
353 return CMD_RET_FAILURE;
Tom Rinif8c6f792014-02-05 10:24:21 -0500354
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200355 printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
356 curr_device, blk, cnt);
Tom Rini4cf854c2014-02-05 10:24:22 -0500357
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200358 if (mmc_getwp(mmc) == 1) {
359 printf("Error: card is write protected!\n");
360 return CMD_RET_FAILURE;
361 }
Simon Glasse5db1152016-05-01 13:52:35 -0600362 n = blk_derase(mmc_get_blk_desc(mmc), blk, cnt);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200363 printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
Tom Rini4cf854c2014-02-05 10:24:22 -0500364
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200365 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
366}
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +0100367#endif
368
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200369static int do_mmc_rescan(cmd_tbl_t *cmdtp, int flag,
370 int argc, char * const argv[])
371{
372 struct mmc *mmc;
Tom Rini4cf854c2014-02-05 10:24:22 -0500373
Stephen Warren07ec4e72014-05-23 13:24:46 -0600374 mmc = init_mmc_device(curr_device, true);
375 if (!mmc)
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200376 return CMD_RET_FAILURE;
Tom Rini4cf854c2014-02-05 10:24:22 -0500377
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200378 return CMD_RET_SUCCESS;
379}
380static int do_mmc_part(cmd_tbl_t *cmdtp, int flag,
381 int argc, char * const argv[])
382{
Simon Glasse3394752016-02-29 15:25:34 -0700383 struct blk_desc *mmc_dev;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200384 struct mmc *mmc;
Amar3ccad532013-04-27 11:43:00 +0530385
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600386 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200387 if (!mmc)
388 return CMD_RET_FAILURE;
Amar3ccad532013-04-27 11:43:00 +0530389
Simon Glassfa255112016-05-01 11:36:15 -0600390 mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200391 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
Simon Glassb89a8442016-02-29 15:25:48 -0700392 part_print(mmc_dev);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200393 return CMD_RET_SUCCESS;
394 }
Amar3ccad532013-04-27 11:43:00 +0530395
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200396 puts("get mmc type error!\n");
397 return CMD_RET_FAILURE;
398}
399static int do_mmc_dev(cmd_tbl_t *cmdtp, int flag,
400 int argc, char * const argv[])
401{
Stephen Warren18549802014-05-23 12:48:10 -0600402 int dev, part = 0, ret;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200403 struct mmc *mmc;
Tom Rini35a3ea12014-02-07 14:15:20 -0500404
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200405 if (argc == 1) {
406 dev = curr_device;
407 } else if (argc == 2) {
408 dev = simple_strtoul(argv[1], NULL, 10);
409 } else if (argc == 3) {
410 dev = (int)simple_strtoul(argv[1], NULL, 10);
411 part = (int)simple_strtoul(argv[2], NULL, 10);
412 if (part > PART_ACCESS_MASK) {
413 printf("#part_num shouldn't be larger than %d\n",
414 PART_ACCESS_MASK);
415 return CMD_RET_FAILURE;
Tom Rini35a3ea12014-02-07 14:15:20 -0500416 }
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200417 } else {
418 return CMD_RET_USAGE;
419 }
Tom Rini35a3ea12014-02-07 14:15:20 -0500420
Stephen Warrencf66e6f2014-05-23 13:24:47 -0600421 mmc = init_mmc_device(dev, true);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200422 if (!mmc)
423 return CMD_RET_FAILURE;
Tom Rini35a3ea12014-02-07 14:15:20 -0500424
Simon Glass11f2bb62016-05-01 13:52:29 -0600425 ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part);
Stephen Warren18549802014-05-23 12:48:10 -0600426 printf("switch to partitions #%d, %s\n",
427 part, (!ret) ? "OK" : "ERROR");
428 if (ret)
429 return 1;
430
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200431 curr_device = dev;
432 if (mmc->part_config == MMCPART_NOAVAILABLE)
433 printf("mmc%d is current device\n", curr_device);
434 else
435 printf("mmc%d(part %d) is current device\n",
Simon Glasse5db1152016-05-01 13:52:35 -0600436 curr_device, mmc_get_blk_desc(mmc)->hwpart);
Tom Rini35a3ea12014-02-07 14:15:20 -0500437
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200438 return CMD_RET_SUCCESS;
439}
440static int do_mmc_list(cmd_tbl_t *cmdtp, int flag,
441 int argc, char * const argv[])
442{
443 print_mmc_devices('\n');
444 return CMD_RET_SUCCESS;
445}
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100446
Jean-Jacques Hiblot1d7769a2017-11-30 17:44:02 +0100447#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100448static int parse_hwpart_user(struct mmc_hwpart_conf *pconf,
449 int argc, char * const argv[])
450{
451 int i = 0;
452
453 memset(&pconf->user, 0, sizeof(pconf->user));
454
455 while (i < argc) {
456 if (!strcmp(argv[i], "enh")) {
457 if (i + 2 >= argc)
458 return -1;
459 pconf->user.enh_start =
460 simple_strtoul(argv[i+1], NULL, 10);
461 pconf->user.enh_size =
462 simple_strtoul(argv[i+2], NULL, 10);
463 i += 3;
464 } else if (!strcmp(argv[i], "wrrel")) {
465 if (i + 1 >= argc)
466 return -1;
467 pconf->user.wr_rel_change = 1;
468 if (!strcmp(argv[i+1], "on"))
469 pconf->user.wr_rel_set = 1;
470 else if (!strcmp(argv[i+1], "off"))
471 pconf->user.wr_rel_set = 0;
472 else
473 return -1;
474 i += 2;
475 } else {
476 break;
477 }
478 }
479 return i;
480}
481
482static int parse_hwpart_gp(struct mmc_hwpart_conf *pconf, int pidx,
483 int argc, char * const argv[])
484{
485 int i;
486
487 memset(&pconf->gp_part[pidx], 0, sizeof(pconf->gp_part[pidx]));
488
489 if (1 >= argc)
490 return -1;
491 pconf->gp_part[pidx].size = simple_strtoul(argv[0], NULL, 10);
492
493 i = 1;
494 while (i < argc) {
495 if (!strcmp(argv[i], "enh")) {
496 pconf->gp_part[pidx].enhanced = 1;
497 i += 1;
498 } else if (!strcmp(argv[i], "wrrel")) {
499 if (i + 1 >= argc)
500 return -1;
501 pconf->gp_part[pidx].wr_rel_change = 1;
502 if (!strcmp(argv[i+1], "on"))
503 pconf->gp_part[pidx].wr_rel_set = 1;
504 else if (!strcmp(argv[i+1], "off"))
505 pconf->gp_part[pidx].wr_rel_set = 0;
506 else
507 return -1;
508 i += 2;
509 } else {
510 break;
511 }
512 }
513 return i;
514}
515
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100516static int do_mmc_hwpartition(cmd_tbl_t *cmdtp, int flag,
517 int argc, char * const argv[])
518{
519 struct mmc *mmc;
520 struct mmc_hwpart_conf pconf = { };
521 enum mmc_hwpart_conf_mode mode = MMC_HWPART_CONF_CHECK;
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100522 int i, r, pidx;
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100523
524 mmc = init_mmc_device(curr_device, false);
525 if (!mmc)
526 return CMD_RET_FAILURE;
527
528 if (argc < 1)
529 return CMD_RET_USAGE;
530 i = 1;
531 while (i < argc) {
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100532 if (!strcmp(argv[i], "user")) {
533 i++;
534 r = parse_hwpart_user(&pconf, argc-i, &argv[i]);
535 if (r < 0)
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100536 return CMD_RET_USAGE;
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100537 i += r;
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100538 } else if (!strncmp(argv[i], "gp", 2) &&
539 strlen(argv[i]) == 3 &&
540 argv[i][2] >= '1' && argv[i][2] <= '4') {
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100541 pidx = argv[i][2] - '1';
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100542 i++;
543 r = parse_hwpart_gp(&pconf, pidx, argc-i, &argv[i]);
544 if (r < 0)
545 return CMD_RET_USAGE;
546 i += r;
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100547 } else if (!strcmp(argv[i], "check")) {
548 mode = MMC_HWPART_CONF_CHECK;
549 i++;
550 } else if (!strcmp(argv[i], "set")) {
551 mode = MMC_HWPART_CONF_SET;
552 i++;
553 } else if (!strcmp(argv[i], "complete")) {
554 mode = MMC_HWPART_CONF_COMPLETE;
555 i++;
556 } else {
557 return CMD_RET_USAGE;
558 }
559 }
560
561 puts("Partition configuration:\n");
562 if (pconf.user.enh_size) {
563 puts("\tUser Enhanced Start: ");
564 print_size(((u64)pconf.user.enh_start) << 9, "\n");
565 puts("\tUser Enhanced Size: ");
566 print_size(((u64)pconf.user.enh_size) << 9, "\n");
567 } else {
568 puts("\tNo enhanced user data area\n");
569 }
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100570 if (pconf.user.wr_rel_change)
571 printf("\tUser partition write reliability: %s\n",
572 pconf.user.wr_rel_set ? "on" : "off");
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100573 for (pidx = 0; pidx < 4; pidx++) {
574 if (pconf.gp_part[pidx].size) {
575 printf("\tGP%i Capacity: ", pidx+1);
576 print_size(((u64)pconf.gp_part[pidx].size) << 9,
577 pconf.gp_part[pidx].enhanced ?
578 " ENH\n" : "\n");
579 } else {
580 printf("\tNo GP%i partition\n", pidx+1);
581 }
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100582 if (pconf.gp_part[pidx].wr_rel_change)
583 printf("\tGP%i write reliability: %s\n", pidx+1,
584 pconf.gp_part[pidx].wr_rel_set ? "on" : "off");
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100585 }
586
587 if (!mmc_hwpart_config(mmc, &pconf, mode)) {
588 if (mode == MMC_HWPART_CONF_COMPLETE)
589 puts("Partitioning successful, "
590 "power-cycle to make effective\n");
591 return CMD_RET_SUCCESS;
592 } else {
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100593 puts("Failed!\n");
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100594 return CMD_RET_FAILURE;
595 }
596}
Jean-Jacques Hiblot1d7769a2017-11-30 17:44:02 +0100597#endif
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100598
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200599#ifdef CONFIG_SUPPORT_EMMC_BOOT
600static int do_mmc_bootbus(cmd_tbl_t *cmdtp, int flag,
601 int argc, char * const argv[])
602{
603 int dev;
604 struct mmc *mmc;
605 u8 width, reset, mode;
606
607 if (argc != 5)
608 return CMD_RET_USAGE;
609 dev = simple_strtoul(argv[1], NULL, 10);
610 width = simple_strtoul(argv[2], NULL, 10);
611 reset = simple_strtoul(argv[3], NULL, 10);
612 mode = simple_strtoul(argv[4], NULL, 10);
613
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600614 mmc = init_mmc_device(dev, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200615 if (!mmc)
616 return CMD_RET_FAILURE;
617
618 if (IS_SD(mmc)) {
619 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
620 return CMD_RET_FAILURE;
Amar3ccad532013-04-27 11:43:00 +0530621 }
Markus Niebel03951412013-12-16 13:40:46 +0100622
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200623 /* acknowledge to be sent during boot operation */
624 return mmc_set_boot_bus_width(mmc, width, reset, mode);
625}
626static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
627 int argc, char * const argv[])
628{
629 int dev;
630 struct mmc *mmc;
631 u32 bootsize, rpmbsize;
Markus Niebel03951412013-12-16 13:40:46 +0100632
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200633 if (argc != 4)
634 return CMD_RET_USAGE;
635 dev = simple_strtoul(argv[1], NULL, 10);
636 bootsize = simple_strtoul(argv[2], NULL, 10);
637 rpmbsize = simple_strtoul(argv[3], NULL, 10);
638
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600639 mmc = init_mmc_device(dev, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200640 if (!mmc)
641 return CMD_RET_FAILURE;
642
643 if (IS_SD(mmc)) {
644 printf("It is not a EMMC device\n");
645 return CMD_RET_FAILURE;
Markus Niebel03951412013-12-16 13:40:46 +0100646 }
647
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200648 if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
649 printf("EMMC boot partition Size change Failed.\n");
650 return CMD_RET_FAILURE;
651 }
Andy Flemingad347bb2008-10-30 16:41:01 -0500652
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200653 printf("EMMC boot partition Size %d MB\n", bootsize);
654 printf("EMMC RPMB partition Size %d MB\n", rpmbsize);
655 return CMD_RET_SUCCESS;
656}
Angelo Dureghellof54f7532017-08-01 14:27:10 +0200657
658static int mmc_partconf_print(struct mmc *mmc)
659{
660 u8 ack, access, part;
661
662 if (mmc->part_config == MMCPART_NOAVAILABLE) {
663 printf("No part_config info for ver. 0x%x\n", mmc->version);
664 return CMD_RET_FAILURE;
665 }
666
667 access = EXT_CSD_EXTRACT_PARTITION_ACCESS(mmc->part_config);
668 ack = EXT_CSD_EXTRACT_BOOT_ACK(mmc->part_config);
669 part = EXT_CSD_EXTRACT_BOOT_PART(mmc->part_config);
670
671 printf("EXT_CSD[179], PARTITION_CONFIG:\n"
672 "BOOT_ACK: 0x%x\n"
673 "BOOT_PARTITION_ENABLE: 0x%x\n"
674 "PARTITION_ACCESS: 0x%x\n", ack, part, access);
675
676 return CMD_RET_SUCCESS;
677}
678
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200679static int do_mmc_partconf(cmd_tbl_t *cmdtp, int flag,
680 int argc, char * const argv[])
681{
682 int dev;
683 struct mmc *mmc;
684 u8 ack, part_num, access;
Lei Wenea526762011-06-22 17:03:31 +0000685
Angelo Dureghellof54f7532017-08-01 14:27:10 +0200686 if (argc != 2 && argc != 5)
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200687 return CMD_RET_USAGE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500688
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200689 dev = simple_strtoul(argv[1], NULL, 10);
Rabin Vincent3e448aa2009-04-05 13:30:53 +0530690
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600691 mmc = init_mmc_device(dev, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200692 if (!mmc)
693 return CMD_RET_FAILURE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500694
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200695 if (IS_SD(mmc)) {
696 puts("PARTITION_CONFIG only exists on eMMC\n");
697 return CMD_RET_FAILURE;
698 }
Andy Flemingad347bb2008-10-30 16:41:01 -0500699
Angelo Dureghellof54f7532017-08-01 14:27:10 +0200700 if (argc == 2)
701 return mmc_partconf_print(mmc);
702
703 ack = simple_strtoul(argv[2], NULL, 10);
704 part_num = simple_strtoul(argv[3], NULL, 10);
705 access = simple_strtoul(argv[4], NULL, 10);
706
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200707 /* acknowledge to be sent during boot operation */
708 return mmc_set_part_conf(mmc, ack, part_num, access);
709}
710static int do_mmc_rst_func(cmd_tbl_t *cmdtp, int flag,
711 int argc, char * const argv[])
712{
713 int dev;
714 struct mmc *mmc;
715 u8 enable;
Nikita Kiryanov020f2612012-12-03 02:19:46 +0000716
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200717 /*
718 * Set the RST_n_ENABLE bit of RST_n_FUNCTION
719 * The only valid values are 0x0, 0x1 and 0x2 and writing
720 * a value of 0x1 or 0x2 sets the value permanently.
721 */
722 if (argc != 3)
723 return CMD_RET_USAGE;
724
725 dev = simple_strtoul(argv[1], NULL, 10);
726 enable = simple_strtoul(argv[2], NULL, 10);
727
Peng Fanb1e455a2015-11-25 17:16:21 +0800728 if (enable > 2) {
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200729 puts("Invalid RST_n_ENABLE value\n");
730 return CMD_RET_USAGE;
731 }
732
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600733 mmc = init_mmc_device(dev, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200734 if (!mmc)
735 return CMD_RET_FAILURE;
736
737 if (IS_SD(mmc)) {
738 puts("RST_n_FUNCTION only exists on eMMC\n");
739 return CMD_RET_FAILURE;
740 }
741
742 return mmc_set_rst_n_function(mmc, enable);
743}
744#endif
745static int do_mmc_setdsr(cmd_tbl_t *cmdtp, int flag,
746 int argc, char * const argv[])
747{
748 struct mmc *mmc;
749 u32 val;
750 int ret;
Andy Flemingad347bb2008-10-30 16:41:01 -0500751
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200752 if (argc != 2)
753 return CMD_RET_USAGE;
Markus Niebel4e5d33a2017-02-03 15:26:36 +0100754 val = simple_strtoul(argv[1], NULL, 16);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200755
756 mmc = find_mmc_device(curr_device);
757 if (!mmc) {
758 printf("no mmc device at slot %x\n", curr_device);
759 return CMD_RET_FAILURE;
760 }
761 ret = mmc_set_dsr(mmc, val);
762 printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
763 if (!ret) {
764 mmc->has_init = 0;
765 if (mmc_init(mmc))
766 return CMD_RET_FAILURE;
767 else
768 return CMD_RET_SUCCESS;
Andy Flemingad347bb2008-10-30 16:41:01 -0500769 }
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200770 return ret;
771}
Lei Wend430d7c2011-05-02 16:26:25 +0000772
Tomas Melinc17dae52016-11-25 11:01:03 +0200773#ifdef CONFIG_CMD_BKOPS_ENABLE
774static int do_mmc_bkops_enable(cmd_tbl_t *cmdtp, int flag,
775 int argc, char * const argv[])
776{
777 int dev;
778 struct mmc *mmc;
779
780 if (argc != 2)
781 return CMD_RET_USAGE;
782
783 dev = simple_strtoul(argv[1], NULL, 10);
784
785 mmc = init_mmc_device(dev, false);
786 if (!mmc)
787 return CMD_RET_FAILURE;
788
789 if (IS_SD(mmc)) {
790 puts("BKOPS_EN only exists on eMMC\n");
791 return CMD_RET_FAILURE;
792 }
793
794 return mmc_set_bkops_enable(mmc);
795}
796#endif
797
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200798static cmd_tbl_t cmd_mmc[] = {
799 U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""),
800 U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""),
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +0100801#if CONFIG_IS_ENABLED(MMC_WRITE)
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200802 U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""),
803 U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""),
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +0100804#endif
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200805 U_BOOT_CMD_MKENT(rescan, 1, 1, do_mmc_rescan, "", ""),
806 U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""),
807 U_BOOT_CMD_MKENT(dev, 3, 0, do_mmc_dev, "", ""),
808 U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
Jean-Jacques Hiblot1d7769a2017-11-30 17:44:02 +0100809#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100810 U_BOOT_CMD_MKENT(hwpartition, 28, 0, do_mmc_hwpartition, "", ""),
Jean-Jacques Hiblot1d7769a2017-11-30 17:44:02 +0100811#endif
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200812#ifdef CONFIG_SUPPORT_EMMC_BOOT
813 U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
Wally Yehd49c4aa2014-09-25 23:00:16 +0800814 U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200815 U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
816 U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
817#endif
818#ifdef CONFIG_SUPPORT_EMMC_RPMB
819 U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
820#endif
821 U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
Tomas Melinc17dae52016-11-25 11:01:03 +0200822#ifdef CONFIG_CMD_BKOPS_ENABLE
823 U_BOOT_CMD_MKENT(bkops-enable, 2, 0, do_mmc_bkops_enable, "", ""),
824#endif
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200825};
826
827static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
828{
829 cmd_tbl_t *cp;
830
831 cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));
832
833 /* Drop the mmc command */
834 argc--;
835 argv++;
836
837 if (cp == NULL || argc > cp->maxargs)
838 return CMD_RET_USAGE;
839 if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
840 return CMD_RET_SUCCESS;
841
842 if (curr_device < 0) {
843 if (get_mmc_num() > 0) {
844 curr_device = 0;
845 } else {
846 puts("No MMC device available\n");
847 return CMD_RET_FAILURE;
848 }
849 }
850 return cp->cmd(cmdtp, flag, argc, argv);
Andy Flemingad347bb2008-10-30 16:41:01 -0500851}
852
853U_BOOT_CMD(
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100854 mmc, 29, 1, do_mmcops,
Mike Frysinger27e1e622009-03-23 22:27:34 -0400855 "MMC sub system",
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200856 "info - display info of the current MMC device\n"
857 "mmc read addr blk# cnt\n"
Lei Wend430d7c2011-05-02 16:26:25 +0000858 "mmc write addr blk# cnt\n"
Lei Wenea526762011-06-22 17:03:31 +0000859 "mmc erase blk# cnt\n"
Lei Wend430d7c2011-05-02 16:26:25 +0000860 "mmc rescan\n"
861 "mmc part - lists available partition on current mmc device\n"
Lei Wen31b99802011-05-02 16:26:26 +0000862 "mmc dev [dev] [part] - show or set current mmc device [partition]\n"
Amar3ccad532013-04-27 11:43:00 +0530863 "mmc list - lists available devices\n"
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100864 "mmc hwpartition [args...] - does hardware partitioning\n"
865 " arguments (sizes in 512-byte blocks):\n"
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100866 " [user [enh start cnt] [wrrel {on|off}]] - sets user data area attributes\n"
867 " [gp1|gp2|gp3|gp4 cnt [enh] [wrrel {on|off}]] - general purpose partition\n"
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100868 " [check|set|complete] - mode, complete set partitioning completed\n"
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100869 " WARNING: Partitioning is a write-once setting once it is set to complete.\n"
870 " Power cycling is required to initialize partitions after set to complete.\n"
Amar3ccad532013-04-27 11:43:00 +0530871#ifdef CONFIG_SUPPORT_EMMC_BOOT
Tom Rini4cf854c2014-02-05 10:24:22 -0500872 "mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
873 " - Set the BOOT_BUS_WIDTH field of the specified device\n"
Tom Rini79919462014-02-05 10:24:20 -0500874 "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
875 " - Change sizes of boot and RPMB partitions of specified device\n"
Angelo Dureghellof54f7532017-08-01 14:27:10 +0200876 "mmc partconf dev [boot_ack boot_partition partition_access]\n"
877 " - Show or change the bits of the PARTITION_CONFIG field of the specified device\n"
Tom Rini35a3ea12014-02-07 14:15:20 -0500878 "mmc rst-function dev value\n"
879 " - Change the RST_n_FUNCTION field of the specified device\n"
880 " WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
Dirk Behmedf8852a2009-02-18 19:59:39 +0100881#endif
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200882#ifdef CONFIG_SUPPORT_EMMC_RPMB
883 "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
884 "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
885 "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
886 "mmc rpmb counter - read the value of the write counter\n"
887#endif
888 "mmc setdsr <value> - set DSR register value\n"
Tomas Melinc17dae52016-11-25 11:01:03 +0200889#ifdef CONFIG_CMD_BKOPS_ENABLE
890 "mmc bkops-enable <dev> - enable background operations handshake on device\n"
891 " WARNING: This is a write-once setting.\n"
892#endif
Amar3ccad532013-04-27 11:43:00 +0530893 );
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200894
895/* Old command kept for compatibility. Same as 'mmc info' */
896U_BOOT_CMD(
897 mmcinfo, 1, 0, do_mmcinfo,
898 "display MMC info",
899 "- display info of the current MMC device"
900);