mmc: show the erase group size and HC WP group size in mmcinfo output
[platform/kernel/u-boot.git] / common / cmd_mmc.c
1 /*
2  * (C) Copyright 2003
3  * Kyle Harris, kharris@nexus-tech.net
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #include <common.h>
9 #include <command.h>
10 #include <mmc.h>
11
12 static int curr_device = -1;
13 #ifndef CONFIG_GENERIC_MMC
14 int do_mmc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
15 {
16         int dev;
17
18         if (argc < 2)
19                 return CMD_RET_USAGE;
20
21         if (strcmp(argv[1], "init") == 0) {
22                 if (argc == 2) {
23                         if (curr_device < 0)
24                                 dev = 1;
25                         else
26                                 dev = curr_device;
27                 } else if (argc == 3) {
28                         dev = (int)simple_strtoul(argv[2], NULL, 10);
29                 } else {
30                         return CMD_RET_USAGE;
31                 }
32
33                 if (mmc_legacy_init(dev) != 0) {
34                         puts("No MMC card found\n");
35                         return 1;
36                 }
37
38                 curr_device = dev;
39                 printf("mmc%d is available\n", curr_device);
40         } else if (strcmp(argv[1], "device") == 0) {
41                 if (argc == 2) {
42                         if (curr_device < 0) {
43                                 puts("No MMC device available\n");
44                                 return 1;
45                         }
46                 } else if (argc == 3) {
47                         dev = (int)simple_strtoul(argv[2], NULL, 10);
48
49 #ifdef CONFIG_SYS_MMC_SET_DEV
50                         if (mmc_set_dev(dev) != 0)
51                                 return 1;
52 #endif
53                         curr_device = dev;
54                 } else {
55                         return CMD_RET_USAGE;
56                 }
57
58                 printf("mmc%d is current device\n", curr_device);
59         } else {
60                 return CMD_RET_USAGE;
61         }
62
63         return 0;
64 }
65
66 U_BOOT_CMD(
67         mmc, 3, 1, do_mmc,
68         "MMC sub-system",
69         "init [dev] - init MMC sub system\n"
70         "mmc device [dev] - show or set current device"
71 );
72 #else /* !CONFIG_GENERIC_MMC */
73
74 static void print_mmcinfo(struct mmc *mmc)
75 {
76         int i;
77
78         printf("Device: %s\n", mmc->cfg->name);
79         printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
80         printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
81         printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
82                         (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
83                         (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
84
85         printf("Tran Speed: %d\n", mmc->tran_speed);
86         printf("Rd Block Len: %d\n", mmc->read_bl_len);
87
88         printf("%s version %d.%d\n", IS_SD(mmc) ? "SD" : "MMC",
89                         (mmc->version >> 8) & 0xf, mmc->version & 0xff);
90
91         printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
92         puts("Capacity: ");
93         print_size(mmc->capacity, "\n");
94
95         printf("Bus Width: %d-bit%s\n", mmc->bus_width,
96                         mmc->ddr_mode ? " DDR" : "");
97
98         puts("Erase Group Size: ");
99         print_size(((u64)mmc->erase_grp_size) << 9, "\n");
100
101         if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
102                 bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
103                 bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
104
105                 puts("HC WP Group Size: ");
106                 print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
107
108                 puts("User Capacity: ");
109                 print_size(mmc->capacity_user, usr_enh ? " ENH\n" : "\n");
110                 if (usr_enh) {
111                         puts("User Enhanced Start: ");
112                         print_size(mmc->enh_user_start, "\n");
113                         puts("User Enhanced Size: ");
114                         print_size(mmc->enh_user_size, "\n");
115                 }
116                 puts("Boot Capacity: ");
117                 print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
118                 puts("RPMB Capacity: ");
119                 print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
120
121                 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
122                         bool is_enh = has_enh &&
123                                 (mmc->part_attr & EXT_CSD_ENH_GP(i));
124                         if (mmc->capacity_gp[i]) {
125                                 printf("GP%i Capacity: ", i+1);
126                                 print_size(mmc->capacity_gp[i],
127                                            is_enh ? " ENH\n" : "\n");
128                         }
129                 }
130         }
131 }
132 static struct mmc *init_mmc_device(int dev, bool force_init)
133 {
134         struct mmc *mmc;
135         mmc = find_mmc_device(dev);
136         if (!mmc) {
137                 printf("no mmc device at slot %x\n", dev);
138                 return NULL;
139         }
140         if (force_init)
141                 mmc->has_init = 0;
142         if (mmc_init(mmc))
143                 return NULL;
144         return mmc;
145 }
146 static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
147 {
148         struct mmc *mmc;
149
150         if (curr_device < 0) {
151                 if (get_mmc_num() > 0)
152                         curr_device = 0;
153                 else {
154                         puts("No MMC device available\n");
155                         return 1;
156                 }
157         }
158
159         mmc = init_mmc_device(curr_device, false);
160         if (!mmc)
161                 return CMD_RET_FAILURE;
162
163         print_mmcinfo(mmc);
164         return CMD_RET_SUCCESS;
165 }
166
167 #ifdef CONFIG_SUPPORT_EMMC_RPMB
168 static int confirm_key_prog(void)
169 {
170         puts("Warning: Programming authentication key can be done only once !\n"
171              "         Use this command only if you are sure of what you are doing,\n"
172              "Really perform the key programming? <y/N> ");
173         if (confirm_yesno())
174                 return 1;
175
176         puts("Authentication key programming aborted\n");
177         return 0;
178 }
179 static int do_mmcrpmb_key(cmd_tbl_t *cmdtp, int flag,
180                           int argc, char * const argv[])
181 {
182         void *key_addr;
183         struct mmc *mmc = find_mmc_device(curr_device);
184
185         if (argc != 2)
186                 return CMD_RET_USAGE;
187
188         key_addr = (void *)simple_strtoul(argv[1], NULL, 16);
189         if (!confirm_key_prog())
190                 return CMD_RET_FAILURE;
191         if (mmc_rpmb_set_key(mmc, key_addr)) {
192                 printf("ERROR - Key already programmed ?\n");
193                 return CMD_RET_FAILURE;
194         }
195         return CMD_RET_SUCCESS;
196 }
197 static int do_mmcrpmb_read(cmd_tbl_t *cmdtp, int flag,
198                            int argc, char * const argv[])
199 {
200         u16 blk, cnt;
201         void *addr;
202         int n;
203         void *key_addr = NULL;
204         struct mmc *mmc = find_mmc_device(curr_device);
205
206         if (argc < 4)
207                 return CMD_RET_USAGE;
208
209         addr = (void *)simple_strtoul(argv[1], NULL, 16);
210         blk = simple_strtoul(argv[2], NULL, 16);
211         cnt = simple_strtoul(argv[3], NULL, 16);
212
213         if (argc == 5)
214                 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
215
216         printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
217                curr_device, blk, cnt);
218         n =  mmc_rpmb_read(mmc, addr, blk, cnt, key_addr);
219
220         printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
221         if (n != cnt)
222                 return CMD_RET_FAILURE;
223         return CMD_RET_SUCCESS;
224 }
225 static int do_mmcrpmb_write(cmd_tbl_t *cmdtp, int flag,
226                             int argc, char * const argv[])
227 {
228         u16 blk, cnt;
229         void *addr;
230         int n;
231         void *key_addr;
232         struct mmc *mmc = find_mmc_device(curr_device);
233
234         if (argc != 5)
235                 return CMD_RET_USAGE;
236
237         addr = (void *)simple_strtoul(argv[1], NULL, 16);
238         blk = simple_strtoul(argv[2], NULL, 16);
239         cnt = simple_strtoul(argv[3], NULL, 16);
240         key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
241
242         printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
243                curr_device, blk, cnt);
244         n =  mmc_rpmb_write(mmc, addr, blk, cnt, key_addr);
245
246         printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
247         if (n != cnt)
248                 return CMD_RET_FAILURE;
249         return CMD_RET_SUCCESS;
250 }
251 static int do_mmcrpmb_counter(cmd_tbl_t *cmdtp, int flag,
252                               int argc, char * const argv[])
253 {
254         unsigned long counter;
255         struct mmc *mmc = find_mmc_device(curr_device);
256
257         if (mmc_rpmb_get_counter(mmc, &counter))
258                 return CMD_RET_FAILURE;
259         printf("RPMB Write counter= %lx\n", counter);
260         return CMD_RET_SUCCESS;
261 }
262
263 static cmd_tbl_t cmd_rpmb[] = {
264         U_BOOT_CMD_MKENT(key, 2, 0, do_mmcrpmb_key, "", ""),
265         U_BOOT_CMD_MKENT(read, 5, 1, do_mmcrpmb_read, "", ""),
266         U_BOOT_CMD_MKENT(write, 5, 0, do_mmcrpmb_write, "", ""),
267         U_BOOT_CMD_MKENT(counter, 1, 1, do_mmcrpmb_counter, "", ""),
268 };
269
270 static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
271                       int argc, char * const argv[])
272 {
273         cmd_tbl_t *cp;
274         struct mmc *mmc;
275         char original_part;
276         int ret;
277
278         cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));
279
280         /* Drop the rpmb subcommand */
281         argc--;
282         argv++;
283
284         if (cp == NULL || argc > cp->maxargs)
285                 return CMD_RET_USAGE;
286         if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
287                 return CMD_RET_SUCCESS;
288
289         mmc = init_mmc_device(curr_device, false);
290         if (!mmc)
291                 return CMD_RET_FAILURE;
292
293         if (!(mmc->version & MMC_VERSION_MMC)) {
294                 printf("It is not a EMMC device\n");
295                 return CMD_RET_FAILURE;
296         }
297         if (mmc->version < MMC_VERSION_4_41) {
298                 printf("RPMB not supported before version 4.41\n");
299                 return CMD_RET_FAILURE;
300         }
301         /* Switch to the RPMB partition */
302         original_part = mmc->part_num;
303         if (mmc->part_num != MMC_PART_RPMB) {
304                 if (mmc_switch_part(curr_device, MMC_PART_RPMB) != 0)
305                         return CMD_RET_FAILURE;
306                 mmc->part_num = MMC_PART_RPMB;
307         }
308         ret = cp->cmd(cmdtp, flag, argc, argv);
309
310         /* Return to original partition */
311         if (mmc->part_num != original_part) {
312                 if (mmc_switch_part(curr_device, original_part) != 0)
313                         return CMD_RET_FAILURE;
314                 mmc->part_num = original_part;
315         }
316         return ret;
317 }
318 #endif
319
320 static int do_mmc_read(cmd_tbl_t *cmdtp, int flag,
321                        int argc, char * const argv[])
322 {
323         struct mmc *mmc;
324         u32 blk, cnt, n;
325         void *addr;
326
327         if (argc != 4)
328                 return CMD_RET_USAGE;
329
330         addr = (void *)simple_strtoul(argv[1], NULL, 16);
331         blk = simple_strtoul(argv[2], NULL, 16);
332         cnt = simple_strtoul(argv[3], NULL, 16);
333
334         mmc = init_mmc_device(curr_device, false);
335         if (!mmc)
336                 return CMD_RET_FAILURE;
337
338         printf("\nMMC read: dev # %d, block # %d, count %d ... ",
339                curr_device, blk, cnt);
340
341         n = mmc->block_dev.block_read(curr_device, blk, cnt, addr);
342         /* flush cache after read */
343         flush_cache((ulong)addr, cnt * 512); /* FIXME */
344         printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
345
346         return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
347 }
348 static int do_mmc_write(cmd_tbl_t *cmdtp, int flag,
349                         int argc, char * const argv[])
350 {
351         struct mmc *mmc;
352         u32 blk, cnt, n;
353         void *addr;
354
355         if (argc != 4)
356                 return CMD_RET_USAGE;
357
358         addr = (void *)simple_strtoul(argv[1], NULL, 16);
359         blk = simple_strtoul(argv[2], NULL, 16);
360         cnt = simple_strtoul(argv[3], NULL, 16);
361
362         mmc = init_mmc_device(curr_device, false);
363         if (!mmc)
364                 return CMD_RET_FAILURE;
365
366         printf("\nMMC write: dev # %d, block # %d, count %d ... ",
367                curr_device, blk, cnt);
368
369         if (mmc_getwp(mmc) == 1) {
370                 printf("Error: card is write protected!\n");
371                 return CMD_RET_FAILURE;
372         }
373         n = mmc->block_dev.block_write(curr_device, blk, cnt, addr);
374         printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
375
376         return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
377 }
378 static int do_mmc_erase(cmd_tbl_t *cmdtp, int flag,
379                         int argc, char * const argv[])
380 {
381         struct mmc *mmc;
382         u32 blk, cnt, n;
383
384         if (argc != 3)
385                 return CMD_RET_USAGE;
386
387         blk = simple_strtoul(argv[1], NULL, 16);
388         cnt = simple_strtoul(argv[2], NULL, 16);
389
390         mmc = init_mmc_device(curr_device, false);
391         if (!mmc)
392                 return CMD_RET_FAILURE;
393
394         printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
395                curr_device, blk, cnt);
396
397         if (mmc_getwp(mmc) == 1) {
398                 printf("Error: card is write protected!\n");
399                 return CMD_RET_FAILURE;
400         }
401         n = mmc->block_dev.block_erase(curr_device, blk, cnt);
402         printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
403
404         return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
405 }
406 static int do_mmc_rescan(cmd_tbl_t *cmdtp, int flag,
407                          int argc, char * const argv[])
408 {
409         struct mmc *mmc;
410
411         mmc = init_mmc_device(curr_device, true);
412         if (!mmc)
413                 return CMD_RET_FAILURE;
414
415         return CMD_RET_SUCCESS;
416 }
417 static int do_mmc_part(cmd_tbl_t *cmdtp, int flag,
418                        int argc, char * const argv[])
419 {
420         block_dev_desc_t *mmc_dev;
421         struct mmc *mmc;
422
423         mmc = init_mmc_device(curr_device, false);
424         if (!mmc)
425                 return CMD_RET_FAILURE;
426
427         mmc_dev = mmc_get_dev(curr_device);
428         if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
429                 print_part(mmc_dev);
430                 return CMD_RET_SUCCESS;
431         }
432
433         puts("get mmc type error!\n");
434         return CMD_RET_FAILURE;
435 }
436 static int do_mmc_dev(cmd_tbl_t *cmdtp, int flag,
437                       int argc, char * const argv[])
438 {
439         int dev, part = 0, ret;
440         struct mmc *mmc;
441
442         if (argc == 1) {
443                 dev = curr_device;
444         } else if (argc == 2) {
445                 dev = simple_strtoul(argv[1], NULL, 10);
446         } else if (argc == 3) {
447                 dev = (int)simple_strtoul(argv[1], NULL, 10);
448                 part = (int)simple_strtoul(argv[2], NULL, 10);
449                 if (part > PART_ACCESS_MASK) {
450                         printf("#part_num shouldn't be larger than %d\n",
451                                PART_ACCESS_MASK);
452                         return CMD_RET_FAILURE;
453                 }
454         } else {
455                 return CMD_RET_USAGE;
456         }
457
458         mmc = init_mmc_device(dev, true);
459         if (!mmc)
460                 return CMD_RET_FAILURE;
461
462         ret = mmc_select_hwpart(dev, part);
463         printf("switch to partitions #%d, %s\n",
464                part, (!ret) ? "OK" : "ERROR");
465         if (ret)
466                 return 1;
467
468         curr_device = dev;
469         if (mmc->part_config == MMCPART_NOAVAILABLE)
470                 printf("mmc%d is current device\n", curr_device);
471         else
472                 printf("mmc%d(part %d) is current device\n",
473                        curr_device, mmc->part_num);
474
475         return CMD_RET_SUCCESS;
476 }
477 static int do_mmc_list(cmd_tbl_t *cmdtp, int flag,
478                        int argc, char * const argv[])
479 {
480         print_mmc_devices('\n');
481         return CMD_RET_SUCCESS;
482 }
483 #ifdef CONFIG_SUPPORT_EMMC_BOOT
484 static int do_mmc_bootbus(cmd_tbl_t *cmdtp, int flag,
485                           int argc, char * const argv[])
486 {
487         int dev;
488         struct mmc *mmc;
489         u8 width, reset, mode;
490
491         if (argc != 5)
492                 return CMD_RET_USAGE;
493         dev = simple_strtoul(argv[1], NULL, 10);
494         width = simple_strtoul(argv[2], NULL, 10);
495         reset = simple_strtoul(argv[3], NULL, 10);
496         mode = simple_strtoul(argv[4], NULL, 10);
497
498         mmc = init_mmc_device(dev, false);
499         if (!mmc)
500                 return CMD_RET_FAILURE;
501
502         if (IS_SD(mmc)) {
503                 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
504                 return CMD_RET_FAILURE;
505         }
506
507         /* acknowledge to be sent during boot operation */
508         return mmc_set_boot_bus_width(mmc, width, reset, mode);
509 }
510 static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
511                               int argc, char * const argv[])
512 {
513         int dev;
514         struct mmc *mmc;
515         u32 bootsize, rpmbsize;
516
517         if (argc != 4)
518                 return CMD_RET_USAGE;
519         dev = simple_strtoul(argv[1], NULL, 10);
520         bootsize = simple_strtoul(argv[2], NULL, 10);
521         rpmbsize = simple_strtoul(argv[3], NULL, 10);
522
523         mmc = init_mmc_device(dev, false);
524         if (!mmc)
525                 return CMD_RET_FAILURE;
526
527         if (IS_SD(mmc)) {
528                 printf("It is not a EMMC device\n");
529                 return CMD_RET_FAILURE;
530         }
531
532         if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
533                 printf("EMMC boot partition Size change Failed.\n");
534                 return CMD_RET_FAILURE;
535         }
536
537         printf("EMMC boot partition Size %d MB\n", bootsize);
538         printf("EMMC RPMB partition Size %d MB\n", rpmbsize);
539         return CMD_RET_SUCCESS;
540 }
541 static int do_mmc_partconf(cmd_tbl_t *cmdtp, int flag,
542                            int argc, char * const argv[])
543 {
544         int dev;
545         struct mmc *mmc;
546         u8 ack, part_num, access;
547
548         if (argc != 5)
549                 return CMD_RET_USAGE;
550
551         dev = simple_strtoul(argv[1], NULL, 10);
552         ack = simple_strtoul(argv[2], NULL, 10);
553         part_num = simple_strtoul(argv[3], NULL, 10);
554         access = simple_strtoul(argv[4], NULL, 10);
555
556         mmc = init_mmc_device(dev, false);
557         if (!mmc)
558                 return CMD_RET_FAILURE;
559
560         if (IS_SD(mmc)) {
561                 puts("PARTITION_CONFIG only exists on eMMC\n");
562                 return CMD_RET_FAILURE;
563         }
564
565         /* acknowledge to be sent during boot operation */
566         return mmc_set_part_conf(mmc, ack, part_num, access);
567 }
568 static int do_mmc_rst_func(cmd_tbl_t *cmdtp, int flag,
569                            int argc, char * const argv[])
570 {
571         int dev;
572         struct mmc *mmc;
573         u8 enable;
574
575         /*
576          * Set the RST_n_ENABLE bit of RST_n_FUNCTION
577          * The only valid values are 0x0, 0x1 and 0x2 and writing
578          * a value of 0x1 or 0x2 sets the value permanently.
579          */
580         if (argc != 3)
581                 return CMD_RET_USAGE;
582
583         dev = simple_strtoul(argv[1], NULL, 10);
584         enable = simple_strtoul(argv[2], NULL, 10);
585
586         if (enable > 2 || enable < 0) {
587                 puts("Invalid RST_n_ENABLE value\n");
588                 return CMD_RET_USAGE;
589         }
590
591         mmc = init_mmc_device(dev, false);
592         if (!mmc)
593                 return CMD_RET_FAILURE;
594
595         if (IS_SD(mmc)) {
596                 puts("RST_n_FUNCTION only exists on eMMC\n");
597                 return CMD_RET_FAILURE;
598         }
599
600         return mmc_set_rst_n_function(mmc, enable);
601 }
602 #endif
603 static int do_mmc_setdsr(cmd_tbl_t *cmdtp, int flag,
604                          int argc, char * const argv[])
605 {
606         struct mmc *mmc;
607         u32 val;
608         int ret;
609
610         if (argc != 2)
611                 return CMD_RET_USAGE;
612         val = simple_strtoul(argv[2], NULL, 16);
613
614         mmc = find_mmc_device(curr_device);
615         if (!mmc) {
616                 printf("no mmc device at slot %x\n", curr_device);
617                 return CMD_RET_FAILURE;
618         }
619         ret = mmc_set_dsr(mmc, val);
620         printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
621         if (!ret) {
622                 mmc->has_init = 0;
623                 if (mmc_init(mmc))
624                         return CMD_RET_FAILURE;
625                 else
626                         return CMD_RET_SUCCESS;
627         }
628         return ret;
629 }
630
631 static cmd_tbl_t cmd_mmc[] = {
632         U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""),
633         U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""),
634         U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""),
635         U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""),
636         U_BOOT_CMD_MKENT(rescan, 1, 1, do_mmc_rescan, "", ""),
637         U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""),
638         U_BOOT_CMD_MKENT(dev, 3, 0, do_mmc_dev, "", ""),
639         U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
640 #ifdef CONFIG_SUPPORT_EMMC_BOOT
641         U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
642         U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
643         U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
644         U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
645 #endif
646 #ifdef CONFIG_SUPPORT_EMMC_RPMB
647         U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
648 #endif
649         U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
650 };
651
652 static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
653 {
654         cmd_tbl_t *cp;
655
656         cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));
657
658         /* Drop the mmc command */
659         argc--;
660         argv++;
661
662         if (cp == NULL || argc > cp->maxargs)
663                 return CMD_RET_USAGE;
664         if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
665                 return CMD_RET_SUCCESS;
666
667         if (curr_device < 0) {
668                 if (get_mmc_num() > 0) {
669                         curr_device = 0;
670                 } else {
671                         puts("No MMC device available\n");
672                         return CMD_RET_FAILURE;
673                 }
674         }
675         return cp->cmd(cmdtp, flag, argc, argv);
676 }
677
678 U_BOOT_CMD(
679         mmc, 7, 1, do_mmcops,
680         "MMC sub system",
681         "info - display info of the current MMC device\n"
682         "mmc read addr blk# cnt\n"
683         "mmc write addr blk# cnt\n"
684         "mmc erase blk# cnt\n"
685         "mmc rescan\n"
686         "mmc part - lists available partition on current mmc device\n"
687         "mmc dev [dev] [part] - show or set current mmc device [partition]\n"
688         "mmc list - lists available devices\n"
689 #ifdef CONFIG_SUPPORT_EMMC_BOOT
690         "mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
691         " - Set the BOOT_BUS_WIDTH field of the specified device\n"
692         "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
693         " - Change sizes of boot and RPMB partitions of specified device\n"
694         "mmc partconf dev boot_ack boot_partition partition_access\n"
695         " - Change the bits of the PARTITION_CONFIG field of the specified device\n"
696         "mmc rst-function dev value\n"
697         " - Change the RST_n_FUNCTION field of the specified device\n"
698         "   WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
699 #endif
700 #ifdef CONFIG_SUPPORT_EMMC_RPMB
701         "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
702         "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
703         "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
704         "mmc rpmb counter - read the value of the write counter\n"
705 #endif
706         "mmc setdsr <value> - set DSR register value\n"
707         );
708
709 /* Old command kept for compatibility. Same as 'mmc info' */
710 U_BOOT_CMD(
711         mmcinfo, 1, 0, do_mmcinfo,
712         "display MMC info",
713         "- display info of the current MMC device"
714 );
715
716 #endif /* !CONFIG_GENERIC_MMC */