]> git.ipfire.org Git - people/ms/u-boot.git/blame - cmd/mmc.c
dm: Drop the block_dev_desc_t typedef
[people/ms/u-boot.git] / cmd / mmc.c
CommitLineData
71f95118
WD
1/*
2 * (C) Copyright 2003
3 * Kyle Harris, kharris@nexus-tech.net
4 *
1a459660 5 * SPDX-License-Identifier: GPL-2.0+
71f95118
WD
6 */
7
8#include <common.h>
9#include <command.h>
24b852a7 10#include <console.h>
71f95118
WD
11#include <mmc.h>
12
02e22c2d 13static int curr_device = -1;
ea6ebe21 14#ifndef CONFIG_GENERIC_MMC
54841ab5 15int do_mmc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
71f95118 16{
869f6bf4
MK
17 int dev;
18
47e26b1b 19 if (argc < 2)
4c12eeb8 20 return CMD_RET_USAGE;
869f6bf4
MK
21
22 if (strcmp(argv[1], "init") == 0) {
23 if (argc == 2) {
24 if (curr_device < 0)
25 dev = 1;
26 else
27 dev = curr_device;
28 } else if (argc == 3) {
29 dev = (int)simple_strtoul(argv[2], NULL, 10);
30 } else {
4c12eeb8 31 return CMD_RET_USAGE;
869f6bf4
MK
32 }
33
34 if (mmc_legacy_init(dev) != 0) {
35 puts("No MMC card found\n");
36 return 1;
37 }
38
39 curr_device = dev;
40 printf("mmc%d is available\n", curr_device);
41 } else if (strcmp(argv[1], "device") == 0) {
42 if (argc == 2) {
43 if (curr_device < 0) {
44 puts("No MMC device available\n");
45 return 1;
46 }
47 } else if (argc == 3) {
48 dev = (int)simple_strtoul(argv[2], NULL, 10);
49
50#ifdef CONFIG_SYS_MMC_SET_DEV
51 if (mmc_set_dev(dev) != 0)
52 return 1;
53#endif
54 curr_device = dev;
55 } else {
4c12eeb8 56 return CMD_RET_USAGE;
869f6bf4
MK
57 }
58
59 printf("mmc%d is current device\n", curr_device);
60 } else {
4c12eeb8 61 return CMD_RET_USAGE;
71f95118 62 }
869f6bf4 63
71f95118
WD
64 return 0;
65}
66
0d498393 67U_BOOT_CMD(
869f6bf4
MK
68 mmc, 3, 1, do_mmc,
69 "MMC sub-system",
70 "init [dev] - init MMC sub system\n"
a89c33db 71 "mmc device [dev] - show or set current device"
b0fce99b 72);
3511b4e2 73#else /* !CONFIG_GENERIC_MMC */
272cc70b
AF
74
75static void print_mmcinfo(struct mmc *mmc)
76{
c5f0d3f1
DSC
77 int i;
78
93bfd616 79 printf("Device: %s\n", mmc->cfg->name);
272cc70b
AF
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);
85
86 printf("Tran Speed: %d\n", mmc->tran_speed);
87 printf("Rd Block Len: %d\n", mmc->read_bl_len);
88
4b7cee53
PA
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));
94 printf("\n");
272cc70b
AF
95
96 printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
940e0782
MK
97 puts("Capacity: ");
98 print_size(mmc->capacity, "\n");
272cc70b 99
786e8f81
AG
100 printf("Bus Width: %d-bit%s\n", mmc->bus_width,
101 mmc->ddr_mode ? " DDR" : "");
c5f0d3f1 102
b0361526
DSC
103 puts("Erase Group Size: ");
104 print_size(((u64)mmc->erase_grp_size) << 9, "\n");
105
525ada21 106 if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
c3dbb4f9 107 bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
beb98a14 108 bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
b0361526
DSC
109
110 puts("HC WP Group Size: ");
111 print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
112
c5f0d3f1 113 puts("User Capacity: ");
9e41a00b
DSC
114 print_size(mmc->capacity_user, usr_enh ? " ENH" : "");
115 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_USR)
116 puts(" WRREL\n");
117 else
118 putc('\n');
beb98a14
DSC
119 if (usr_enh) {
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");
124 }
c5f0d3f1 125 puts("Boot Capacity: ");
c3dbb4f9 126 print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
c5f0d3f1 127 puts("RPMB Capacity: ");
c3dbb4f9 128 print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
b0361526 129
c5f0d3f1 130 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
c3dbb4f9
DSC
131 bool is_enh = has_enh &&
132 (mmc->part_attr & EXT_CSD_ENH_GP(i));
c5f0d3f1 133 if (mmc->capacity_gp[i]) {
f289fd73 134 printf("GP%i Capacity: ", i+1);
c3dbb4f9 135 print_size(mmc->capacity_gp[i],
9e41a00b
DSC
136 is_enh ? " ENH" : "");
137 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_GP(i))
138 puts(" WRREL\n");
139 else
140 putc('\n');
c5f0d3f1
DSC
141 }
142 }
143 }
272cc70b 144}
1ae24a50 145static struct mmc *init_mmc_device(int dev, bool force_init)
1fd93c6e
PA
146{
147 struct mmc *mmc;
148 mmc = find_mmc_device(dev);
149 if (!mmc) {
150 printf("no mmc device at slot %x\n", dev);
151 return NULL;
152 }
1ae24a50
SW
153 if (force_init)
154 mmc->has_init = 0;
1fd93c6e
PA
155 if (mmc_init(mmc))
156 return NULL;
157 return mmc;
158}
088f1b19 159static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
272cc70b
AF
160{
161 struct mmc *mmc;
272cc70b 162
ea6ebe21
LW
163 if (curr_device < 0) {
164 if (get_mmc_num() > 0)
165 curr_device = 0;
166 else {
167 puts("No MMC device available\n");
168 return 1;
169 }
170 }
272cc70b 171
1ae24a50 172 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
173 if (!mmc)
174 return CMD_RET_FAILURE;
272cc70b 175
1fd93c6e
PA
176 print_mmcinfo(mmc);
177 return CMD_RET_SUCCESS;
178}
272cc70b 179
1fd93c6e
PA
180#ifdef CONFIG_SUPPORT_EMMC_RPMB
181static int confirm_key_prog(void)
182{
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> ");
186 if (confirm_yesno())
ea6ebe21 187 return 1;
1fd93c6e
PA
188
189 puts("Authentication key programming aborted\n");
190 return 0;
191}
192static int do_mmcrpmb_key(cmd_tbl_t *cmdtp, int flag,
193 int argc, char * const argv[])
194{
195 void *key_addr;
196 struct mmc *mmc = find_mmc_device(curr_device);
197
198 if (argc != 2)
199 return CMD_RET_USAGE;
200
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;
272cc70b 207 }
1fd93c6e 208 return CMD_RET_SUCCESS;
272cc70b 209}
1fd93c6e
PA
210static int do_mmcrpmb_read(cmd_tbl_t *cmdtp, int flag,
211 int argc, char * const argv[])
212{
213 u16 blk, cnt;
214 void *addr;
215 int n;
216 void *key_addr = NULL;
217 struct mmc *mmc = find_mmc_device(curr_device);
272cc70b 218
1fd93c6e
PA
219 if (argc < 4)
220 return CMD_RET_USAGE;
272cc70b 221
1fd93c6e
PA
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);
225
226 if (argc == 5)
227 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
228
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);
232
233 printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
234 if (n != cnt)
235 return CMD_RET_FAILURE;
236 return CMD_RET_SUCCESS;
237}
238static int do_mmcrpmb_write(cmd_tbl_t *cmdtp, int flag,
239 int argc, char * const argv[])
272cc70b 240{
1fd93c6e
PA
241 u16 blk, cnt;
242 void *addr;
243 int n;
244 void *key_addr;
245 struct mmc *mmc = find_mmc_device(curr_device);
6be95ccf 246
1fd93c6e 247 if (argc != 5)
4c12eeb8 248 return CMD_RET_USAGE;
272cc70b 249
1fd93c6e
PA
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);
254
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);
258
259 printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
260 if (n != cnt)
261 return CMD_RET_FAILURE;
262 return CMD_RET_SUCCESS;
263}
264static int do_mmcrpmb_counter(cmd_tbl_t *cmdtp, int flag,
265 int argc, char * const argv[])
266{
267 unsigned long counter;
268 struct mmc *mmc = find_mmc_device(curr_device);
269
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;
274}
275
276static 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, "", ""),
281};
282
283static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
284 int argc, char * const argv[])
285{
286 cmd_tbl_t *cp;
287 struct mmc *mmc;
288 char original_part;
289 int ret;
290
291 cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));
292
293 /* Drop the rpmb subcommand */
294 argc--;
295 argv++;
296
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;
301
1ae24a50 302 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
303 if (!mmc)
304 return CMD_RET_FAILURE;
305
306 if (!(mmc->version & MMC_VERSION_MMC)) {
307 printf("It is not a EMMC device\n");
308 return CMD_RET_FAILURE;
309 }
310 if (mmc->version < MMC_VERSION_4_41) {
311 printf("RPMB not supported before version 4.41\n");
312 return CMD_RET_FAILURE;
ea6ebe21 313 }
1fd93c6e 314 /* Switch to the RPMB partition */
873cc1d7
SW
315 original_part = mmc->block_dev.part_num;
316 if (mmc_select_hwpart(curr_device, MMC_PART_RPMB) != 0)
317 return CMD_RET_FAILURE;
1fd93c6e 318 ret = cp->cmd(cmdtp, flag, argc, argv);
272cc70b 319
1fd93c6e 320 /* Return to original partition */
873cc1d7
SW
321 if (mmc_select_hwpart(curr_device, original_part) != 0)
322 return CMD_RET_FAILURE;
1fd93c6e
PA
323 return ret;
324}
325#endif
9fd38372 326
1fd93c6e
PA
327static int do_mmc_read(cmd_tbl_t *cmdtp, int flag,
328 int argc, char * const argv[])
329{
330 struct mmc *mmc;
331 u32 blk, cnt, n;
332 void *addr;
e85649c7 333
1fd93c6e
PA
334 if (argc != 4)
335 return CMD_RET_USAGE;
ea6ebe21 336
1fd93c6e
PA
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);
272cc70b 340
1ae24a50 341 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
342 if (!mmc)
343 return CMD_RET_FAILURE;
ea6ebe21 344
1fd93c6e
PA
345 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
346 curr_device, blk, cnt);
9fd38372 347
7c4213f6 348 n = mmc->block_dev.block_read(&mmc->block_dev, blk, cnt, addr);
1fd93c6e
PA
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");
8f3b9642 352
1fd93c6e
PA
353 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
354}
355static int do_mmc_write(cmd_tbl_t *cmdtp, int flag,
356 int argc, char * const argv[])
357{
358 struct mmc *mmc;
359 u32 blk, cnt, n;
360 void *addr;
8f3b9642 361
1fd93c6e
PA
362 if (argc != 4)
363 return CMD_RET_USAGE;
272cc70b 364
1fd93c6e
PA
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);
bc897b1d 368
1ae24a50 369 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
370 if (!mmc)
371 return CMD_RET_FAILURE;
bc897b1d 372
1fd93c6e
PA
373 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
374 curr_device, blk, cnt);
272cc70b 375
1fd93c6e
PA
376 if (mmc_getwp(mmc) == 1) {
377 printf("Error: card is write protected!\n");
378 return CMD_RET_FAILURE;
379 }
7c4213f6 380 n = mmc->block_dev.block_write(&mmc->block_dev, blk, cnt, addr);
1fd93c6e 381 printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
792970b0 382
1fd93c6e
PA
383 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
384}
385static int do_mmc_erase(cmd_tbl_t *cmdtp, int flag,
386 int argc, char * const argv[])
387{
388 struct mmc *mmc;
389 u32 blk, cnt, n;
2a91c913 390
1fd93c6e
PA
391 if (argc != 3)
392 return CMD_RET_USAGE;
792970b0 393
1fd93c6e
PA
394 blk = simple_strtoul(argv[1], NULL, 16);
395 cnt = simple_strtoul(argv[2], NULL, 16);
5a99b9de 396
1ae24a50 397 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
398 if (!mmc)
399 return CMD_RET_FAILURE;
5a99b9de 400
1fd93c6e
PA
401 printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
402 curr_device, blk, cnt);
5a99b9de 403
1fd93c6e
PA
404 if (mmc_getwp(mmc) == 1) {
405 printf("Error: card is write protected!\n");
406 return CMD_RET_FAILURE;
407 }
7c4213f6 408 n = mmc->block_dev.block_erase(&mmc->block_dev, blk, cnt);
1fd93c6e 409 printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
b01e6fe6 410
1fd93c6e
PA
411 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
412}
413static int do_mmc_rescan(cmd_tbl_t *cmdtp, int flag,
414 int argc, char * const argv[])
415{
416 struct mmc *mmc;
2a91c913 417
941944e4
SW
418 mmc = init_mmc_device(curr_device, true);
419 if (!mmc)
1fd93c6e 420 return CMD_RET_FAILURE;
2a91c913 421
1fd93c6e
PA
422 return CMD_RET_SUCCESS;
423}
424static int do_mmc_part(cmd_tbl_t *cmdtp, int flag,
425 int argc, char * const argv[])
426{
4101f687 427 struct blk_desc *mmc_dev;
1fd93c6e
PA
428 struct mmc *mmc;
429
1ae24a50 430 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
431 if (!mmc)
432 return CMD_RET_FAILURE;
433
434 mmc_dev = mmc_get_dev(curr_device);
435 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
436 print_part(mmc_dev);
437 return CMD_RET_SUCCESS;
438 }
439
440 puts("get mmc type error!\n");
441 return CMD_RET_FAILURE;
442}
443static int do_mmc_dev(cmd_tbl_t *cmdtp, int flag,
444 int argc, char * const argv[])
445{
60dc58f7 446 int dev, part = 0, ret;
1fd93c6e
PA
447 struct mmc *mmc;
448
449 if (argc == 1) {
450 dev = curr_device;
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",
458 PART_ACCESS_MASK);
459 return CMD_RET_FAILURE;
33ace362 460 }
1fd93c6e
PA
461 } else {
462 return CMD_RET_USAGE;
463 }
33ace362 464
a5710920 465 mmc = init_mmc_device(dev, true);
1fd93c6e
PA
466 if (!mmc)
467 return CMD_RET_FAILURE;
468
60dc58f7
SW
469 ret = mmc_select_hwpart(dev, part);
470 printf("switch to partitions #%d, %s\n",
471 part, (!ret) ? "OK" : "ERROR");
472 if (ret)
473 return 1;
474
1fd93c6e
PA
475 curr_device = dev;
476 if (mmc->part_config == MMCPART_NOAVAILABLE)
477 printf("mmc%d is current device\n", curr_device);
478 else
479 printf("mmc%d(part %d) is current device\n",
873cc1d7 480 curr_device, mmc->block_dev.hwpart);
33ace362 481
1fd93c6e
PA
482 return CMD_RET_SUCCESS;
483}
484static int do_mmc_list(cmd_tbl_t *cmdtp, int flag,
485 int argc, char * const argv[])
486{
487 print_mmc_devices('\n');
488 return CMD_RET_SUCCESS;
489}
c599f53b 490
189f963a
DSC
491static int parse_hwpart_user(struct mmc_hwpart_conf *pconf,
492 int argc, char * const argv[])
493{
494 int i = 0;
495
496 memset(&pconf->user, 0, sizeof(pconf->user));
497
498 while (i < argc) {
499 if (!strcmp(argv[i], "enh")) {
500 if (i + 2 >= argc)
501 return -1;
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);
506 i += 3;
507 } else if (!strcmp(argv[i], "wrrel")) {
508 if (i + 1 >= argc)
509 return -1;
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;
515 else
516 return -1;
517 i += 2;
518 } else {
519 break;
520 }
521 }
522 return i;
523}
524
525static int parse_hwpart_gp(struct mmc_hwpart_conf *pconf, int pidx,
526 int argc, char * const argv[])
527{
528 int i;
529
530 memset(&pconf->gp_part[pidx], 0, sizeof(pconf->gp_part[pidx]));
531
532 if (1 >= argc)
533 return -1;
534 pconf->gp_part[pidx].size = simple_strtoul(argv[0], NULL, 10);
535
536 i = 1;
537 while (i < argc) {
538 if (!strcmp(argv[i], "enh")) {
539 pconf->gp_part[pidx].enhanced = 1;
540 i += 1;
541 } else if (!strcmp(argv[i], "wrrel")) {
542 if (i + 1 >= argc)
543 return -1;
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;
549 else
550 return -1;
551 i += 2;
552 } else {
553 break;
554 }
555 }
556 return i;
557}
558
c599f53b
DSC
559static int do_mmc_hwpartition(cmd_tbl_t *cmdtp, int flag,
560 int argc, char * const argv[])
561{
562 struct mmc *mmc;
563 struct mmc_hwpart_conf pconf = { };
564 enum mmc_hwpart_conf_mode mode = MMC_HWPART_CONF_CHECK;
189f963a 565 int i, r, pidx;
c599f53b
DSC
566
567 mmc = init_mmc_device(curr_device, false);
568 if (!mmc)
569 return CMD_RET_FAILURE;
570
571 if (argc < 1)
572 return CMD_RET_USAGE;
573 i = 1;
574 while (i < argc) {
189f963a
DSC
575 if (!strcmp(argv[i], "user")) {
576 i++;
577 r = parse_hwpart_user(&pconf, argc-i, &argv[i]);
578 if (r < 0)
c599f53b 579 return CMD_RET_USAGE;
189f963a 580 i += r;
c599f53b
DSC
581 } else if (!strncmp(argv[i], "gp", 2) &&
582 strlen(argv[i]) == 3 &&
583 argv[i][2] >= '1' && argv[i][2] <= '4') {
c599f53b 584 pidx = argv[i][2] - '1';
189f963a
DSC
585 i++;
586 r = parse_hwpart_gp(&pconf, pidx, argc-i, &argv[i]);
587 if (r < 0)
588 return CMD_RET_USAGE;
589 i += r;
c599f53b
DSC
590 } else if (!strcmp(argv[i], "check")) {
591 mode = MMC_HWPART_CONF_CHECK;
592 i++;
593 } else if (!strcmp(argv[i], "set")) {
594 mode = MMC_HWPART_CONF_SET;
595 i++;
596 } else if (!strcmp(argv[i], "complete")) {
597 mode = MMC_HWPART_CONF_COMPLETE;
598 i++;
599 } else {
600 return CMD_RET_USAGE;
601 }
602 }
603
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");
610 } else {
611 puts("\tNo enhanced user data area\n");
612 }
189f963a
DSC
613 if (pconf.user.wr_rel_change)
614 printf("\tUser partition write reliability: %s\n",
615 pconf.user.wr_rel_set ? "on" : "off");
c599f53b
DSC
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 ?
621 " ENH\n" : "\n");
622 } else {
623 printf("\tNo GP%i partition\n", pidx+1);
624 }
189f963a
DSC
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");
c599f53b
DSC
628 }
629
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;
635 } else {
189f963a 636 puts("Failed!\n");
c599f53b
DSC
637 return CMD_RET_FAILURE;
638 }
639}
640
1fd93c6e
PA
641#ifdef CONFIG_SUPPORT_EMMC_BOOT
642static int do_mmc_bootbus(cmd_tbl_t *cmdtp, int flag,
643 int argc, char * const argv[])
644{
645 int dev;
646 struct mmc *mmc;
647 u8 width, reset, mode;
648
649 if (argc != 5)
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);
655
1ae24a50 656 mmc = init_mmc_device(dev, false);
1fd93c6e
PA
657 if (!mmc)
658 return CMD_RET_FAILURE;
659
660 if (IS_SD(mmc)) {
661 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
662 return CMD_RET_FAILURE;
2a91c913 663 }
ab71188c 664
1fd93c6e
PA
665 /* acknowledge to be sent during boot operation */
666 return mmc_set_boot_bus_width(mmc, width, reset, mode);
667}
668static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
669 int argc, char * const argv[])
670{
671 int dev;
672 struct mmc *mmc;
673 u32 bootsize, rpmbsize;
ab71188c 674
1fd93c6e
PA
675 if (argc != 4)
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);
680
1ae24a50 681 mmc = init_mmc_device(dev, false);
1fd93c6e
PA
682 if (!mmc)
683 return CMD_RET_FAILURE;
684
685 if (IS_SD(mmc)) {
686 printf("It is not a EMMC device\n");
687 return CMD_RET_FAILURE;
ab71188c
MN
688 }
689
1fd93c6e
PA
690 if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
691 printf("EMMC boot partition Size change Failed.\n");
692 return CMD_RET_FAILURE;
693 }
e85649c7 694
1fd93c6e
PA
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;
698}
699static int do_mmc_partconf(cmd_tbl_t *cmdtp, int flag,
700 int argc, char * const argv[])
701{
702 int dev;
703 struct mmc *mmc;
704 u8 ack, part_num, access;
272cc70b 705
1fd93c6e
PA
706 if (argc != 5)
707 return CMD_RET_USAGE;
272cc70b 708
1fd93c6e
PA
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);
d23d8d7e 713
1ae24a50 714 mmc = init_mmc_device(dev, false);
1fd93c6e
PA
715 if (!mmc)
716 return CMD_RET_FAILURE;
717
718 if (IS_SD(mmc)) {
719 puts("PARTITION_CONFIG only exists on eMMC\n");
720 return CMD_RET_FAILURE;
721 }
722
723 /* acknowledge to be sent during boot operation */
724 return mmc_set_part_conf(mmc, ack, part_num, access);
725}
726static int do_mmc_rst_func(cmd_tbl_t *cmdtp, int flag,
727 int argc, char * const argv[])
728{
729 int dev;
730 struct mmc *mmc;
731 u8 enable;
732
733 /*
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.
737 */
738 if (argc != 3)
739 return CMD_RET_USAGE;
740
741 dev = simple_strtoul(argv[1], NULL, 10);
742 enable = simple_strtoul(argv[2], NULL, 10);
743
678e9316 744 if (enable > 2) {
1fd93c6e
PA
745 puts("Invalid RST_n_ENABLE value\n");
746 return CMD_RET_USAGE;
747 }
748
1ae24a50 749 mmc = init_mmc_device(dev, false);
1fd93c6e
PA
750 if (!mmc)
751 return CMD_RET_FAILURE;
752
753 if (IS_SD(mmc)) {
754 puts("RST_n_FUNCTION only exists on eMMC\n");
755 return CMD_RET_FAILURE;
756 }
272cc70b 757
1fd93c6e
PA
758 return mmc_set_rst_n_function(mmc, enable);
759}
760#endif
761static int do_mmc_setdsr(cmd_tbl_t *cmdtp, int flag,
762 int argc, char * const argv[])
763{
764 struct mmc *mmc;
765 u32 val;
766 int ret;
767
768 if (argc != 2)
769 return CMD_RET_USAGE;
770 val = simple_strtoul(argv[2], NULL, 16);
771
772 mmc = find_mmc_device(curr_device);
773 if (!mmc) {
774 printf("no mmc device at slot %x\n", curr_device);
775 return CMD_RET_FAILURE;
776 }
777 ret = mmc_set_dsr(mmc, val);
778 printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
779 if (!ret) {
780 mmc->has_init = 0;
781 if (mmc_init(mmc))
782 return CMD_RET_FAILURE;
783 else
784 return CMD_RET_SUCCESS;
272cc70b 785 }
1fd93c6e
PA
786 return ret;
787}
788
789static 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, "", ""),
189f963a 798 U_BOOT_CMD_MKENT(hwpartition, 28, 0, do_mmc_hwpartition, "", ""),
1fd93c6e
PA
799#ifdef CONFIG_SUPPORT_EMMC_BOOT
800 U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
fa7b8851 801 U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
1fd93c6e
PA
802 U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
803 U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
804#endif
805#ifdef CONFIG_SUPPORT_EMMC_RPMB
806 U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
807#endif
808 U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
809};
810
811static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
812{
813 cmd_tbl_t *cp;
814
815 cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));
816
817 /* Drop the mmc command */
818 argc--;
819 argv++;
820
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;
ea6ebe21 825
1fd93c6e
PA
826 if (curr_device < 0) {
827 if (get_mmc_num() > 0) {
828 curr_device = 0;
829 } else {
830 puts("No MMC device available\n");
831 return CMD_RET_FAILURE;
832 }
833 }
834 return cp->cmd(cmdtp, flag, argc, argv);
272cc70b
AF
835}
836
837U_BOOT_CMD(
189f963a 838 mmc, 29, 1, do_mmcops,
852dbfdd 839 "MMC sub system",
1fd93c6e
PA
840 "info - display info of the current MMC device\n"
841 "mmc read addr blk# cnt\n"
ea6ebe21 842 "mmc write addr blk# cnt\n"
e6f99a56 843 "mmc erase blk# cnt\n"
ea6ebe21
LW
844 "mmc rescan\n"
845 "mmc part - lists available partition on current mmc device\n"
bc897b1d 846 "mmc dev [dev] [part] - show or set current mmc device [partition]\n"
2a91c913 847 "mmc list - lists available devices\n"
c599f53b
DSC
848 "mmc hwpartition [args...] - does hardware partitioning\n"
849 " arguments (sizes in 512-byte blocks):\n"
189f963a
DSC
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"
c599f53b 852 " [check|set|complete] - mode, complete set partitioning completed\n"
189f963a
DSC
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"
2a91c913 855#ifdef CONFIG_SUPPORT_EMMC_BOOT
5a99b9de
TR
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"
f1fd957e
TR
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"
792970b0
TR
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"
33ace362
TR
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"
3511b4e2 865#endif
1fd93c6e
PA
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"
871#endif
872 "mmc setdsr <value> - set DSR register value\n"
2a91c913 873 );
1fd93c6e
PA
874
875/* Old command kept for compatibility. Same as 'mmc info' */
876U_BOOT_CMD(
877 mmcinfo, 1, 0, do_mmcinfo,
878 "display MMC info",
879 "- display info of the current MMC device"
880);
881
2a91c913 882#endif /* !CONFIG_GENERIC_MMC */