3 * Kyle Harris, kharris@nexus-tech.net
5 * SPDX-License-Identifier: GPL-2.0+
13 static int curr_device
= -1;
14 #ifndef CONFIG_GENERIC_MMC
15 int do_mmc (cmd_tbl_t
*cmdtp
, int flag
, int argc
, char * const argv
[])
22 if (strcmp(argv
[1], "init") == 0) {
28 } else if (argc
== 3) {
29 dev
= (int)simple_strtoul(argv
[2], NULL
, 10);
34 if (mmc_legacy_init(dev
) != 0) {
35 puts("No MMC card found\n");
40 printf("mmc%d is available\n", curr_device
);
41 } else if (strcmp(argv
[1], "device") == 0) {
43 if (curr_device
< 0) {
44 puts("No MMC device available\n");
47 } else if (argc
== 3) {
48 dev
= (int)simple_strtoul(argv
[2], NULL
, 10);
50 #ifdef CONFIG_SYS_MMC_SET_DEV
51 if (mmc_set_dev(dev
) != 0)
59 printf("mmc%d is current device\n", curr_device
);
70 "init [dev] - init MMC sub system\n"
71 "mmc device [dev] - show or set current device"
73 #else /* !CONFIG_GENERIC_MMC */
75 static void print_mmcinfo(struct mmc
*mmc
)
79 printf("Device: %s\n", mmc
->cfg
->name
);
80 printf("Manufacturer ID: %x\n", mmc
->cid
[0] >> 24);
81 printf("OEM: %x\n", (mmc
->cid
[0] >> 8) & 0xffff);
82 printf("Name: %c%c%c%c%c \n", mmc
->cid
[0] & 0xff,
83 (mmc
->cid
[1] >> 24), (mmc
->cid
[1] >> 16) & 0xff,
84 (mmc
->cid
[1] >> 8) & 0xff, mmc
->cid
[1] & 0xff);
86 printf("Tran Speed: %d\n", mmc
->tran_speed
);
87 printf("Rd Block Len: %d\n", mmc
->read_bl_len
);
89 printf("%s version %d.%d", IS_SD(mmc
) ? "SD" : "MMC",
90 EXTRACT_SDMMC_MAJOR_VERSION(mmc
->version
),
91 EXTRACT_SDMMC_MINOR_VERSION(mmc
->version
));
92 if (EXTRACT_SDMMC_CHANGE_VERSION(mmc
->version
) != 0)
93 printf(".%d", EXTRACT_SDMMC_CHANGE_VERSION(mmc
->version
));
96 printf("High Capacity: %s\n", mmc
->high_capacity
? "Yes" : "No");
98 print_size(mmc
->capacity
, "\n");
100 printf("Bus Width: %d-bit%s\n", mmc
->bus_width
,
101 mmc
->ddr_mode
? " DDR" : "");
103 puts("Erase Group Size: ");
104 print_size(((u64
)mmc
->erase_grp_size
) << 9, "\n");
106 if (!IS_SD(mmc
) && mmc
->version
>= MMC_VERSION_4_41
) {
107 bool has_enh
= (mmc
->part_support
& ENHNCD_SUPPORT
) != 0;
108 bool usr_enh
= has_enh
&& (mmc
->part_attr
& EXT_CSD_ENH_USR
);
110 puts("HC WP Group Size: ");
111 print_size(((u64
)mmc
->hc_wp_grp_size
) << 9, "\n");
113 puts("User Capacity: ");
114 print_size(mmc
->capacity_user
, usr_enh
? " ENH" : "");
115 if (mmc
->wr_rel_set
& EXT_CSD_WR_DATA_REL_USR
)
120 puts("User Enhanced Start: ");
121 print_size(mmc
->enh_user_start
, "\n");
122 puts("User Enhanced Size: ");
123 print_size(mmc
->enh_user_size
, "\n");
125 puts("Boot Capacity: ");
126 print_size(mmc
->capacity_boot
, has_enh
? " ENH\n" : "\n");
127 puts("RPMB Capacity: ");
128 print_size(mmc
->capacity_rpmb
, has_enh
? " ENH\n" : "\n");
130 for (i
= 0; i
< ARRAY_SIZE(mmc
->capacity_gp
); i
++) {
131 bool is_enh
= has_enh
&&
132 (mmc
->part_attr
& EXT_CSD_ENH_GP(i
));
133 if (mmc
->capacity_gp
[i
]) {
134 printf("GP%i Capacity: ", i
+1);
135 print_size(mmc
->capacity_gp
[i
],
136 is_enh
? " ENH" : "");
137 if (mmc
->wr_rel_set
& EXT_CSD_WR_DATA_REL_GP(i
))
145 static struct mmc
*init_mmc_device(int dev
, bool force_init
)
148 mmc
= find_mmc_device(dev
);
150 printf("no mmc device at slot %x\n", dev
);
159 static int do_mmcinfo(cmd_tbl_t
*cmdtp
, int flag
, int argc
, char * const argv
[])
163 if (curr_device
< 0) {
164 if (get_mmc_num() > 0)
167 puts("No MMC device available\n");
172 mmc
= init_mmc_device(curr_device
, false);
174 return CMD_RET_FAILURE
;
177 return CMD_RET_SUCCESS
;
180 #ifdef CONFIG_SUPPORT_EMMC_RPMB
181 static int confirm_key_prog(void)
183 puts("Warning: Programming authentication key can be done only once !\n"
184 " Use this command only if you are sure of what you are doing,\n"
185 "Really perform the key programming? <y/N> ");
189 puts("Authentication key programming aborted\n");
192 static int do_mmcrpmb_key(cmd_tbl_t
*cmdtp
, int flag
,
193 int argc
, char * const argv
[])
196 struct mmc
*mmc
= find_mmc_device(curr_device
);
199 return CMD_RET_USAGE
;
201 key_addr
= (void *)simple_strtoul(argv
[1], NULL
, 16);
202 if (!confirm_key_prog())
203 return CMD_RET_FAILURE
;
204 if (mmc_rpmb_set_key(mmc
, key_addr
)) {
205 printf("ERROR - Key already programmed ?\n");
206 return CMD_RET_FAILURE
;
208 return CMD_RET_SUCCESS
;
210 static int do_mmcrpmb_read(cmd_tbl_t
*cmdtp
, int flag
,
211 int argc
, char * const argv
[])
216 void *key_addr
= NULL
;
217 struct mmc
*mmc
= find_mmc_device(curr_device
);
220 return CMD_RET_USAGE
;
222 addr
= (void *)simple_strtoul(argv
[1], NULL
, 16);
223 blk
= simple_strtoul(argv
[2], NULL
, 16);
224 cnt
= simple_strtoul(argv
[3], NULL
, 16);
227 key_addr
= (void *)simple_strtoul(argv
[4], NULL
, 16);
229 printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
230 curr_device
, blk
, cnt
);
231 n
= mmc_rpmb_read(mmc
, addr
, blk
, cnt
, key_addr
);
233 printf("%d RPMB blocks read: %s\n", n
, (n
== cnt
) ? "OK" : "ERROR");
235 return CMD_RET_FAILURE
;
236 return CMD_RET_SUCCESS
;
238 static int do_mmcrpmb_write(cmd_tbl_t
*cmdtp
, int flag
,
239 int argc
, char * const argv
[])
245 struct mmc
*mmc
= find_mmc_device(curr_device
);
248 return CMD_RET_USAGE
;
250 addr
= (void *)simple_strtoul(argv
[1], NULL
, 16);
251 blk
= simple_strtoul(argv
[2], NULL
, 16);
252 cnt
= simple_strtoul(argv
[3], NULL
, 16);
253 key_addr
= (void *)simple_strtoul(argv
[4], NULL
, 16);
255 printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
256 curr_device
, blk
, cnt
);
257 n
= mmc_rpmb_write(mmc
, addr
, blk
, cnt
, key_addr
);
259 printf("%d RPMB blocks written: %s\n", n
, (n
== cnt
) ? "OK" : "ERROR");
261 return CMD_RET_FAILURE
;
262 return CMD_RET_SUCCESS
;
264 static int do_mmcrpmb_counter(cmd_tbl_t
*cmdtp
, int flag
,
265 int argc
, char * const argv
[])
267 unsigned long counter
;
268 struct mmc
*mmc
= find_mmc_device(curr_device
);
270 if (mmc_rpmb_get_counter(mmc
, &counter
))
271 return CMD_RET_FAILURE
;
272 printf("RPMB Write counter= %lx\n", counter
);
273 return CMD_RET_SUCCESS
;
276 static cmd_tbl_t cmd_rpmb
[] = {
277 U_BOOT_CMD_MKENT(key
, 2, 0, do_mmcrpmb_key
, "", ""),
278 U_BOOT_CMD_MKENT(read
, 5, 1, do_mmcrpmb_read
, "", ""),
279 U_BOOT_CMD_MKENT(write
, 5, 0, do_mmcrpmb_write
, "", ""),
280 U_BOOT_CMD_MKENT(counter
, 1, 1, do_mmcrpmb_counter
, "", ""),
283 static int do_mmcrpmb(cmd_tbl_t
*cmdtp
, int flag
,
284 int argc
, char * const argv
[])
291 cp
= find_cmd_tbl(argv
[1], cmd_rpmb
, ARRAY_SIZE(cmd_rpmb
));
293 /* Drop the rpmb subcommand */
297 if (cp
== NULL
|| argc
> cp
->maxargs
)
298 return CMD_RET_USAGE
;
299 if (flag
== CMD_FLAG_REPEAT
&& !cp
->repeatable
)
300 return CMD_RET_SUCCESS
;
302 mmc
= init_mmc_device(curr_device
, false);
304 return CMD_RET_FAILURE
;
306 if (!(mmc
->version
& MMC_VERSION_MMC
)) {
307 printf("It is not a EMMC device\n");
308 return CMD_RET_FAILURE
;
310 if (mmc
->version
< MMC_VERSION_4_41
) {
311 printf("RPMB not supported before version 4.41\n");
312 return CMD_RET_FAILURE
;
314 /* Switch to the RPMB partition */
315 original_part
= mmc
->block_dev
.part_num
;
316 if (mmc_select_hwpart(curr_device
, MMC_PART_RPMB
) != 0)
317 return CMD_RET_FAILURE
;
318 ret
= cp
->cmd(cmdtp
, flag
, argc
, argv
);
320 /* Return to original partition */
321 if (mmc_select_hwpart(curr_device
, original_part
) != 0)
322 return CMD_RET_FAILURE
;
327 static int do_mmc_read(cmd_tbl_t
*cmdtp
, int flag
,
328 int argc
, char * const argv
[])
335 return CMD_RET_USAGE
;
337 addr
= (void *)simple_strtoul(argv
[1], NULL
, 16);
338 blk
= simple_strtoul(argv
[2], NULL
, 16);
339 cnt
= simple_strtoul(argv
[3], NULL
, 16);
341 mmc
= init_mmc_device(curr_device
, false);
343 return CMD_RET_FAILURE
;
345 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
346 curr_device
, blk
, cnt
);
348 n
= mmc
->block_dev
.block_read(&mmc
->block_dev
, blk
, cnt
, addr
);
349 /* flush cache after read */
350 flush_cache((ulong
)addr
, cnt
* 512); /* FIXME */
351 printf("%d blocks read: %s\n", n
, (n
== cnt
) ? "OK" : "ERROR");
353 return (n
== cnt
) ? CMD_RET_SUCCESS
: CMD_RET_FAILURE
;
355 static int do_mmc_write(cmd_tbl_t
*cmdtp
, int flag
,
356 int argc
, char * const argv
[])
363 return CMD_RET_USAGE
;
365 addr
= (void *)simple_strtoul(argv
[1], NULL
, 16);
366 blk
= simple_strtoul(argv
[2], NULL
, 16);
367 cnt
= simple_strtoul(argv
[3], NULL
, 16);
369 mmc
= init_mmc_device(curr_device
, false);
371 return CMD_RET_FAILURE
;
373 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
374 curr_device
, blk
, cnt
);
376 if (mmc_getwp(mmc
) == 1) {
377 printf("Error: card is write protected!\n");
378 return CMD_RET_FAILURE
;
380 n
= mmc
->block_dev
.block_write(&mmc
->block_dev
, blk
, cnt
, addr
);
381 printf("%d blocks written: %s\n", n
, (n
== cnt
) ? "OK" : "ERROR");
383 return (n
== cnt
) ? CMD_RET_SUCCESS
: CMD_RET_FAILURE
;
385 static int do_mmc_erase(cmd_tbl_t
*cmdtp
, int flag
,
386 int argc
, char * const argv
[])
392 return CMD_RET_USAGE
;
394 blk
= simple_strtoul(argv
[1], NULL
, 16);
395 cnt
= simple_strtoul(argv
[2], NULL
, 16);
397 mmc
= init_mmc_device(curr_device
, false);
399 return CMD_RET_FAILURE
;
401 printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
402 curr_device
, blk
, cnt
);
404 if (mmc_getwp(mmc
) == 1) {
405 printf("Error: card is write protected!\n");
406 return CMD_RET_FAILURE
;
408 n
= mmc
->block_dev
.block_erase(&mmc
->block_dev
, blk
, cnt
);
409 printf("%d blocks erased: %s\n", n
, (n
== cnt
) ? "OK" : "ERROR");
411 return (n
== cnt
) ? CMD_RET_SUCCESS
: CMD_RET_FAILURE
;
413 static int do_mmc_rescan(cmd_tbl_t
*cmdtp
, int flag
,
414 int argc
, char * const argv
[])
418 mmc
= init_mmc_device(curr_device
, true);
420 return CMD_RET_FAILURE
;
422 return CMD_RET_SUCCESS
;
424 static int do_mmc_part(cmd_tbl_t
*cmdtp
, int flag
,
425 int argc
, char * const argv
[])
427 block_dev_desc_t
*mmc_dev
;
430 mmc
= init_mmc_device(curr_device
, false);
432 return CMD_RET_FAILURE
;
434 mmc_dev
= mmc_get_dev(curr_device
);
435 if (mmc_dev
!= NULL
&& mmc_dev
->type
!= DEV_TYPE_UNKNOWN
) {
437 return CMD_RET_SUCCESS
;
440 puts("get mmc type error!\n");
441 return CMD_RET_FAILURE
;
443 static int do_mmc_dev(cmd_tbl_t
*cmdtp
, int flag
,
444 int argc
, char * const argv
[])
446 int dev
, part
= 0, ret
;
451 } else if (argc
== 2) {
452 dev
= simple_strtoul(argv
[1], NULL
, 10);
453 } else if (argc
== 3) {
454 dev
= (int)simple_strtoul(argv
[1], NULL
, 10);
455 part
= (int)simple_strtoul(argv
[2], NULL
, 10);
456 if (part
> PART_ACCESS_MASK
) {
457 printf("#part_num shouldn't be larger than %d\n",
459 return CMD_RET_FAILURE
;
462 return CMD_RET_USAGE
;
465 mmc
= init_mmc_device(dev
, true);
467 return CMD_RET_FAILURE
;
469 ret
= mmc_select_hwpart(dev
, part
);
470 printf("switch to partitions #%d, %s\n",
471 part
, (!ret
) ? "OK" : "ERROR");
476 if (mmc
->part_config
== MMCPART_NOAVAILABLE
)
477 printf("mmc%d is current device\n", curr_device
);
479 printf("mmc%d(part %d) is current device\n",
480 curr_device
, mmc
->block_dev
.hwpart
);
482 return CMD_RET_SUCCESS
;
484 static int do_mmc_list(cmd_tbl_t
*cmdtp
, int flag
,
485 int argc
, char * const argv
[])
487 print_mmc_devices('\n');
488 return CMD_RET_SUCCESS
;
491 static int parse_hwpart_user(struct mmc_hwpart_conf
*pconf
,
492 int argc
, char * const argv
[])
496 memset(&pconf
->user
, 0, sizeof(pconf
->user
));
499 if (!strcmp(argv
[i
], "enh")) {
502 pconf
->user
.enh_start
=
503 simple_strtoul(argv
[i
+1], NULL
, 10);
504 pconf
->user
.enh_size
=
505 simple_strtoul(argv
[i
+2], NULL
, 10);
507 } else if (!strcmp(argv
[i
], "wrrel")) {
510 pconf
->user
.wr_rel_change
= 1;
511 if (!strcmp(argv
[i
+1], "on"))
512 pconf
->user
.wr_rel_set
= 1;
513 else if (!strcmp(argv
[i
+1], "off"))
514 pconf
->user
.wr_rel_set
= 0;
525 static int parse_hwpart_gp(struct mmc_hwpart_conf
*pconf
, int pidx
,
526 int argc
, char * const argv
[])
530 memset(&pconf
->gp_part
[pidx
], 0, sizeof(pconf
->gp_part
[pidx
]));
534 pconf
->gp_part
[pidx
].size
= simple_strtoul(argv
[0], NULL
, 10);
538 if (!strcmp(argv
[i
], "enh")) {
539 pconf
->gp_part
[pidx
].enhanced
= 1;
541 } else if (!strcmp(argv
[i
], "wrrel")) {
544 pconf
->gp_part
[pidx
].wr_rel_change
= 1;
545 if (!strcmp(argv
[i
+1], "on"))
546 pconf
->gp_part
[pidx
].wr_rel_set
= 1;
547 else if (!strcmp(argv
[i
+1], "off"))
548 pconf
->gp_part
[pidx
].wr_rel_set
= 0;
559 static int do_mmc_hwpartition(cmd_tbl_t
*cmdtp
, int flag
,
560 int argc
, char * const argv
[])
563 struct mmc_hwpart_conf pconf
= { };
564 enum mmc_hwpart_conf_mode mode
= MMC_HWPART_CONF_CHECK
;
567 mmc
= init_mmc_device(curr_device
, false);
569 return CMD_RET_FAILURE
;
572 return CMD_RET_USAGE
;
575 if (!strcmp(argv
[i
], "user")) {
577 r
= parse_hwpart_user(&pconf
, argc
-i
, &argv
[i
]);
579 return CMD_RET_USAGE
;
581 } else if (!strncmp(argv
[i
], "gp", 2) &&
582 strlen(argv
[i
]) == 3 &&
583 argv
[i
][2] >= '1' && argv
[i
][2] <= '4') {
584 pidx
= argv
[i
][2] - '1';
586 r
= parse_hwpart_gp(&pconf
, pidx
, argc
-i
, &argv
[i
]);
588 return CMD_RET_USAGE
;
590 } else if (!strcmp(argv
[i
], "check")) {
591 mode
= MMC_HWPART_CONF_CHECK
;
593 } else if (!strcmp(argv
[i
], "set")) {
594 mode
= MMC_HWPART_CONF_SET
;
596 } else if (!strcmp(argv
[i
], "complete")) {
597 mode
= MMC_HWPART_CONF_COMPLETE
;
600 return CMD_RET_USAGE
;
604 puts("Partition configuration:\n");
605 if (pconf
.user
.enh_size
) {
606 puts("\tUser Enhanced Start: ");
607 print_size(((u64
)pconf
.user
.enh_start
) << 9, "\n");
608 puts("\tUser Enhanced Size: ");
609 print_size(((u64
)pconf
.user
.enh_size
) << 9, "\n");
611 puts("\tNo enhanced user data area\n");
613 if (pconf
.user
.wr_rel_change
)
614 printf("\tUser partition write reliability: %s\n",
615 pconf
.user
.wr_rel_set
? "on" : "off");
616 for (pidx
= 0; pidx
< 4; pidx
++) {
617 if (pconf
.gp_part
[pidx
].size
) {
618 printf("\tGP%i Capacity: ", pidx
+1);
619 print_size(((u64
)pconf
.gp_part
[pidx
].size
) << 9,
620 pconf
.gp_part
[pidx
].enhanced
?
623 printf("\tNo GP%i partition\n", pidx
+1);
625 if (pconf
.gp_part
[pidx
].wr_rel_change
)
626 printf("\tGP%i write reliability: %s\n", pidx
+1,
627 pconf
.gp_part
[pidx
].wr_rel_set
? "on" : "off");
630 if (!mmc_hwpart_config(mmc
, &pconf
, mode
)) {
631 if (mode
== MMC_HWPART_CONF_COMPLETE
)
632 puts("Partitioning successful, "
633 "power-cycle to make effective\n");
634 return CMD_RET_SUCCESS
;
637 return CMD_RET_FAILURE
;
641 #ifdef CONFIG_SUPPORT_EMMC_BOOT
642 static int do_mmc_bootbus(cmd_tbl_t
*cmdtp
, int flag
,
643 int argc
, char * const argv
[])
647 u8 width
, reset
, mode
;
650 return CMD_RET_USAGE
;
651 dev
= simple_strtoul(argv
[1], NULL
, 10);
652 width
= simple_strtoul(argv
[2], NULL
, 10);
653 reset
= simple_strtoul(argv
[3], NULL
, 10);
654 mode
= simple_strtoul(argv
[4], NULL
, 10);
656 mmc
= init_mmc_device(dev
, false);
658 return CMD_RET_FAILURE
;
661 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
662 return CMD_RET_FAILURE
;
665 /* acknowledge to be sent during boot operation */
666 return mmc_set_boot_bus_width(mmc
, width
, reset
, mode
);
668 static int do_mmc_boot_resize(cmd_tbl_t
*cmdtp
, int flag
,
669 int argc
, char * const argv
[])
673 u32 bootsize
, rpmbsize
;
676 return CMD_RET_USAGE
;
677 dev
= simple_strtoul(argv
[1], NULL
, 10);
678 bootsize
= simple_strtoul(argv
[2], NULL
, 10);
679 rpmbsize
= simple_strtoul(argv
[3], NULL
, 10);
681 mmc
= init_mmc_device(dev
, false);
683 return CMD_RET_FAILURE
;
686 printf("It is not a EMMC device\n");
687 return CMD_RET_FAILURE
;
690 if (mmc_boot_partition_size_change(mmc
, bootsize
, rpmbsize
)) {
691 printf("EMMC boot partition Size change Failed.\n");
692 return CMD_RET_FAILURE
;
695 printf("EMMC boot partition Size %d MB\n", bootsize
);
696 printf("EMMC RPMB partition Size %d MB\n", rpmbsize
);
697 return CMD_RET_SUCCESS
;
699 static int do_mmc_partconf(cmd_tbl_t
*cmdtp
, int flag
,
700 int argc
, char * const argv
[])
704 u8 ack
, part_num
, access
;
707 return CMD_RET_USAGE
;
709 dev
= simple_strtoul(argv
[1], NULL
, 10);
710 ack
= simple_strtoul(argv
[2], NULL
, 10);
711 part_num
= simple_strtoul(argv
[3], NULL
, 10);
712 access
= simple_strtoul(argv
[4], NULL
, 10);
714 mmc
= init_mmc_device(dev
, false);
716 return CMD_RET_FAILURE
;
719 puts("PARTITION_CONFIG only exists on eMMC\n");
720 return CMD_RET_FAILURE
;
723 /* acknowledge to be sent during boot operation */
724 return mmc_set_part_conf(mmc
, ack
, part_num
, access
);
726 static int do_mmc_rst_func(cmd_tbl_t
*cmdtp
, int flag
,
727 int argc
, char * const argv
[])
734 * Set the RST_n_ENABLE bit of RST_n_FUNCTION
735 * The only valid values are 0x0, 0x1 and 0x2 and writing
736 * a value of 0x1 or 0x2 sets the value permanently.
739 return CMD_RET_USAGE
;
741 dev
= simple_strtoul(argv
[1], NULL
, 10);
742 enable
= simple_strtoul(argv
[2], NULL
, 10);
745 puts("Invalid RST_n_ENABLE value\n");
746 return CMD_RET_USAGE
;
749 mmc
= init_mmc_device(dev
, false);
751 return CMD_RET_FAILURE
;
754 puts("RST_n_FUNCTION only exists on eMMC\n");
755 return CMD_RET_FAILURE
;
758 return mmc_set_rst_n_function(mmc
, enable
);
761 static int do_mmc_setdsr(cmd_tbl_t
*cmdtp
, int flag
,
762 int argc
, char * const argv
[])
769 return CMD_RET_USAGE
;
770 val
= simple_strtoul(argv
[2], NULL
, 16);
772 mmc
= find_mmc_device(curr_device
);
774 printf("no mmc device at slot %x\n", curr_device
);
775 return CMD_RET_FAILURE
;
777 ret
= mmc_set_dsr(mmc
, val
);
778 printf("set dsr %s\n", (!ret
) ? "OK, force rescan" : "ERROR");
782 return CMD_RET_FAILURE
;
784 return CMD_RET_SUCCESS
;
789 static cmd_tbl_t cmd_mmc
[] = {
790 U_BOOT_CMD_MKENT(info
, 1, 0, do_mmcinfo
, "", ""),
791 U_BOOT_CMD_MKENT(read
, 4, 1, do_mmc_read
, "", ""),
792 U_BOOT_CMD_MKENT(write
, 4, 0, do_mmc_write
, "", ""),
793 U_BOOT_CMD_MKENT(erase
, 3, 0, do_mmc_erase
, "", ""),
794 U_BOOT_CMD_MKENT(rescan
, 1, 1, do_mmc_rescan
, "", ""),
795 U_BOOT_CMD_MKENT(part
, 1, 1, do_mmc_part
, "", ""),
796 U_BOOT_CMD_MKENT(dev
, 3, 0, do_mmc_dev
, "", ""),
797 U_BOOT_CMD_MKENT(list
, 1, 1, do_mmc_list
, "", ""),
798 U_BOOT_CMD_MKENT(hwpartition
, 28, 0, do_mmc_hwpartition
, "", ""),
799 #ifdef CONFIG_SUPPORT_EMMC_BOOT
800 U_BOOT_CMD_MKENT(bootbus
, 5, 0, do_mmc_bootbus
, "", ""),
801 U_BOOT_CMD_MKENT(bootpart
-resize
, 4, 0, do_mmc_boot_resize
, "", ""),
802 U_BOOT_CMD_MKENT(partconf
, 5, 0, do_mmc_partconf
, "", ""),
803 U_BOOT_CMD_MKENT(rst
-function
, 3, 0, do_mmc_rst_func
, "", ""),
805 #ifdef CONFIG_SUPPORT_EMMC_RPMB
806 U_BOOT_CMD_MKENT(rpmb
, CONFIG_SYS_MAXARGS
, 1, do_mmcrpmb
, "", ""),
808 U_BOOT_CMD_MKENT(setdsr
, 2, 0, do_mmc_setdsr
, "", ""),
811 static int do_mmcops(cmd_tbl_t
*cmdtp
, int flag
, int argc
, char * const argv
[])
815 cp
= find_cmd_tbl(argv
[1], cmd_mmc
, ARRAY_SIZE(cmd_mmc
));
817 /* Drop the mmc command */
821 if (cp
== NULL
|| argc
> cp
->maxargs
)
822 return CMD_RET_USAGE
;
823 if (flag
== CMD_FLAG_REPEAT
&& !cp
->repeatable
)
824 return CMD_RET_SUCCESS
;
826 if (curr_device
< 0) {
827 if (get_mmc_num() > 0) {
830 puts("No MMC device available\n");
831 return CMD_RET_FAILURE
;
834 return cp
->cmd(cmdtp
, flag
, argc
, argv
);
838 mmc
, 29, 1, do_mmcops
,
840 "info - display info of the current MMC device\n"
841 "mmc read addr blk# cnt\n"
842 "mmc write addr blk# cnt\n"
843 "mmc erase blk# cnt\n"
845 "mmc part - lists available partition on current mmc device\n"
846 "mmc dev [dev] [part] - show or set current mmc device [partition]\n"
847 "mmc list - lists available devices\n"
848 "mmc hwpartition [args...] - does hardware partitioning\n"
849 " arguments (sizes in 512-byte blocks):\n"
850 " [user [enh start cnt] [wrrel {on|off}]] - sets user data area attributes\n"
851 " [gp1|gp2|gp3|gp4 cnt [enh] [wrrel {on|off}]] - general purpose partition\n"
852 " [check|set|complete] - mode, complete set partitioning completed\n"
853 " WARNING: Partitioning is a write-once setting once it is set to complete.\n"
854 " Power cycling is required to initialize partitions after set to complete.\n"
855 #ifdef CONFIG_SUPPORT_EMMC_BOOT
856 "mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
857 " - Set the BOOT_BUS_WIDTH field of the specified device\n"
858 "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
859 " - Change sizes of boot and RPMB partitions of specified device\n"
860 "mmc partconf dev boot_ack boot_partition partition_access\n"
861 " - Change the bits of the PARTITION_CONFIG field of the specified device\n"
862 "mmc rst-function dev value\n"
863 " - Change the RST_n_FUNCTION field of the specified device\n"
864 " WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
866 #ifdef CONFIG_SUPPORT_EMMC_RPMB
867 "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
868 "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
869 "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
870 "mmc rpmb counter - read the value of the write counter\n"
872 "mmc setdsr <value> - set DSR register value\n"
875 /* Old command kept for compatibility. Same as 'mmc info' */
877 mmcinfo
, 1, 0, do_mmcinfo
,
879 "- display info of the current MMC device"
882 #endif /* !CONFIG_GENERIC_MMC */