]> Git Repo - J-u-boot.git/blame - cmd/mmc.c
watchdog: kconfig: Enable designware for rk3399
[J-u-boot.git] / cmd / mmc.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
71f95118
WD
2/*
3 * (C) Copyright 2003
4 * Kyle Harris, [email protected]
71f95118
WD
5 */
6
7#include <common.h>
8#include <command.h>
24b852a7 9#include <console.h>
71f95118 10#include <mmc.h>
732bc7ce
JB
11#include <sparse_format.h>
12#include <image-sparse.h>
71f95118 13
02e22c2d 14static int curr_device = -1;
272cc70b
AF
15
16static void print_mmcinfo(struct mmc *mmc)
17{
c5f0d3f1
DSC
18 int i;
19
93bfd616 20 printf("Device: %s\n", mmc->cfg->name);
272cc70b
AF
21 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
7a96ec74 27 printf("Bus Speed: %d\n", mmc->clock);
52d241df 28#if CONFIG_IS_ENABLED(MMC_VERBOSE)
41e30dcf 29 printf("Mode: %s\n", mmc_mode_name(mmc->selected_mode));
52d241df
JJH
30 mmc_dump_capabilities("card capabilities", mmc->card_caps);
31 mmc_dump_capabilities("host capabilities", mmc->host_caps);
32#endif
272cc70b
AF
33 printf("Rd Block Len: %d\n", mmc->read_bl_len);
34
4b7cee53
PA
35 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");
272cc70b
AF
41
42 printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
940e0782
MK
43 puts("Capacity: ");
44 print_size(mmc->capacity, "\n");
272cc70b 45
786e8f81
AG
46 printf("Bus Width: %d-bit%s\n", mmc->bus_width,
47 mmc->ddr_mode ? " DDR" : "");
c5f0d3f1 48
e6fa5a54 49#if CONFIG_IS_ENABLED(MMC_WRITE)
b0361526
DSC
50 puts("Erase Group Size: ");
51 print_size(((u64)mmc->erase_grp_size) << 9, "\n");
e6fa5a54 52#endif
b0361526 53
525ada21 54 if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
c3dbb4f9 55 bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
beb98a14 56 bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
d5210e45
HS
57 u8 wp, ext_csd[MMC_MAX_BLOCK_LEN];
58 int ret;
b0361526 59
b7a6e2c9 60#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
b0361526
DSC
61 puts("HC WP Group Size: ");
62 print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
b7a6e2c9 63#endif
b0361526 64
c5f0d3f1 65 puts("User Capacity: ");
9e41a00b
DSC
66 print_size(mmc->capacity_user, usr_enh ? " ENH" : "");
67 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_USR)
68 puts(" WRREL\n");
69 else
70 putc('\n');
beb98a14
DSC
71 if (usr_enh) {
72 puts("User Enhanced Start: ");
73 print_size(mmc->enh_user_start, "\n");
74 puts("User Enhanced Size: ");
75 print_size(mmc->enh_user_size, "\n");
76 }
c5f0d3f1 77 puts("Boot Capacity: ");
c3dbb4f9 78 print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
c5f0d3f1 79 puts("RPMB Capacity: ");
c3dbb4f9 80 print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
b0361526 81
c5f0d3f1 82 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
c3dbb4f9
DSC
83 bool is_enh = has_enh &&
84 (mmc->part_attr & EXT_CSD_ENH_GP(i));
c5f0d3f1 85 if (mmc->capacity_gp[i]) {
f289fd73 86 printf("GP%i Capacity: ", i+1);
c3dbb4f9 87 print_size(mmc->capacity_gp[i],
9e41a00b
DSC
88 is_enh ? " ENH" : "");
89 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_GP(i))
90 puts(" WRREL\n");
91 else
92 putc('\n');
c5f0d3f1
DSC
93 }
94 }
d5210e45
HS
95 ret = mmc_send_ext_csd(mmc, ext_csd);
96 if (ret)
97 return;
98 wp = ext_csd[EXT_CSD_BOOT_WP_STATUS];
99 for (i = 0; i < 2; ++i) {
100 printf("Boot area %d is ", i);
101 switch (wp & 3) {
102 case 0:
103 printf("not write protected\n");
104 break;
105 case 1:
106 printf("power on protected\n");
107 break;
108 case 2:
109 printf("permanently protected\n");
110 break;
111 default:
112 printf("in reserved protection state\n");
113 break;
114 }
115 wp >>= 2;
116 }
c5f0d3f1 117 }
272cc70b 118}
1ae24a50 119static struct mmc *init_mmc_device(int dev, bool force_init)
1fd93c6e
PA
120{
121 struct mmc *mmc;
122 mmc = find_mmc_device(dev);
123 if (!mmc) {
124 printf("no mmc device at slot %x\n", dev);
125 return NULL;
126 }
bcfde7ff 127
d2a08369
MV
128 if (!mmc_getcd(mmc))
129 force_init = true;
130
1ae24a50
SW
131 if (force_init)
132 mmc->has_init = 0;
1fd93c6e
PA
133 if (mmc_init(mmc))
134 return NULL;
1d044d32
MV
135
136#ifdef CONFIG_BLOCK_CACHE
137 struct blk_desc *bd = mmc_get_blk_desc(mmc);
138 blkcache_invalidate(bd->if_type, bd->devnum);
139#endif
140
1fd93c6e
PA
141 return mmc;
142}
088f1b19 143static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
272cc70b
AF
144{
145 struct mmc *mmc;
272cc70b 146
ea6ebe21
LW
147 if (curr_device < 0) {
148 if (get_mmc_num() > 0)
149 curr_device = 0;
150 else {
151 puts("No MMC device available\n");
152 return 1;
153 }
154 }
272cc70b 155
1ae24a50 156 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
157 if (!mmc)
158 return CMD_RET_FAILURE;
272cc70b 159
1fd93c6e
PA
160 print_mmcinfo(mmc);
161 return CMD_RET_SUCCESS;
162}
272cc70b 163
5a7b11e6 164#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
1fd93c6e
PA
165static int confirm_key_prog(void)
166{
167 puts("Warning: Programming authentication key can be done only once !\n"
168 " Use this command only if you are sure of what you are doing,\n"
169 "Really perform the key programming? <y/N> ");
170 if (confirm_yesno())
ea6ebe21 171 return 1;
1fd93c6e
PA
172
173 puts("Authentication key programming aborted\n");
174 return 0;
175}
176static int do_mmcrpmb_key(cmd_tbl_t *cmdtp, int flag,
177 int argc, char * const argv[])
178{
179 void *key_addr;
180 struct mmc *mmc = find_mmc_device(curr_device);
181
182 if (argc != 2)
183 return CMD_RET_USAGE;
184
185 key_addr = (void *)simple_strtoul(argv[1], NULL, 16);
186 if (!confirm_key_prog())
187 return CMD_RET_FAILURE;
188 if (mmc_rpmb_set_key(mmc, key_addr)) {
189 printf("ERROR - Key already programmed ?\n");
190 return CMD_RET_FAILURE;
272cc70b 191 }
1fd93c6e 192 return CMD_RET_SUCCESS;
272cc70b 193}
1fd93c6e
PA
194static int do_mmcrpmb_read(cmd_tbl_t *cmdtp, int flag,
195 int argc, char * const argv[])
196{
197 u16 blk, cnt;
198 void *addr;
199 int n;
200 void *key_addr = NULL;
201 struct mmc *mmc = find_mmc_device(curr_device);
272cc70b 202
1fd93c6e
PA
203 if (argc < 4)
204 return CMD_RET_USAGE;
272cc70b 205
1fd93c6e
PA
206 addr = (void *)simple_strtoul(argv[1], NULL, 16);
207 blk = simple_strtoul(argv[2], NULL, 16);
208 cnt = simple_strtoul(argv[3], NULL, 16);
209
210 if (argc == 5)
211 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
212
213 printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
214 curr_device, blk, cnt);
215 n = mmc_rpmb_read(mmc, addr, blk, cnt, key_addr);
216
217 printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
218 if (n != cnt)
219 return CMD_RET_FAILURE;
220 return CMD_RET_SUCCESS;
221}
222static int do_mmcrpmb_write(cmd_tbl_t *cmdtp, int flag,
223 int argc, char * const argv[])
272cc70b 224{
1fd93c6e
PA
225 u16 blk, cnt;
226 void *addr;
227 int n;
228 void *key_addr;
229 struct mmc *mmc = find_mmc_device(curr_device);
6be95ccf 230
1fd93c6e 231 if (argc != 5)
4c12eeb8 232 return CMD_RET_USAGE;
272cc70b 233
1fd93c6e
PA
234 addr = (void *)simple_strtoul(argv[1], NULL, 16);
235 blk = simple_strtoul(argv[2], NULL, 16);
236 cnt = simple_strtoul(argv[3], NULL, 16);
237 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
238
239 printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
240 curr_device, blk, cnt);
241 n = mmc_rpmb_write(mmc, addr, blk, cnt, key_addr);
242
243 printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
244 if (n != cnt)
245 return CMD_RET_FAILURE;
246 return CMD_RET_SUCCESS;
247}
248static int do_mmcrpmb_counter(cmd_tbl_t *cmdtp, int flag,
249 int argc, char * const argv[])
250{
251 unsigned long counter;
252 struct mmc *mmc = find_mmc_device(curr_device);
253
254 if (mmc_rpmb_get_counter(mmc, &counter))
255 return CMD_RET_FAILURE;
256 printf("RPMB Write counter= %lx\n", counter);
257 return CMD_RET_SUCCESS;
258}
259
260static cmd_tbl_t cmd_rpmb[] = {
261 U_BOOT_CMD_MKENT(key, 2, 0, do_mmcrpmb_key, "", ""),
262 U_BOOT_CMD_MKENT(read, 5, 1, do_mmcrpmb_read, "", ""),
263 U_BOOT_CMD_MKENT(write, 5, 0, do_mmcrpmb_write, "", ""),
264 U_BOOT_CMD_MKENT(counter, 1, 1, do_mmcrpmb_counter, "", ""),
265};
266
267static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
268 int argc, char * const argv[])
269{
270 cmd_tbl_t *cp;
271 struct mmc *mmc;
272 char original_part;
273 int ret;
274
275 cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));
276
277 /* Drop the rpmb subcommand */
278 argc--;
279 argv++;
280
281 if (cp == NULL || argc > cp->maxargs)
282 return CMD_RET_USAGE;
80a48dd4 283 if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
1fd93c6e
PA
284 return CMD_RET_SUCCESS;
285
1ae24a50 286 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
287 if (!mmc)
288 return CMD_RET_FAILURE;
289
290 if (!(mmc->version & MMC_VERSION_MMC)) {
71a3e5c5 291 printf("It is not an eMMC device\n");
1fd93c6e
PA
292 return CMD_RET_FAILURE;
293 }
294 if (mmc->version < MMC_VERSION_4_41) {
295 printf("RPMB not supported before version 4.41\n");
296 return CMD_RET_FAILURE;
ea6ebe21 297 }
1fd93c6e 298 /* Switch to the RPMB partition */
4dc80c87 299#ifndef CONFIG_BLK
b955e42b 300 original_part = mmc->block_dev.hwpart;
4dc80c87
KY
301#else
302 original_part = mmc_get_blk_desc(mmc)->hwpart;
303#endif
69f45cd5
SG
304 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, MMC_PART_RPMB) !=
305 0)
873cc1d7 306 return CMD_RET_FAILURE;
1fd93c6e 307 ret = cp->cmd(cmdtp, flag, argc, argv);
272cc70b 308
1fd93c6e 309 /* Return to original partition */
69f45cd5
SG
310 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, original_part) !=
311 0)
873cc1d7 312 return CMD_RET_FAILURE;
1fd93c6e
PA
313 return ret;
314}
315#endif
9fd38372 316
1fd93c6e
PA
317static int do_mmc_read(cmd_tbl_t *cmdtp, int flag,
318 int argc, char * const argv[])
319{
320 struct mmc *mmc;
321 u32 blk, cnt, n;
322 void *addr;
e85649c7 323
1fd93c6e
PA
324 if (argc != 4)
325 return CMD_RET_USAGE;
ea6ebe21 326
1fd93c6e
PA
327 addr = (void *)simple_strtoul(argv[1], NULL, 16);
328 blk = simple_strtoul(argv[2], NULL, 16);
329 cnt = simple_strtoul(argv[3], NULL, 16);
272cc70b 330
1ae24a50 331 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
332 if (!mmc)
333 return CMD_RET_FAILURE;
ea6ebe21 334
1fd93c6e
PA
335 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
336 curr_device, blk, cnt);
9fd38372 337
c40fdca6 338 n = blk_dread(mmc_get_blk_desc(mmc), blk, cnt, addr);
1fd93c6e 339 printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
8f3b9642 340
1fd93c6e
PA
341 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
342}
e6fa5a54 343
c232d14d 344#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
732bc7ce
JB
345static lbaint_t mmc_sparse_write(struct sparse_storage *info, lbaint_t blk,
346 lbaint_t blkcnt, const void *buffer)
347{
348 struct blk_desc *dev_desc = info->priv;
349
350 return blk_dwrite(dev_desc, blk, blkcnt, buffer);
351}
352
353static lbaint_t mmc_sparse_reserve(struct sparse_storage *info,
354 lbaint_t blk, lbaint_t blkcnt)
355{
356 return blkcnt;
357}
358
359static int do_mmc_sparse_write(cmd_tbl_t *cmdtp, int flag,
360 int argc, char * const argv[])
361{
362 struct sparse_storage sparse;
363 struct blk_desc *dev_desc;
364 struct mmc *mmc;
365 char dest[11];
366 void *addr;
367 u32 blk;
368
369 if (argc != 3)
370 return CMD_RET_USAGE;
371
372 addr = (void *)simple_strtoul(argv[1], NULL, 16);
373 blk = simple_strtoul(argv[2], NULL, 16);
374
375 if (!is_sparse_image(addr)) {
376 printf("Not a sparse image\n");
377 return CMD_RET_FAILURE;
378 }
379
380 mmc = init_mmc_device(curr_device, false);
381 if (!mmc)
382 return CMD_RET_FAILURE;
383
384 printf("\nMMC Sparse write: dev # %d, block # %d ... ",
385 curr_device, blk);
386
387 if (mmc_getwp(mmc) == 1) {
388 printf("Error: card is write protected!\n");
389 return CMD_RET_FAILURE;
390 }
391
392 dev_desc = mmc_get_blk_desc(mmc);
393 sparse.priv = dev_desc;
394 sparse.blksz = 512;
395 sparse.start = blk;
396 sparse.size = dev_desc->lba - blk;
397 sparse.write = mmc_sparse_write;
398 sparse.reserve = mmc_sparse_reserve;
399 sparse.mssg = NULL;
400 sprintf(dest, "0x" LBAF, sparse.start * sparse.blksz);
401
c4ded03e 402 if (write_sparse_image(&sparse, dest, addr, NULL))
732bc7ce
JB
403 return CMD_RET_FAILURE;
404 else
405 return CMD_RET_SUCCESS;
406}
407#endif
408
c232d14d 409#if CONFIG_IS_ENABLED(MMC_WRITE)
1fd93c6e
PA
410static int do_mmc_write(cmd_tbl_t *cmdtp, int flag,
411 int argc, char * const argv[])
412{
413 struct mmc *mmc;
414 u32 blk, cnt, n;
415 void *addr;
8f3b9642 416
1fd93c6e
PA
417 if (argc != 4)
418 return CMD_RET_USAGE;
272cc70b 419
1fd93c6e
PA
420 addr = (void *)simple_strtoul(argv[1], NULL, 16);
421 blk = simple_strtoul(argv[2], NULL, 16);
422 cnt = simple_strtoul(argv[3], NULL, 16);
bc897b1d 423
1ae24a50 424 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
425 if (!mmc)
426 return CMD_RET_FAILURE;
bc897b1d 427
1fd93c6e
PA
428 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
429 curr_device, blk, cnt);
272cc70b 430
1fd93c6e
PA
431 if (mmc_getwp(mmc) == 1) {
432 printf("Error: card is write protected!\n");
433 return CMD_RET_FAILURE;
434 }
c40fdca6 435 n = blk_dwrite(mmc_get_blk_desc(mmc), blk, cnt, addr);
1fd93c6e 436 printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
792970b0 437
1fd93c6e
PA
438 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
439}
440static int do_mmc_erase(cmd_tbl_t *cmdtp, int flag,
441 int argc, char * const argv[])
442{
443 struct mmc *mmc;
444 u32 blk, cnt, n;
2a91c913 445
1fd93c6e
PA
446 if (argc != 3)
447 return CMD_RET_USAGE;
792970b0 448
1fd93c6e
PA
449 blk = simple_strtoul(argv[1], NULL, 16);
450 cnt = simple_strtoul(argv[2], NULL, 16);
5a99b9de 451
1ae24a50 452 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
453 if (!mmc)
454 return CMD_RET_FAILURE;
5a99b9de 455
1fd93c6e
PA
456 printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
457 curr_device, blk, cnt);
5a99b9de 458
1fd93c6e
PA
459 if (mmc_getwp(mmc) == 1) {
460 printf("Error: card is write protected!\n");
461 return CMD_RET_FAILURE;
462 }
c40fdca6 463 n = blk_derase(mmc_get_blk_desc(mmc), blk, cnt);
1fd93c6e 464 printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
b01e6fe6 465
1fd93c6e
PA
466 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
467}
e6fa5a54
JJH
468#endif
469
1fd93c6e
PA
470static int do_mmc_rescan(cmd_tbl_t *cmdtp, int flag,
471 int argc, char * const argv[])
472{
473 struct mmc *mmc;
2a91c913 474
941944e4
SW
475 mmc = init_mmc_device(curr_device, true);
476 if (!mmc)
1fd93c6e 477 return CMD_RET_FAILURE;
2a91c913 478
1fd93c6e
PA
479 return CMD_RET_SUCCESS;
480}
481static int do_mmc_part(cmd_tbl_t *cmdtp, int flag,
482 int argc, char * const argv[])
483{
4101f687 484 struct blk_desc *mmc_dev;
1fd93c6e
PA
485 struct mmc *mmc;
486
1ae24a50 487 mmc = init_mmc_device(curr_device, false);
1fd93c6e
PA
488 if (!mmc)
489 return CMD_RET_FAILURE;
490
3c457f4d 491 mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device);
1fd93c6e 492 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
3e8bd469 493 part_print(mmc_dev);
1fd93c6e
PA
494 return CMD_RET_SUCCESS;
495 }
496
497 puts("get mmc type error!\n");
498 return CMD_RET_FAILURE;
499}
500static int do_mmc_dev(cmd_tbl_t *cmdtp, int flag,
501 int argc, char * const argv[])
502{
60dc58f7 503 int dev, part = 0, ret;
1fd93c6e
PA
504 struct mmc *mmc;
505
506 if (argc == 1) {
507 dev = curr_device;
508 } else if (argc == 2) {
509 dev = simple_strtoul(argv[1], NULL, 10);
510 } else if (argc == 3) {
511 dev = (int)simple_strtoul(argv[1], NULL, 10);
512 part = (int)simple_strtoul(argv[2], NULL, 10);
513 if (part > PART_ACCESS_MASK) {
514 printf("#part_num shouldn't be larger than %d\n",
515 PART_ACCESS_MASK);
516 return CMD_RET_FAILURE;
33ace362 517 }
1fd93c6e
PA
518 } else {
519 return CMD_RET_USAGE;
520 }
33ace362 521
a5710920 522 mmc = init_mmc_device(dev, true);
1fd93c6e
PA
523 if (!mmc)
524 return CMD_RET_FAILURE;
525
69f45cd5 526 ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part);
60dc58f7
SW
527 printf("switch to partitions #%d, %s\n",
528 part, (!ret) ? "OK" : "ERROR");
529 if (ret)
530 return 1;
531
1fd93c6e
PA
532 curr_device = dev;
533 if (mmc->part_config == MMCPART_NOAVAILABLE)
534 printf("mmc%d is current device\n", curr_device);
535 else
536 printf("mmc%d(part %d) is current device\n",
c40fdca6 537 curr_device, mmc_get_blk_desc(mmc)->hwpart);
33ace362 538
1fd93c6e
PA
539 return CMD_RET_SUCCESS;
540}
541static int do_mmc_list(cmd_tbl_t *cmdtp, int flag,
542 int argc, char * const argv[])
543{
544 print_mmc_devices('\n');
545 return CMD_RET_SUCCESS;
546}
c599f53b 547
cf17789e 548#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
189f963a
DSC
549static int parse_hwpart_user(struct mmc_hwpart_conf *pconf,
550 int argc, char * const argv[])
551{
552 int i = 0;
553
554 memset(&pconf->user, 0, sizeof(pconf->user));
555
556 while (i < argc) {
557 if (!strcmp(argv[i], "enh")) {
558 if (i + 2 >= argc)
559 return -1;
560 pconf->user.enh_start =
561 simple_strtoul(argv[i+1], NULL, 10);
562 pconf->user.enh_size =
563 simple_strtoul(argv[i+2], NULL, 10);
564 i += 3;
565 } else if (!strcmp(argv[i], "wrrel")) {
566 if (i + 1 >= argc)
567 return -1;
568 pconf->user.wr_rel_change = 1;
569 if (!strcmp(argv[i+1], "on"))
570 pconf->user.wr_rel_set = 1;
571 else if (!strcmp(argv[i+1], "off"))
572 pconf->user.wr_rel_set = 0;
573 else
574 return -1;
575 i += 2;
576 } else {
577 break;
578 }
579 }
580 return i;
581}
582
583static int parse_hwpart_gp(struct mmc_hwpart_conf *pconf, int pidx,
584 int argc, char * const argv[])
585{
586 int i;
587
588 memset(&pconf->gp_part[pidx], 0, sizeof(pconf->gp_part[pidx]));
589
590 if (1 >= argc)
591 return -1;
592 pconf->gp_part[pidx].size = simple_strtoul(argv[0], NULL, 10);
593
594 i = 1;
595 while (i < argc) {
596 if (!strcmp(argv[i], "enh")) {
597 pconf->gp_part[pidx].enhanced = 1;
598 i += 1;
599 } else if (!strcmp(argv[i], "wrrel")) {
600 if (i + 1 >= argc)
601 return -1;
602 pconf->gp_part[pidx].wr_rel_change = 1;
603 if (!strcmp(argv[i+1], "on"))
604 pconf->gp_part[pidx].wr_rel_set = 1;
605 else if (!strcmp(argv[i+1], "off"))
606 pconf->gp_part[pidx].wr_rel_set = 0;
607 else
608 return -1;
609 i += 2;
610 } else {
611 break;
612 }
613 }
614 return i;
615}
616
c599f53b
DSC
617static int do_mmc_hwpartition(cmd_tbl_t *cmdtp, int flag,
618 int argc, char * const argv[])
619{
620 struct mmc *mmc;
621 struct mmc_hwpart_conf pconf = { };
622 enum mmc_hwpart_conf_mode mode = MMC_HWPART_CONF_CHECK;
189f963a 623 int i, r, pidx;
c599f53b
DSC
624
625 mmc = init_mmc_device(curr_device, false);
626 if (!mmc)
627 return CMD_RET_FAILURE;
628
629 if (argc < 1)
630 return CMD_RET_USAGE;
631 i = 1;
632 while (i < argc) {
189f963a
DSC
633 if (!strcmp(argv[i], "user")) {
634 i++;
635 r = parse_hwpart_user(&pconf, argc-i, &argv[i]);
636 if (r < 0)
c599f53b 637 return CMD_RET_USAGE;
189f963a 638 i += r;
c599f53b
DSC
639 } else if (!strncmp(argv[i], "gp", 2) &&
640 strlen(argv[i]) == 3 &&
641 argv[i][2] >= '1' && argv[i][2] <= '4') {
c599f53b 642 pidx = argv[i][2] - '1';
189f963a
DSC
643 i++;
644 r = parse_hwpart_gp(&pconf, pidx, argc-i, &argv[i]);
645 if (r < 0)
646 return CMD_RET_USAGE;
647 i += r;
c599f53b
DSC
648 } else if (!strcmp(argv[i], "check")) {
649 mode = MMC_HWPART_CONF_CHECK;
650 i++;
651 } else if (!strcmp(argv[i], "set")) {
652 mode = MMC_HWPART_CONF_SET;
653 i++;
654 } else if (!strcmp(argv[i], "complete")) {
655 mode = MMC_HWPART_CONF_COMPLETE;
656 i++;
657 } else {
658 return CMD_RET_USAGE;
659 }
660 }
661
662 puts("Partition configuration:\n");
663 if (pconf.user.enh_size) {
664 puts("\tUser Enhanced Start: ");
665 print_size(((u64)pconf.user.enh_start) << 9, "\n");
666 puts("\tUser Enhanced Size: ");
667 print_size(((u64)pconf.user.enh_size) << 9, "\n");
668 } else {
669 puts("\tNo enhanced user data area\n");
670 }
189f963a
DSC
671 if (pconf.user.wr_rel_change)
672 printf("\tUser partition write reliability: %s\n",
673 pconf.user.wr_rel_set ? "on" : "off");
c599f53b
DSC
674 for (pidx = 0; pidx < 4; pidx++) {
675 if (pconf.gp_part[pidx].size) {
676 printf("\tGP%i Capacity: ", pidx+1);
677 print_size(((u64)pconf.gp_part[pidx].size) << 9,
678 pconf.gp_part[pidx].enhanced ?
679 " ENH\n" : "\n");
680 } else {
681 printf("\tNo GP%i partition\n", pidx+1);
682 }
189f963a
DSC
683 if (pconf.gp_part[pidx].wr_rel_change)
684 printf("\tGP%i write reliability: %s\n", pidx+1,
685 pconf.gp_part[pidx].wr_rel_set ? "on" : "off");
c599f53b
DSC
686 }
687
688 if (!mmc_hwpart_config(mmc, &pconf, mode)) {
689 if (mode == MMC_HWPART_CONF_COMPLETE)
690 puts("Partitioning successful, "
691 "power-cycle to make effective\n");
692 return CMD_RET_SUCCESS;
693 } else {
189f963a 694 puts("Failed!\n");
c599f53b
DSC
695 return CMD_RET_FAILURE;
696 }
697}
cf17789e 698#endif
c599f53b 699
1fd93c6e
PA
700#ifdef CONFIG_SUPPORT_EMMC_BOOT
701static int do_mmc_bootbus(cmd_tbl_t *cmdtp, int flag,
702 int argc, char * const argv[])
703{
704 int dev;
705 struct mmc *mmc;
706 u8 width, reset, mode;
707
708 if (argc != 5)
709 return CMD_RET_USAGE;
710 dev = simple_strtoul(argv[1], NULL, 10);
711 width = simple_strtoul(argv[2], NULL, 10);
712 reset = simple_strtoul(argv[3], NULL, 10);
713 mode = simple_strtoul(argv[4], NULL, 10);
714
1ae24a50 715 mmc = init_mmc_device(dev, false);
1fd93c6e
PA
716 if (!mmc)
717 return CMD_RET_FAILURE;
718
719 if (IS_SD(mmc)) {
720 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
721 return CMD_RET_FAILURE;
2a91c913 722 }
ab71188c 723
1fd93c6e
PA
724 /* acknowledge to be sent during boot operation */
725 return mmc_set_boot_bus_width(mmc, width, reset, mode);
726}
727static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
728 int argc, char * const argv[])
729{
730 int dev;
731 struct mmc *mmc;
732 u32 bootsize, rpmbsize;
ab71188c 733
1fd93c6e
PA
734 if (argc != 4)
735 return CMD_RET_USAGE;
736 dev = simple_strtoul(argv[1], NULL, 10);
737 bootsize = simple_strtoul(argv[2], NULL, 10);
738 rpmbsize = simple_strtoul(argv[3], NULL, 10);
739
1ae24a50 740 mmc = init_mmc_device(dev, false);
1fd93c6e
PA
741 if (!mmc)
742 return CMD_RET_FAILURE;
743
744 if (IS_SD(mmc)) {
71a3e5c5 745 printf("It is not an eMMC device\n");
1fd93c6e 746 return CMD_RET_FAILURE;
ab71188c
MN
747 }
748
1fd93c6e
PA
749 if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
750 printf("EMMC boot partition Size change Failed.\n");
751 return CMD_RET_FAILURE;
752 }
e85649c7 753
1fd93c6e
PA
754 printf("EMMC boot partition Size %d MB\n", bootsize);
755 printf("EMMC RPMB partition Size %d MB\n", rpmbsize);
756 return CMD_RET_SUCCESS;
757}
bdb60996
AD
758
759static int mmc_partconf_print(struct mmc *mmc)
760{
761 u8 ack, access, part;
762
763 if (mmc->part_config == MMCPART_NOAVAILABLE) {
764 printf("No part_config info for ver. 0x%x\n", mmc->version);
765 return CMD_RET_FAILURE;
766 }
767
768 access = EXT_CSD_EXTRACT_PARTITION_ACCESS(mmc->part_config);
769 ack = EXT_CSD_EXTRACT_BOOT_ACK(mmc->part_config);
770 part = EXT_CSD_EXTRACT_BOOT_PART(mmc->part_config);
771
772 printf("EXT_CSD[179], PARTITION_CONFIG:\n"
773 "BOOT_ACK: 0x%x\n"
774 "BOOT_PARTITION_ENABLE: 0x%x\n"
775 "PARTITION_ACCESS: 0x%x\n", ack, part, access);
776
777 return CMD_RET_SUCCESS;
778}
779
1fd93c6e
PA
780static int do_mmc_partconf(cmd_tbl_t *cmdtp, int flag,
781 int argc, char * const argv[])
782{
783 int dev;
784 struct mmc *mmc;
785 u8 ack, part_num, access;
272cc70b 786
bdb60996 787 if (argc != 2 && argc != 5)
1fd93c6e 788 return CMD_RET_USAGE;
272cc70b 789
1fd93c6e 790 dev = simple_strtoul(argv[1], NULL, 10);
d23d8d7e 791
1ae24a50 792 mmc = init_mmc_device(dev, false);
1fd93c6e
PA
793 if (!mmc)
794 return CMD_RET_FAILURE;
795
796 if (IS_SD(mmc)) {
797 puts("PARTITION_CONFIG only exists on eMMC\n");
798 return CMD_RET_FAILURE;
799 }
800
bdb60996
AD
801 if (argc == 2)
802 return mmc_partconf_print(mmc);
803
804 ack = simple_strtoul(argv[2], NULL, 10);
805 part_num = simple_strtoul(argv[3], NULL, 10);
806 access = simple_strtoul(argv[4], NULL, 10);
807
1fd93c6e
PA
808 /* acknowledge to be sent during boot operation */
809 return mmc_set_part_conf(mmc, ack, part_num, access);
810}
811static int do_mmc_rst_func(cmd_tbl_t *cmdtp, int flag,
812 int argc, char * const argv[])
813{
814 int dev;
815 struct mmc *mmc;
816 u8 enable;
817
818 /*
819 * Set the RST_n_ENABLE bit of RST_n_FUNCTION
820 * The only valid values are 0x0, 0x1 and 0x2 and writing
821 * a value of 0x1 or 0x2 sets the value permanently.
822 */
823 if (argc != 3)
824 return CMD_RET_USAGE;
825
826 dev = simple_strtoul(argv[1], NULL, 10);
827 enable = simple_strtoul(argv[2], NULL, 10);
828
678e9316 829 if (enable > 2) {
1fd93c6e
PA
830 puts("Invalid RST_n_ENABLE value\n");
831 return CMD_RET_USAGE;
832 }
833
1ae24a50 834 mmc = init_mmc_device(dev, false);
1fd93c6e
PA
835 if (!mmc)
836 return CMD_RET_FAILURE;
837
838 if (IS_SD(mmc)) {
839 puts("RST_n_FUNCTION only exists on eMMC\n");
840 return CMD_RET_FAILURE;
841 }
272cc70b 842
1fd93c6e
PA
843 return mmc_set_rst_n_function(mmc, enable);
844}
845#endif
846static int do_mmc_setdsr(cmd_tbl_t *cmdtp, int flag,
847 int argc, char * const argv[])
848{
849 struct mmc *mmc;
850 u32 val;
851 int ret;
852
853 if (argc != 2)
854 return CMD_RET_USAGE;
84c1dfe4 855 val = simple_strtoul(argv[1], NULL, 16);
1fd93c6e
PA
856
857 mmc = find_mmc_device(curr_device);
858 if (!mmc) {
859 printf("no mmc device at slot %x\n", curr_device);
860 return CMD_RET_FAILURE;
861 }
862 ret = mmc_set_dsr(mmc, val);
863 printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
864 if (!ret) {
865 mmc->has_init = 0;
866 if (mmc_init(mmc))
867 return CMD_RET_FAILURE;
868 else
869 return CMD_RET_SUCCESS;
272cc70b 870 }
1fd93c6e
PA
871 return ret;
872}
873
cd3d4880
TM
874#ifdef CONFIG_CMD_BKOPS_ENABLE
875static int do_mmc_bkops_enable(cmd_tbl_t *cmdtp, int flag,
876 int argc, char * const argv[])
877{
878 int dev;
879 struct mmc *mmc;
880
881 if (argc != 2)
882 return CMD_RET_USAGE;
883
884 dev = simple_strtoul(argv[1], NULL, 10);
885
886 mmc = init_mmc_device(dev, false);
887 if (!mmc)
888 return CMD_RET_FAILURE;
889
890 if (IS_SD(mmc)) {
891 puts("BKOPS_EN only exists on eMMC\n");
892 return CMD_RET_FAILURE;
893 }
894
895 return mmc_set_bkops_enable(mmc);
896}
897#endif
898
0469d846
HS
899static int do_mmc_boot_wp(cmd_tbl_t *cmdtp, int flag,
900 int argc, char * const argv[])
901{
902 int err;
903 struct mmc *mmc;
904
905 mmc = init_mmc_device(curr_device, false);
906 if (!mmc)
907 return CMD_RET_FAILURE;
908 if (IS_SD(mmc)) {
909 printf("It is not an eMMC device\n");
910 return CMD_RET_FAILURE;
911 }
912 err = mmc_boot_wp(mmc);
913 if (err)
914 return CMD_RET_FAILURE;
915 printf("boot areas protected\n");
916 return CMD_RET_SUCCESS;
917}
918
1fd93c6e
PA
919static cmd_tbl_t cmd_mmc[] = {
920 U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""),
921 U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""),
0469d846 922 U_BOOT_CMD_MKENT(wp, 1, 0, do_mmc_boot_wp, "", ""),
e6fa5a54 923#if CONFIG_IS_ENABLED(MMC_WRITE)
1fd93c6e
PA
924 U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""),
925 U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""),
c232d14d
AK
926#endif
927#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
928 U_BOOT_CMD_MKENT(swrite, 3, 0, do_mmc_sparse_write, "", ""),
e6fa5a54 929#endif
1fd93c6e
PA
930 U_BOOT_CMD_MKENT(rescan, 1, 1, do_mmc_rescan, "", ""),
931 U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""),
932 U_BOOT_CMD_MKENT(dev, 3, 0, do_mmc_dev, "", ""),
933 U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
cf17789e 934#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
189f963a 935 U_BOOT_CMD_MKENT(hwpartition, 28, 0, do_mmc_hwpartition, "", ""),
cf17789e 936#endif
1fd93c6e
PA
937#ifdef CONFIG_SUPPORT_EMMC_BOOT
938 U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
fa7b8851 939 U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
1fd93c6e
PA
940 U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
941 U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
942#endif
5a7b11e6 943#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
1fd93c6e
PA
944 U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
945#endif
946 U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
cd3d4880
TM
947#ifdef CONFIG_CMD_BKOPS_ENABLE
948 U_BOOT_CMD_MKENT(bkops-enable, 2, 0, do_mmc_bkops_enable, "", ""),
949#endif
1fd93c6e
PA
950};
951
952static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
953{
954 cmd_tbl_t *cp;
955
956 cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));
957
958 /* Drop the mmc command */
959 argc--;
960 argv++;
961
962 if (cp == NULL || argc > cp->maxargs)
963 return CMD_RET_USAGE;
80a48dd4 964 if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
1fd93c6e 965 return CMD_RET_SUCCESS;
ea6ebe21 966
1fd93c6e
PA
967 if (curr_device < 0) {
968 if (get_mmc_num() > 0) {
969 curr_device = 0;
970 } else {
971 puts("No MMC device available\n");
972 return CMD_RET_FAILURE;
973 }
974 }
975 return cp->cmd(cmdtp, flag, argc, argv);
272cc70b
AF
976}
977
978U_BOOT_CMD(
189f963a 979 mmc, 29, 1, do_mmcops,
852dbfdd 980 "MMC sub system",
1fd93c6e
PA
981 "info - display info of the current MMC device\n"
982 "mmc read addr blk# cnt\n"
ea6ebe21 983 "mmc write addr blk# cnt\n"
c232d14d 984#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
732bc7ce
JB
985 "mmc swrite addr blk#\n"
986#endif
e6f99a56 987 "mmc erase blk# cnt\n"
ea6ebe21
LW
988 "mmc rescan\n"
989 "mmc part - lists available partition on current mmc device\n"
bc897b1d 990 "mmc dev [dev] [part] - show or set current mmc device [partition]\n"
2a91c913 991 "mmc list - lists available devices\n"
0469d846 992 "mmc wp - power on write protect booot partitions\n"
84593679 993#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
c599f53b
DSC
994 "mmc hwpartition [args...] - does hardware partitioning\n"
995 " arguments (sizes in 512-byte blocks):\n"
189f963a
DSC
996 " [user [enh start cnt] [wrrel {on|off}]] - sets user data area attributes\n"
997 " [gp1|gp2|gp3|gp4 cnt [enh] [wrrel {on|off}]] - general purpose partition\n"
c599f53b 998 " [check|set|complete] - mode, complete set partitioning completed\n"
189f963a
DSC
999 " WARNING: Partitioning is a write-once setting once it is set to complete.\n"
1000 " Power cycling is required to initialize partitions after set to complete.\n"
84593679 1001#endif
2a91c913 1002#ifdef CONFIG_SUPPORT_EMMC_BOOT
5a99b9de
TR
1003 "mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
1004 " - Set the BOOT_BUS_WIDTH field of the specified device\n"
f1fd957e
TR
1005 "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
1006 " - Change sizes of boot and RPMB partitions of specified device\n"
bdb60996
AD
1007 "mmc partconf dev [boot_ack boot_partition partition_access]\n"
1008 " - Show or change the bits of the PARTITION_CONFIG field of the specified device\n"
33ace362
TR
1009 "mmc rst-function dev value\n"
1010 " - Change the RST_n_FUNCTION field of the specified device\n"
1011 " WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
3511b4e2 1012#endif
5a7b11e6 1013#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
1fd93c6e
PA
1014 "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
1015 "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
1016 "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
1017 "mmc rpmb counter - read the value of the write counter\n"
1018#endif
1019 "mmc setdsr <value> - set DSR register value\n"
cd3d4880
TM
1020#ifdef CONFIG_CMD_BKOPS_ENABLE
1021 "mmc bkops-enable <dev> - enable background operations handshake on device\n"
1022 " WARNING: This is a write-once setting.\n"
1023#endif
2a91c913 1024 );
1fd93c6e
PA
1025
1026/* Old command kept for compatibility. Same as 'mmc info' */
1027U_BOOT_CMD(
1028 mmcinfo, 1, 0, do_mmcinfo,
1029 "display MMC info",
1030 "- display info of the current MMC device"
1031);
This page took 0.683445 seconds and 4 git commands to generate.