blob: 3920a1836a594903116841f809676f34ff022061 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk71f95112003-06-15 22:40:42 +00002/*
3 * (C) Copyright 2003
4 * Kyle Harris, kharris@nexus-tech.net
wdenk71f95112003-06-15 22:40:42 +00005 */
6
7#include <common.h>
8#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -07009#include <console.h>
wdenk71f95112003-06-15 22:40:42 +000010#include <mmc.h>
Jassi Brar732bc7c2018-04-06 12:05:24 +053011#include <sparse_format.h>
12#include <image-sparse.h>
wdenk71f95112003-06-15 22:40:42 +000013
Mike Frysinger02e22c22009-06-14 21:35:21 -040014static int curr_device = -1;
Andy Fleming272cc702008-10-30 16:41:01 -050015
16static void print_mmcinfo(struct mmc *mmc)
17{
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010018 int i;
19
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020020 printf("Device: %s\n", mmc->cfg->name);
Andy Fleming272cc702008-10-30 16:41:01 -050021 printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
22 printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
23 printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
24 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
25 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
26
Jean-Jacques Hiblot7a96ec72017-09-21 16:29:56 +020027 printf("Bus Speed: %d\n", mmc->clock);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +010028#if CONFIG_IS_ENABLED(MMC_VERBOSE)
Jean-Jacques Hiblot7a96ec72017-09-21 16:29:56 +020029 printf("Mode : %s\n", mmc_mode_name(mmc->selected_mode));
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +010030 mmc_dump_capabilities("card capabilities", mmc->card_caps);
31 mmc_dump_capabilities("host capabilities", mmc->host_caps);
32#endif
Andy Fleming272cc702008-10-30 16:41:01 -050033 printf("Rd Block Len: %d\n", mmc->read_bl_len);
34
Pantelis Antoniou4b7cee52015-01-23 12:12:01 +020035 printf("%s version %d.%d", IS_SD(mmc) ? "SD" : "MMC",
36 EXTRACT_SDMMC_MAJOR_VERSION(mmc->version),
37 EXTRACT_SDMMC_MINOR_VERSION(mmc->version));
38 if (EXTRACT_SDMMC_CHANGE_VERSION(mmc->version) != 0)
39 printf(".%d", EXTRACT_SDMMC_CHANGE_VERSION(mmc->version));
40 printf("\n");
Andy Fleming272cc702008-10-30 16:41:01 -050041
42 printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
Minkyu Kang940e0782011-01-04 01:04:19 +000043 puts("Capacity: ");
44 print_size(mmc->capacity, "\n");
Andy Fleming272cc702008-10-30 16:41:01 -050045
Andrew Gabbasov786e8f82014-12-01 06:59:09 -060046 printf("Bus Width: %d-bit%s\n", mmc->bus_width,
47 mmc->ddr_mode ? " DDR" : "");
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010048
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +010049#if CONFIG_IS_ENABLED(MMC_WRITE)
Diego Santa Cruzb0361522014-12-23 10:50:26 +010050 puts("Erase Group Size: ");
51 print_size(((u64)mmc->erase_grp_size) << 9, "\n");
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +010052#endif
Diego Santa Cruzb0361522014-12-23 10:50:26 +010053
Diego Santa Cruz525ada22014-12-23 10:50:19 +010054 if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010055 bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
Diego Santa Cruzbeb98a12014-12-23 10:50:23 +010056 bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
Diego Santa Cruzb0361522014-12-23 10:50:26 +010057
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +010058#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruzb0361522014-12-23 10:50:26 +010059 puts("HC WP Group Size: ");
60 print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +010061#endif
Diego Santa Cruzb0361522014-12-23 10:50:26 +010062
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010063 puts("User Capacity: ");
Diego Santa Cruz9e41a002014-12-23 10:50:33 +010064 print_size(mmc->capacity_user, usr_enh ? " ENH" : "");
65 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_USR)
66 puts(" WRREL\n");
67 else
68 putc('\n');
Diego Santa Cruzbeb98a12014-12-23 10:50:23 +010069 if (usr_enh) {
70 puts("User Enhanced Start: ");
71 print_size(mmc->enh_user_start, "\n");
72 puts("User Enhanced Size: ");
73 print_size(mmc->enh_user_size, "\n");
74 }
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010075 puts("Boot Capacity: ");
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010076 print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010077 puts("RPMB Capacity: ");
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010078 print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
Diego Santa Cruzb0361522014-12-23 10:50:26 +010079
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010080 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010081 bool is_enh = has_enh &&
82 (mmc->part_attr & EXT_CSD_ENH_GP(i));
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010083 if (mmc->capacity_gp[i]) {
Diego Santa Cruzf289fd72014-12-23 10:50:18 +010084 printf("GP%i Capacity: ", i+1);
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010085 print_size(mmc->capacity_gp[i],
Diego Santa Cruz9e41a002014-12-23 10:50:33 +010086 is_enh ? " ENH" : "");
87 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_GP(i))
88 puts(" WRREL\n");
89 else
90 putc('\n');
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010091 }
92 }
93 }
Andy Fleming272cc702008-10-30 16:41:01 -050094}
Stephen Warren1ae24a52014-05-23 13:24:45 -060095static struct mmc *init_mmc_device(int dev, bool force_init)
Pierre Aubert1fd93c62014-04-24 10:30:08 +020096{
97 struct mmc *mmc;
98 mmc = find_mmc_device(dev);
99 if (!mmc) {
100 printf("no mmc device at slot %x\n", dev);
101 return NULL;
102 }
Eric Nelsonbcfde7f2016-03-27 12:00:14 -0700103
Stephen Warren1ae24a52014-05-23 13:24:45 -0600104 if (force_init)
105 mmc->has_init = 0;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200106 if (mmc_init(mmc))
107 return NULL;
108 return mmc;
109}
Kim Phillips088f1b12012-10-29 13:34:31 +0000110static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Fleming272cc702008-10-30 16:41:01 -0500111{
112 struct mmc *mmc;
Andy Fleming272cc702008-10-30 16:41:01 -0500113
Lei Wenea6ebe22011-05-02 16:26:25 +0000114 if (curr_device < 0) {
115 if (get_mmc_num() > 0)
116 curr_device = 0;
117 else {
118 puts("No MMC device available\n");
119 return 1;
120 }
121 }
Andy Fleming272cc702008-10-30 16:41:01 -0500122
Stephen Warren1ae24a52014-05-23 13:24:45 -0600123 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200124 if (!mmc)
125 return CMD_RET_FAILURE;
Andy Fleming272cc702008-10-30 16:41:01 -0500126
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200127 print_mmcinfo(mmc);
128 return CMD_RET_SUCCESS;
Andy Fleming272cc702008-10-30 16:41:01 -0500129}
130
Alex Kiernan5a7b11e2018-05-08 04:43:31 +0000131#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200132static int confirm_key_prog(void)
133{
134 puts("Warning: Programming authentication key can be done only once !\n"
135 " Use this command only if you are sure of what you are doing,\n"
136 "Really perform the key programming? <y/N> ");
137 if (confirm_yesno())
138 return 1;
139
140 puts("Authentication key programming aborted\n");
141 return 0;
142}
143static int do_mmcrpmb_key(cmd_tbl_t *cmdtp, int flag,
144 int argc, char * const argv[])
145{
146 void *key_addr;
147 struct mmc *mmc = find_mmc_device(curr_device);
148
149 if (argc != 2)
150 return CMD_RET_USAGE;
151
152 key_addr = (void *)simple_strtoul(argv[1], NULL, 16);
153 if (!confirm_key_prog())
154 return CMD_RET_FAILURE;
155 if (mmc_rpmb_set_key(mmc, key_addr)) {
156 printf("ERROR - Key already programmed ?\n");
157 return CMD_RET_FAILURE;
158 }
159 return CMD_RET_SUCCESS;
160}
161static int do_mmcrpmb_read(cmd_tbl_t *cmdtp, int flag,
162 int argc, char * const argv[])
163{
164 u16 blk, cnt;
165 void *addr;
166 int n;
167 void *key_addr = NULL;
168 struct mmc *mmc = find_mmc_device(curr_device);
169
170 if (argc < 4)
171 return CMD_RET_USAGE;
172
173 addr = (void *)simple_strtoul(argv[1], NULL, 16);
174 blk = simple_strtoul(argv[2], NULL, 16);
175 cnt = simple_strtoul(argv[3], NULL, 16);
176
177 if (argc == 5)
178 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
179
180 printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
181 curr_device, blk, cnt);
182 n = mmc_rpmb_read(mmc, addr, blk, cnt, key_addr);
183
184 printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
185 if (n != cnt)
186 return CMD_RET_FAILURE;
187 return CMD_RET_SUCCESS;
188}
189static int do_mmcrpmb_write(cmd_tbl_t *cmdtp, int flag,
190 int argc, char * const argv[])
191{
192 u16 blk, cnt;
193 void *addr;
194 int n;
195 void *key_addr;
196 struct mmc *mmc = find_mmc_device(curr_device);
197
198 if (argc != 5)
199 return CMD_RET_USAGE;
200
201 addr = (void *)simple_strtoul(argv[1], NULL, 16);
202 blk = simple_strtoul(argv[2], NULL, 16);
203 cnt = simple_strtoul(argv[3], NULL, 16);
204 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
205
206 printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
207 curr_device, blk, cnt);
208 n = mmc_rpmb_write(mmc, addr, blk, cnt, key_addr);
209
210 printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
211 if (n != cnt)
212 return CMD_RET_FAILURE;
213 return CMD_RET_SUCCESS;
214}
215static int do_mmcrpmb_counter(cmd_tbl_t *cmdtp, int flag,
216 int argc, char * const argv[])
217{
218 unsigned long counter;
219 struct mmc *mmc = find_mmc_device(curr_device);
220
221 if (mmc_rpmb_get_counter(mmc, &counter))
222 return CMD_RET_FAILURE;
223 printf("RPMB Write counter= %lx\n", counter);
224 return CMD_RET_SUCCESS;
225}
226
227static cmd_tbl_t cmd_rpmb[] = {
228 U_BOOT_CMD_MKENT(key, 2, 0, do_mmcrpmb_key, "", ""),
229 U_BOOT_CMD_MKENT(read, 5, 1, do_mmcrpmb_read, "", ""),
230 U_BOOT_CMD_MKENT(write, 5, 0, do_mmcrpmb_write, "", ""),
231 U_BOOT_CMD_MKENT(counter, 1, 1, do_mmcrpmb_counter, "", ""),
232};
233
234static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
235 int argc, char * const argv[])
236{
237 cmd_tbl_t *cp;
238 struct mmc *mmc;
239 char original_part;
240 int ret;
241
242 cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));
243
244 /* Drop the rpmb subcommand */
245 argc--;
246 argv++;
247
248 if (cp == NULL || argc > cp->maxargs)
249 return CMD_RET_USAGE;
250 if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
251 return CMD_RET_SUCCESS;
252
Stephen Warren1ae24a52014-05-23 13:24:45 -0600253 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200254 if (!mmc)
255 return CMD_RET_FAILURE;
256
257 if (!(mmc->version & MMC_VERSION_MMC)) {
258 printf("It is not a EMMC device\n");
259 return CMD_RET_FAILURE;
260 }
261 if (mmc->version < MMC_VERSION_4_41) {
262 printf("RPMB not supported before version 4.41\n");
263 return CMD_RET_FAILURE;
264 }
265 /* Switch to the RPMB partition */
Kever Yang4dc80c82017-06-08 09:20:03 +0800266#ifndef CONFIG_BLK
Marek Vasutb955e422016-05-04 16:35:25 +0200267 original_part = mmc->block_dev.hwpart;
Kever Yang4dc80c82017-06-08 09:20:03 +0800268#else
269 original_part = mmc_get_blk_desc(mmc)->hwpart;
270#endif
Simon Glass69f45cd2016-05-01 13:52:29 -0600271 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, MMC_PART_RPMB) !=
272 0)
Stephen Warren873cc1d2015-12-07 11:38:49 -0700273 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200274 ret = cp->cmd(cmdtp, flag, argc, argv);
275
276 /* Return to original partition */
Simon Glass69f45cd2016-05-01 13:52:29 -0600277 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, original_part) !=
278 0)
Stephen Warren873cc1d2015-12-07 11:38:49 -0700279 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200280 return ret;
281}
282#endif
283
284static int do_mmc_read(cmd_tbl_t *cmdtp, int flag,
285 int argc, char * const argv[])
286{
287 struct mmc *mmc;
288 u32 blk, cnt, n;
289 void *addr;
290
291 if (argc != 4)
292 return CMD_RET_USAGE;
293
294 addr = (void *)simple_strtoul(argv[1], NULL, 16);
295 blk = simple_strtoul(argv[2], NULL, 16);
296 cnt = simple_strtoul(argv[3], NULL, 16);
297
Stephen Warren1ae24a52014-05-23 13:24:45 -0600298 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200299 if (!mmc)
300 return CMD_RET_FAILURE;
301
302 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
303 curr_device, blk, cnt);
304
Simon Glassc40fdca2016-05-01 13:52:35 -0600305 n = blk_dread(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200306 printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
307
308 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
309}
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +0100310
Alex Kiernanc232d142018-05-29 15:30:52 +0000311#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
Jassi Brar732bc7c2018-04-06 12:05:24 +0530312static lbaint_t mmc_sparse_write(struct sparse_storage *info, lbaint_t blk,
313 lbaint_t blkcnt, const void *buffer)
314{
315 struct blk_desc *dev_desc = info->priv;
316
317 return blk_dwrite(dev_desc, blk, blkcnt, buffer);
318}
319
320static lbaint_t mmc_sparse_reserve(struct sparse_storage *info,
321 lbaint_t blk, lbaint_t blkcnt)
322{
323 return blkcnt;
324}
325
326static int do_mmc_sparse_write(cmd_tbl_t *cmdtp, int flag,
327 int argc, char * const argv[])
328{
329 struct sparse_storage sparse;
330 struct blk_desc *dev_desc;
331 struct mmc *mmc;
332 char dest[11];
333 void *addr;
334 u32 blk;
335
336 if (argc != 3)
337 return CMD_RET_USAGE;
338
339 addr = (void *)simple_strtoul(argv[1], NULL, 16);
340 blk = simple_strtoul(argv[2], NULL, 16);
341
342 if (!is_sparse_image(addr)) {
343 printf("Not a sparse image\n");
344 return CMD_RET_FAILURE;
345 }
346
347 mmc = init_mmc_device(curr_device, false);
348 if (!mmc)
349 return CMD_RET_FAILURE;
350
351 printf("\nMMC Sparse write: dev # %d, block # %d ... ",
352 curr_device, blk);
353
354 if (mmc_getwp(mmc) == 1) {
355 printf("Error: card is write protected!\n");
356 return CMD_RET_FAILURE;
357 }
358
359 dev_desc = mmc_get_blk_desc(mmc);
360 sparse.priv = dev_desc;
361 sparse.blksz = 512;
362 sparse.start = blk;
363 sparse.size = dev_desc->lba - blk;
364 sparse.write = mmc_sparse_write;
365 sparse.reserve = mmc_sparse_reserve;
366 sparse.mssg = NULL;
367 sprintf(dest, "0x" LBAF, sparse.start * sparse.blksz);
368
Alex Kiernanc4ded032018-05-29 15:30:40 +0000369 if (write_sparse_image(&sparse, dest, addr, NULL))
Jassi Brar732bc7c2018-04-06 12:05:24 +0530370 return CMD_RET_FAILURE;
371 else
372 return CMD_RET_SUCCESS;
373}
374#endif
375
Alex Kiernanc232d142018-05-29 15:30:52 +0000376#if CONFIG_IS_ENABLED(MMC_WRITE)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200377static int do_mmc_write(cmd_tbl_t *cmdtp, int flag,
378 int argc, char * const argv[])
379{
380 struct mmc *mmc;
381 u32 blk, cnt, n;
382 void *addr;
383
384 if (argc != 4)
385 return CMD_RET_USAGE;
386
387 addr = (void *)simple_strtoul(argv[1], NULL, 16);
388 blk = simple_strtoul(argv[2], NULL, 16);
389 cnt = simple_strtoul(argv[3], NULL, 16);
390
Stephen Warren1ae24a52014-05-23 13:24:45 -0600391 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200392 if (!mmc)
393 return CMD_RET_FAILURE;
394
395 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
396 curr_device, blk, cnt);
397
398 if (mmc_getwp(mmc) == 1) {
399 printf("Error: card is write protected!\n");
400 return CMD_RET_FAILURE;
401 }
Simon Glassc40fdca2016-05-01 13:52:35 -0600402 n = blk_dwrite(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200403 printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
404
405 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
406}
407static int do_mmc_erase(cmd_tbl_t *cmdtp, int flag,
408 int argc, char * const argv[])
409{
410 struct mmc *mmc;
411 u32 blk, cnt, n;
412
413 if (argc != 3)
414 return CMD_RET_USAGE;
415
416 blk = simple_strtoul(argv[1], NULL, 16);
417 cnt = simple_strtoul(argv[2], NULL, 16);
418
Stephen Warren1ae24a52014-05-23 13:24:45 -0600419 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200420 if (!mmc)
421 return CMD_RET_FAILURE;
422
423 printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
424 curr_device, blk, cnt);
425
426 if (mmc_getwp(mmc) == 1) {
427 printf("Error: card is write protected!\n");
428 return CMD_RET_FAILURE;
429 }
Simon Glassc40fdca2016-05-01 13:52:35 -0600430 n = blk_derase(mmc_get_blk_desc(mmc), blk, cnt);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200431 printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
432
433 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
434}
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +0100435#endif
436
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200437static int do_mmc_rescan(cmd_tbl_t *cmdtp, int flag,
438 int argc, char * const argv[])
439{
440 struct mmc *mmc;
441
Stephen Warren941944e2014-05-23 13:24:46 -0600442 mmc = init_mmc_device(curr_device, true);
443 if (!mmc)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200444 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200445
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200446 return CMD_RET_SUCCESS;
447}
448static int do_mmc_part(cmd_tbl_t *cmdtp, int flag,
449 int argc, char * const argv[])
450{
Simon Glass4101f682016-02-29 15:25:34 -0700451 struct blk_desc *mmc_dev;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200452 struct mmc *mmc;
453
Stephen Warren1ae24a52014-05-23 13:24:45 -0600454 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200455 if (!mmc)
456 return CMD_RET_FAILURE;
457
Simon Glass3c457f42016-05-01 11:36:15 -0600458 mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200459 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700460 part_print(mmc_dev);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200461 return CMD_RET_SUCCESS;
462 }
463
464 puts("get mmc type error!\n");
465 return CMD_RET_FAILURE;
466}
467static int do_mmc_dev(cmd_tbl_t *cmdtp, int flag,
468 int argc, char * const argv[])
469{
Stephen Warren60dc58f2014-05-23 12:48:10 -0600470 int dev, part = 0, ret;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200471 struct mmc *mmc;
472
473 if (argc == 1) {
474 dev = curr_device;
475 } else if (argc == 2) {
476 dev = simple_strtoul(argv[1], NULL, 10);
477 } else if (argc == 3) {
478 dev = (int)simple_strtoul(argv[1], NULL, 10);
479 part = (int)simple_strtoul(argv[2], NULL, 10);
480 if (part > PART_ACCESS_MASK) {
481 printf("#part_num shouldn't be larger than %d\n",
482 PART_ACCESS_MASK);
483 return CMD_RET_FAILURE;
484 }
485 } else {
486 return CMD_RET_USAGE;
487 }
488
Stephen Warrena5710922014-05-23 13:24:47 -0600489 mmc = init_mmc_device(dev, true);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200490 if (!mmc)
491 return CMD_RET_FAILURE;
492
Simon Glass69f45cd2016-05-01 13:52:29 -0600493 ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part);
Stephen Warren60dc58f2014-05-23 12:48:10 -0600494 printf("switch to partitions #%d, %s\n",
495 part, (!ret) ? "OK" : "ERROR");
496 if (ret)
497 return 1;
498
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200499 curr_device = dev;
500 if (mmc->part_config == MMCPART_NOAVAILABLE)
501 printf("mmc%d is current device\n", curr_device);
502 else
503 printf("mmc%d(part %d) is current device\n",
Simon Glassc40fdca2016-05-01 13:52:35 -0600504 curr_device, mmc_get_blk_desc(mmc)->hwpart);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200505
506 return CMD_RET_SUCCESS;
507}
508static int do_mmc_list(cmd_tbl_t *cmdtp, int flag,
509 int argc, char * const argv[])
510{
511 print_mmc_devices('\n');
512 return CMD_RET_SUCCESS;
513}
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100514
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100515#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100516static int parse_hwpart_user(struct mmc_hwpart_conf *pconf,
517 int argc, char * const argv[])
518{
519 int i = 0;
520
521 memset(&pconf->user, 0, sizeof(pconf->user));
522
523 while (i < argc) {
524 if (!strcmp(argv[i], "enh")) {
525 if (i + 2 >= argc)
526 return -1;
527 pconf->user.enh_start =
528 simple_strtoul(argv[i+1], NULL, 10);
529 pconf->user.enh_size =
530 simple_strtoul(argv[i+2], NULL, 10);
531 i += 3;
532 } else if (!strcmp(argv[i], "wrrel")) {
533 if (i + 1 >= argc)
534 return -1;
535 pconf->user.wr_rel_change = 1;
536 if (!strcmp(argv[i+1], "on"))
537 pconf->user.wr_rel_set = 1;
538 else if (!strcmp(argv[i+1], "off"))
539 pconf->user.wr_rel_set = 0;
540 else
541 return -1;
542 i += 2;
543 } else {
544 break;
545 }
546 }
547 return i;
548}
549
550static int parse_hwpart_gp(struct mmc_hwpart_conf *pconf, int pidx,
551 int argc, char * const argv[])
552{
553 int i;
554
555 memset(&pconf->gp_part[pidx], 0, sizeof(pconf->gp_part[pidx]));
556
557 if (1 >= argc)
558 return -1;
559 pconf->gp_part[pidx].size = simple_strtoul(argv[0], NULL, 10);
560
561 i = 1;
562 while (i < argc) {
563 if (!strcmp(argv[i], "enh")) {
564 pconf->gp_part[pidx].enhanced = 1;
565 i += 1;
566 } else if (!strcmp(argv[i], "wrrel")) {
567 if (i + 1 >= argc)
568 return -1;
569 pconf->gp_part[pidx].wr_rel_change = 1;
570 if (!strcmp(argv[i+1], "on"))
571 pconf->gp_part[pidx].wr_rel_set = 1;
572 else if (!strcmp(argv[i+1], "off"))
573 pconf->gp_part[pidx].wr_rel_set = 0;
574 else
575 return -1;
576 i += 2;
577 } else {
578 break;
579 }
580 }
581 return i;
582}
583
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100584static int do_mmc_hwpartition(cmd_tbl_t *cmdtp, int flag,
585 int argc, char * const argv[])
586{
587 struct mmc *mmc;
588 struct mmc_hwpart_conf pconf = { };
589 enum mmc_hwpart_conf_mode mode = MMC_HWPART_CONF_CHECK;
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100590 int i, r, pidx;
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100591
592 mmc = init_mmc_device(curr_device, false);
593 if (!mmc)
594 return CMD_RET_FAILURE;
595
596 if (argc < 1)
597 return CMD_RET_USAGE;
598 i = 1;
599 while (i < argc) {
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100600 if (!strcmp(argv[i], "user")) {
601 i++;
602 r = parse_hwpart_user(&pconf, argc-i, &argv[i]);
603 if (r < 0)
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100604 return CMD_RET_USAGE;
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100605 i += r;
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100606 } else if (!strncmp(argv[i], "gp", 2) &&
607 strlen(argv[i]) == 3 &&
608 argv[i][2] >= '1' && argv[i][2] <= '4') {
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100609 pidx = argv[i][2] - '1';
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100610 i++;
611 r = parse_hwpart_gp(&pconf, pidx, argc-i, &argv[i]);
612 if (r < 0)
613 return CMD_RET_USAGE;
614 i += r;
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100615 } else if (!strcmp(argv[i], "check")) {
616 mode = MMC_HWPART_CONF_CHECK;
617 i++;
618 } else if (!strcmp(argv[i], "set")) {
619 mode = MMC_HWPART_CONF_SET;
620 i++;
621 } else if (!strcmp(argv[i], "complete")) {
622 mode = MMC_HWPART_CONF_COMPLETE;
623 i++;
624 } else {
625 return CMD_RET_USAGE;
626 }
627 }
628
629 puts("Partition configuration:\n");
630 if (pconf.user.enh_size) {
631 puts("\tUser Enhanced Start: ");
632 print_size(((u64)pconf.user.enh_start) << 9, "\n");
633 puts("\tUser Enhanced Size: ");
634 print_size(((u64)pconf.user.enh_size) << 9, "\n");
635 } else {
636 puts("\tNo enhanced user data area\n");
637 }
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100638 if (pconf.user.wr_rel_change)
639 printf("\tUser partition write reliability: %s\n",
640 pconf.user.wr_rel_set ? "on" : "off");
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100641 for (pidx = 0; pidx < 4; pidx++) {
642 if (pconf.gp_part[pidx].size) {
643 printf("\tGP%i Capacity: ", pidx+1);
644 print_size(((u64)pconf.gp_part[pidx].size) << 9,
645 pconf.gp_part[pidx].enhanced ?
646 " ENH\n" : "\n");
647 } else {
648 printf("\tNo GP%i partition\n", pidx+1);
649 }
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100650 if (pconf.gp_part[pidx].wr_rel_change)
651 printf("\tGP%i write reliability: %s\n", pidx+1,
652 pconf.gp_part[pidx].wr_rel_set ? "on" : "off");
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100653 }
654
655 if (!mmc_hwpart_config(mmc, &pconf, mode)) {
656 if (mode == MMC_HWPART_CONF_COMPLETE)
657 puts("Partitioning successful, "
658 "power-cycle to make effective\n");
659 return CMD_RET_SUCCESS;
660 } else {
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100661 puts("Failed!\n");
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100662 return CMD_RET_FAILURE;
663 }
664}
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100665#endif
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100666
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200667#ifdef CONFIG_SUPPORT_EMMC_BOOT
668static int do_mmc_bootbus(cmd_tbl_t *cmdtp, int flag,
669 int argc, char * const argv[])
670{
671 int dev;
672 struct mmc *mmc;
673 u8 width, reset, mode;
674
675 if (argc != 5)
676 return CMD_RET_USAGE;
677 dev = simple_strtoul(argv[1], NULL, 10);
678 width = simple_strtoul(argv[2], NULL, 10);
679 reset = simple_strtoul(argv[3], NULL, 10);
680 mode = simple_strtoul(argv[4], NULL, 10);
681
Stephen Warren1ae24a52014-05-23 13:24:45 -0600682 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200683 if (!mmc)
684 return CMD_RET_FAILURE;
685
686 if (IS_SD(mmc)) {
687 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
688 return CMD_RET_FAILURE;
689 }
690
691 /* acknowledge to be sent during boot operation */
692 return mmc_set_boot_bus_width(mmc, width, reset, mode);
693}
694static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
695 int argc, char * const argv[])
696{
697 int dev;
698 struct mmc *mmc;
699 u32 bootsize, rpmbsize;
700
701 if (argc != 4)
702 return CMD_RET_USAGE;
703 dev = simple_strtoul(argv[1], NULL, 10);
704 bootsize = simple_strtoul(argv[2], NULL, 10);
705 rpmbsize = simple_strtoul(argv[3], NULL, 10);
706
Stephen Warren1ae24a52014-05-23 13:24:45 -0600707 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200708 if (!mmc)
709 return CMD_RET_FAILURE;
710
711 if (IS_SD(mmc)) {
712 printf("It is not a EMMC device\n");
713 return CMD_RET_FAILURE;
714 }
715
716 if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
717 printf("EMMC boot partition Size change Failed.\n");
718 return CMD_RET_FAILURE;
719 }
720
721 printf("EMMC boot partition Size %d MB\n", bootsize);
722 printf("EMMC RPMB partition Size %d MB\n", rpmbsize);
723 return CMD_RET_SUCCESS;
724}
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200725
726static int mmc_partconf_print(struct mmc *mmc)
727{
728 u8 ack, access, part;
729
730 if (mmc->part_config == MMCPART_NOAVAILABLE) {
731 printf("No part_config info for ver. 0x%x\n", mmc->version);
732 return CMD_RET_FAILURE;
733 }
734
735 access = EXT_CSD_EXTRACT_PARTITION_ACCESS(mmc->part_config);
736 ack = EXT_CSD_EXTRACT_BOOT_ACK(mmc->part_config);
737 part = EXT_CSD_EXTRACT_BOOT_PART(mmc->part_config);
738
739 printf("EXT_CSD[179], PARTITION_CONFIG:\n"
740 "BOOT_ACK: 0x%x\n"
741 "BOOT_PARTITION_ENABLE: 0x%x\n"
742 "PARTITION_ACCESS: 0x%x\n", ack, part, access);
743
744 return CMD_RET_SUCCESS;
745}
746
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200747static int do_mmc_partconf(cmd_tbl_t *cmdtp, int flag,
748 int argc, char * const argv[])
749{
750 int dev;
751 struct mmc *mmc;
752 u8 ack, part_num, access;
753
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200754 if (argc != 2 && argc != 5)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200755 return CMD_RET_USAGE;
756
757 dev = simple_strtoul(argv[1], NULL, 10);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200758
Stephen Warren1ae24a52014-05-23 13:24:45 -0600759 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200760 if (!mmc)
761 return CMD_RET_FAILURE;
762
763 if (IS_SD(mmc)) {
764 puts("PARTITION_CONFIG only exists on eMMC\n");
765 return CMD_RET_FAILURE;
766 }
767
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200768 if (argc == 2)
769 return mmc_partconf_print(mmc);
770
771 ack = simple_strtoul(argv[2], NULL, 10);
772 part_num = simple_strtoul(argv[3], NULL, 10);
773 access = simple_strtoul(argv[4], NULL, 10);
774
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200775 /* acknowledge to be sent during boot operation */
776 return mmc_set_part_conf(mmc, ack, part_num, access);
777}
778static int do_mmc_rst_func(cmd_tbl_t *cmdtp, int flag,
779 int argc, char * const argv[])
780{
781 int dev;
782 struct mmc *mmc;
783 u8 enable;
784
785 /*
786 * Set the RST_n_ENABLE bit of RST_n_FUNCTION
787 * The only valid values are 0x0, 0x1 and 0x2 and writing
788 * a value of 0x1 or 0x2 sets the value permanently.
789 */
790 if (argc != 3)
791 return CMD_RET_USAGE;
792
793 dev = simple_strtoul(argv[1], NULL, 10);
794 enable = simple_strtoul(argv[2], NULL, 10);
795
Peng Fan678e9312015-11-25 17:16:21 +0800796 if (enable > 2) {
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200797 puts("Invalid RST_n_ENABLE value\n");
798 return CMD_RET_USAGE;
799 }
800
Stephen Warren1ae24a52014-05-23 13:24:45 -0600801 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200802 if (!mmc)
803 return CMD_RET_FAILURE;
804
805 if (IS_SD(mmc)) {
806 puts("RST_n_FUNCTION only exists on eMMC\n");
807 return CMD_RET_FAILURE;
808 }
809
810 return mmc_set_rst_n_function(mmc, enable);
811}
812#endif
813static int do_mmc_setdsr(cmd_tbl_t *cmdtp, int flag,
814 int argc, char * const argv[])
815{
816 struct mmc *mmc;
817 u32 val;
818 int ret;
819
820 if (argc != 2)
821 return CMD_RET_USAGE;
Markus Niebel84c1dfe2017-02-03 15:26:36 +0100822 val = simple_strtoul(argv[1], NULL, 16);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200823
824 mmc = find_mmc_device(curr_device);
825 if (!mmc) {
826 printf("no mmc device at slot %x\n", curr_device);
827 return CMD_RET_FAILURE;
828 }
829 ret = mmc_set_dsr(mmc, val);
830 printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
831 if (!ret) {
832 mmc->has_init = 0;
833 if (mmc_init(mmc))
834 return CMD_RET_FAILURE;
835 else
836 return CMD_RET_SUCCESS;
837 }
838 return ret;
839}
840
Tomas Melincd3d4882016-11-25 11:01:03 +0200841#ifdef CONFIG_CMD_BKOPS_ENABLE
842static int do_mmc_bkops_enable(cmd_tbl_t *cmdtp, int flag,
843 int argc, char * const argv[])
844{
845 int dev;
846 struct mmc *mmc;
847
848 if (argc != 2)
849 return CMD_RET_USAGE;
850
851 dev = simple_strtoul(argv[1], NULL, 10);
852
853 mmc = init_mmc_device(dev, false);
854 if (!mmc)
855 return CMD_RET_FAILURE;
856
857 if (IS_SD(mmc)) {
858 puts("BKOPS_EN only exists on eMMC\n");
859 return CMD_RET_FAILURE;
860 }
861
862 return mmc_set_bkops_enable(mmc);
863}
864#endif
865
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200866static cmd_tbl_t cmd_mmc[] = {
867 U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""),
868 U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""),
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +0100869#if CONFIG_IS_ENABLED(MMC_WRITE)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200870 U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""),
871 U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""),
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +0100872#endif
Alex Kiernanc232d142018-05-29 15:30:52 +0000873#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
874 U_BOOT_CMD_MKENT(swrite, 3, 0, do_mmc_sparse_write, "", ""),
875#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200876 U_BOOT_CMD_MKENT(rescan, 1, 1, do_mmc_rescan, "", ""),
877 U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""),
878 U_BOOT_CMD_MKENT(dev, 3, 0, do_mmc_dev, "", ""),
879 U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100880#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100881 U_BOOT_CMD_MKENT(hwpartition, 28, 0, do_mmc_hwpartition, "", ""),
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100882#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200883#ifdef CONFIG_SUPPORT_EMMC_BOOT
884 U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
Wally Yehfa7b8852014-09-25 23:00:16 +0800885 U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200886 U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
887 U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
888#endif
Alex Kiernan5a7b11e2018-05-08 04:43:31 +0000889#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200890 U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
891#endif
892 U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
Tomas Melincd3d4882016-11-25 11:01:03 +0200893#ifdef CONFIG_CMD_BKOPS_ENABLE
894 U_BOOT_CMD_MKENT(bkops-enable, 2, 0, do_mmc_bkops_enable, "", ""),
895#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200896};
Andy Fleming272cc702008-10-30 16:41:01 -0500897
Kim Phillips088f1b12012-10-29 13:34:31 +0000898static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Fleming272cc702008-10-30 16:41:01 -0500899{
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200900 cmd_tbl_t *cp;
Lei Wen6be95cc2011-06-22 17:03:30 +0000901
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200902 cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));
903
904 /* Drop the mmc command */
905 argc--;
906 argv++;
907
908 if (cp == NULL || argc > cp->maxargs)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000909 return CMD_RET_USAGE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200910 if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
911 return CMD_RET_SUCCESS;
Andy Fleming272cc702008-10-30 16:41:01 -0500912
Lei Wenea6ebe22011-05-02 16:26:25 +0000913 if (curr_device < 0) {
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200914 if (get_mmc_num() > 0) {
Lei Wenea6ebe22011-05-02 16:26:25 +0000915 curr_device = 0;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200916 } else {
Lei Wenea6ebe22011-05-02 16:26:25 +0000917 puts("No MMC device available\n");
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200918 return CMD_RET_FAILURE;
Lei Wenea6ebe22011-05-02 16:26:25 +0000919 }
920 }
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200921 return cp->cmd(cmdtp, flag, argc, argv);
Andy Fleming272cc702008-10-30 16:41:01 -0500922}
923
924U_BOOT_CMD(
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100925 mmc, 29, 1, do_mmcops,
Mike Frysinger852dbfd2009-03-23 22:27:34 -0400926 "MMC sub system",
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200927 "info - display info of the current MMC device\n"
928 "mmc read addr blk# cnt\n"
Lei Wenea6ebe22011-05-02 16:26:25 +0000929 "mmc write addr blk# cnt\n"
Alex Kiernanc232d142018-05-29 15:30:52 +0000930#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
Jassi Brar732bc7c2018-04-06 12:05:24 +0530931 "mmc swrite addr blk#\n"
932#endif
Lei Wene6f99a52011-06-22 17:03:31 +0000933 "mmc erase blk# cnt\n"
Lei Wenea6ebe22011-05-02 16:26:25 +0000934 "mmc rescan\n"
935 "mmc part - lists available partition on current mmc device\n"
Lei Wenbc897b12011-05-02 16:26:26 +0000936 "mmc dev [dev] [part] - show or set current mmc device [partition]\n"
Amar2a91c912013-04-27 11:43:00 +0530937 "mmc list - lists available devices\n"
Alex Kiernan84593672018-06-11 16:20:09 +0000938#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100939 "mmc hwpartition [args...] - does hardware partitioning\n"
940 " arguments (sizes in 512-byte blocks):\n"
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100941 " [user [enh start cnt] [wrrel {on|off}]] - sets user data area attributes\n"
942 " [gp1|gp2|gp3|gp4 cnt [enh] [wrrel {on|off}]] - general purpose partition\n"
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100943 " [check|set|complete] - mode, complete set partitioning completed\n"
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100944 " WARNING: Partitioning is a write-once setting once it is set to complete.\n"
945 " Power cycling is required to initialize partitions after set to complete.\n"
Alex Kiernan84593672018-06-11 16:20:09 +0000946#endif
Amar2a91c912013-04-27 11:43:00 +0530947#ifdef CONFIG_SUPPORT_EMMC_BOOT
Tom Rini5a99b9d2014-02-05 10:24:22 -0500948 "mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
949 " - Set the BOOT_BUS_WIDTH field of the specified device\n"
Tom Rinif1fd9572014-02-05 10:24:20 -0500950 "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
951 " - Change sizes of boot and RPMB partitions of specified device\n"
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200952 "mmc partconf dev [boot_ack boot_partition partition_access]\n"
953 " - Show or change the bits of the PARTITION_CONFIG field of the specified device\n"
Tom Rini33ace362014-02-07 14:15:20 -0500954 "mmc rst-function dev value\n"
955 " - Change the RST_n_FUNCTION field of the specified device\n"
956 " WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
Dirk Behme3511b4e2009-02-18 19:59:39 +0100957#endif
Alex Kiernan5a7b11e2018-05-08 04:43:31 +0000958#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200959 "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
960 "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
961 "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
962 "mmc rpmb counter - read the value of the write counter\n"
963#endif
964 "mmc setdsr <value> - set DSR register value\n"
Tomas Melincd3d4882016-11-25 11:01:03 +0200965#ifdef CONFIG_CMD_BKOPS_ENABLE
966 "mmc bkops-enable <dev> - enable background operations handshake on device\n"
967 " WARNING: This is a write-once setting.\n"
968#endif
Amar2a91c912013-04-27 11:43:00 +0530969 );
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200970
971/* Old command kept for compatibility. Same as 'mmc info' */
972U_BOOT_CMD(
973 mmcinfo, 1, 0, do_mmcinfo,
974 "display MMC info",
975 "- display info of the current MMC device"
976);