mmc.c 25.0 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0+
2 3 4 5 6 7 8
/*
 * (C) Copyright 2003
 * Kyle Harris, kharris@nexus-tech.net
 */

#include <common.h>
#include <command.h>
9
#include <console.h>
10
#include <mmc.h>
J
Jassi Brar 已提交
11 12
#include <sparse_format.h>
#include <image-sparse.h>
13

14
static int curr_device = -1;
A
Andy Fleming 已提交
15 16 17

static void print_mmcinfo(struct mmc *mmc)
{
18 19
	int i;

20
	printf("Device: %s\n", mmc->cfg->name);
A
Andy Fleming 已提交
21 22 23 24 25 26
	printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
	printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
	printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
			(mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
			(mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);

27
	printf("Bus Speed: %d\n", mmc->clock);
28
#if CONFIG_IS_ENABLED(MMC_VERBOSE)
29
	printf("Mode : %s\n", mmc_mode_name(mmc->selected_mode));
30 31 32
	mmc_dump_capabilities("card capabilities", mmc->card_caps);
	mmc_dump_capabilities("host capabilities", mmc->host_caps);
#endif
A
Andy Fleming 已提交
33 34
	printf("Rd Block Len: %d\n", mmc->read_bl_len);

35 36 37 38 39 40
	printf("%s version %d.%d", IS_SD(mmc) ? "SD" : "MMC",
			EXTRACT_SDMMC_MAJOR_VERSION(mmc->version),
			EXTRACT_SDMMC_MINOR_VERSION(mmc->version));
	if (EXTRACT_SDMMC_CHANGE_VERSION(mmc->version) != 0)
		printf(".%d", EXTRACT_SDMMC_CHANGE_VERSION(mmc->version));
	printf("\n");
A
Andy Fleming 已提交
41 42

	printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
43 44
	puts("Capacity: ");
	print_size(mmc->capacity, "\n");
A
Andy Fleming 已提交
45

46 47
	printf("Bus Width: %d-bit%s\n", mmc->bus_width,
			mmc->ddr_mode ? " DDR" : "");
48

49
#if CONFIG_IS_ENABLED(MMC_WRITE)
50 51
	puts("Erase Group Size: ");
	print_size(((u64)mmc->erase_grp_size) << 9, "\n");
52
#endif
53

54
	if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
55
		bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
56
		bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
57

58
#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
59 60
		puts("HC WP Group Size: ");
		print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
61
#endif
62

63
		puts("User Capacity: ");
64 65 66 67 68
		print_size(mmc->capacity_user, usr_enh ? " ENH" : "");
		if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_USR)
			puts(" WRREL\n");
		else
			putc('\n');
69 70 71 72 73 74
		if (usr_enh) {
			puts("User Enhanced Start: ");
			print_size(mmc->enh_user_start, "\n");
			puts("User Enhanced Size: ");
			print_size(mmc->enh_user_size, "\n");
		}
75
		puts("Boot Capacity: ");
76
		print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
77
		puts("RPMB Capacity: ");
78
		print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
79

80
		for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
81 82
			bool is_enh = has_enh &&
				(mmc->part_attr & EXT_CSD_ENH_GP(i));
83
			if (mmc->capacity_gp[i]) {
84
				printf("GP%i Capacity: ", i+1);
85
				print_size(mmc->capacity_gp[i],
86 87 88 89 90
					   is_enh ? " ENH" : "");
				if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_GP(i))
					puts(" WRREL\n");
				else
					putc('\n');
91 92 93
			}
		}
	}
A
Andy Fleming 已提交
94
}
95
static struct mmc *init_mmc_device(int dev, bool force_init)
96 97 98 99 100 101 102
{
	struct mmc *mmc;
	mmc = find_mmc_device(dev);
	if (!mmc) {
		printf("no mmc device at slot %x\n", dev);
		return NULL;
	}
103

104 105 106
	if (!mmc_getcd(mmc))
		force_init = true;

107 108
	if (force_init)
		mmc->has_init = 0;
109 110
	if (mmc_init(mmc))
		return NULL;
111 112 113 114 115 116

#ifdef CONFIG_BLOCK_CACHE
	struct blk_desc *bd = mmc_get_blk_desc(mmc);
	blkcache_invalidate(bd->if_type, bd->devnum);
#endif

117 118
	return mmc;
}
K
Kim Phillips 已提交
119
static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
A
Andy Fleming 已提交
120 121 122
{
	struct mmc *mmc;

123 124 125 126 127 128 129 130
	if (curr_device < 0) {
		if (get_mmc_num() > 0)
			curr_device = 0;
		else {
			puts("No MMC device available\n");
			return 1;
		}
	}
A
Andy Fleming 已提交
131

132
	mmc = init_mmc_device(curr_device, false);
133 134
	if (!mmc)
		return CMD_RET_FAILURE;
A
Andy Fleming 已提交
135

136 137 138
	print_mmcinfo(mmc);
	return CMD_RET_SUCCESS;
}
A
Andy Fleming 已提交
139

140
#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
141 142 143 144 145 146
static int confirm_key_prog(void)
{
	puts("Warning: Programming authentication key can be done only once !\n"
	     "         Use this command only if you are sure of what you are doing,\n"
	     "Really perform the key programming? <y/N> ");
	if (confirm_yesno())
147
		return 1;
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166

	puts("Authentication key programming aborted\n");
	return 0;
}
static int do_mmcrpmb_key(cmd_tbl_t *cmdtp, int flag,
			  int argc, char * const argv[])
{
	void *key_addr;
	struct mmc *mmc = find_mmc_device(curr_device);

	if (argc != 2)
		return CMD_RET_USAGE;

	key_addr = (void *)simple_strtoul(argv[1], NULL, 16);
	if (!confirm_key_prog())
		return CMD_RET_FAILURE;
	if (mmc_rpmb_set_key(mmc, key_addr)) {
		printf("ERROR - Key already programmed ?\n");
		return CMD_RET_FAILURE;
A
Andy Fleming 已提交
167
	}
168
	return CMD_RET_SUCCESS;
A
Andy Fleming 已提交
169
}
170 171 172 173 174 175 176 177
static int do_mmcrpmb_read(cmd_tbl_t *cmdtp, int flag,
			   int argc, char * const argv[])
{
	u16 blk, cnt;
	void *addr;
	int n;
	void *key_addr = NULL;
	struct mmc *mmc = find_mmc_device(curr_device);
A
Andy Fleming 已提交
178

179 180
	if (argc < 4)
		return CMD_RET_USAGE;
A
Andy Fleming 已提交
181

182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
	addr = (void *)simple_strtoul(argv[1], NULL, 16);
	blk = simple_strtoul(argv[2], NULL, 16);
	cnt = simple_strtoul(argv[3], NULL, 16);

	if (argc == 5)
		key_addr = (void *)simple_strtoul(argv[4], NULL, 16);

	printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
	       curr_device, blk, cnt);
	n =  mmc_rpmb_read(mmc, addr, blk, cnt, key_addr);

	printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
	if (n != cnt)
		return CMD_RET_FAILURE;
	return CMD_RET_SUCCESS;
}
static int do_mmcrpmb_write(cmd_tbl_t *cmdtp, int flag,
			    int argc, char * const argv[])
A
Andy Fleming 已提交
200
{
201 202 203 204 205
	u16 blk, cnt;
	void *addr;
	int n;
	void *key_addr;
	struct mmc *mmc = find_mmc_device(curr_device);
206

207
	if (argc != 5)
208
		return CMD_RET_USAGE;
A
Andy Fleming 已提交
209

210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258
	addr = (void *)simple_strtoul(argv[1], NULL, 16);
	blk = simple_strtoul(argv[2], NULL, 16);
	cnt = simple_strtoul(argv[3], NULL, 16);
	key_addr = (void *)simple_strtoul(argv[4], NULL, 16);

	printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
	       curr_device, blk, cnt);
	n =  mmc_rpmb_write(mmc, addr, blk, cnt, key_addr);

	printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
	if (n != cnt)
		return CMD_RET_FAILURE;
	return CMD_RET_SUCCESS;
}
static int do_mmcrpmb_counter(cmd_tbl_t *cmdtp, int flag,
			      int argc, char * const argv[])
{
	unsigned long counter;
	struct mmc *mmc = find_mmc_device(curr_device);

	if (mmc_rpmb_get_counter(mmc, &counter))
		return CMD_RET_FAILURE;
	printf("RPMB Write counter= %lx\n", counter);
	return CMD_RET_SUCCESS;
}

static cmd_tbl_t cmd_rpmb[] = {
	U_BOOT_CMD_MKENT(key, 2, 0, do_mmcrpmb_key, "", ""),
	U_BOOT_CMD_MKENT(read, 5, 1, do_mmcrpmb_read, "", ""),
	U_BOOT_CMD_MKENT(write, 5, 0, do_mmcrpmb_write, "", ""),
	U_BOOT_CMD_MKENT(counter, 1, 1, do_mmcrpmb_counter, "", ""),
};

static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
		      int argc, char * const argv[])
{
	cmd_tbl_t *cp;
	struct mmc *mmc;
	char original_part;
	int ret;

	cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));

	/* Drop the rpmb subcommand */
	argc--;
	argv++;

	if (cp == NULL || argc > cp->maxargs)
		return CMD_RET_USAGE;
259
	if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
260 261
		return CMD_RET_SUCCESS;

262
	mmc = init_mmc_device(curr_device, false);
263 264 265 266 267 268 269 270 271 272
	if (!mmc)
		return CMD_RET_FAILURE;

	if (!(mmc->version & MMC_VERSION_MMC)) {
		printf("It is not a EMMC device\n");
		return CMD_RET_FAILURE;
	}
	if (mmc->version < MMC_VERSION_4_41) {
		printf("RPMB not supported before version 4.41\n");
		return CMD_RET_FAILURE;
273
	}
274
	/* Switch to the RPMB partition */
275
#ifndef CONFIG_BLK
M
Marek Vasut 已提交
276
	original_part = mmc->block_dev.hwpart;
277 278 279
#else
	original_part = mmc_get_blk_desc(mmc)->hwpart;
#endif
280 281
	if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, MMC_PART_RPMB) !=
	    0)
282
		return CMD_RET_FAILURE;
283
	ret = cp->cmd(cmdtp, flag, argc, argv);
A
Andy Fleming 已提交
284

285
	/* Return to original partition */
286 287
	if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, original_part) !=
	    0)
288
		return CMD_RET_FAILURE;
289 290 291
	return ret;
}
#endif
292

293 294 295 296 297 298
static int do_mmc_read(cmd_tbl_t *cmdtp, int flag,
		       int argc, char * const argv[])
{
	struct mmc *mmc;
	u32 blk, cnt, n;
	void *addr;
299

300 301
	if (argc != 4)
		return CMD_RET_USAGE;
302

303 304 305
	addr = (void *)simple_strtoul(argv[1], NULL, 16);
	blk = simple_strtoul(argv[2], NULL, 16);
	cnt = simple_strtoul(argv[3], NULL, 16);
A
Andy Fleming 已提交
306

307
	mmc = init_mmc_device(curr_device, false);
308 309
	if (!mmc)
		return CMD_RET_FAILURE;
310

311 312
	printf("\nMMC read: dev # %d, block # %d, count %d ... ",
	       curr_device, blk, cnt);
313

314
	n = blk_dread(mmc_get_blk_desc(mmc), blk, cnt, addr);
315
	printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
L
Lei Wen 已提交
316

317 318
	return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
}
319

320
#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
J
Jassi Brar 已提交
321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377
static lbaint_t mmc_sparse_write(struct sparse_storage *info, lbaint_t blk,
				 lbaint_t blkcnt, const void *buffer)
{
	struct blk_desc *dev_desc = info->priv;

	return blk_dwrite(dev_desc, blk, blkcnt, buffer);
}

static lbaint_t mmc_sparse_reserve(struct sparse_storage *info,
				   lbaint_t blk, lbaint_t blkcnt)
{
	return blkcnt;
}

static int do_mmc_sparse_write(cmd_tbl_t *cmdtp, int flag,
			       int argc, char * const argv[])
{
	struct sparse_storage sparse;
	struct blk_desc *dev_desc;
	struct mmc *mmc;
	char dest[11];
	void *addr;
	u32 blk;

	if (argc != 3)
		return CMD_RET_USAGE;

	addr = (void *)simple_strtoul(argv[1], NULL, 16);
	blk = simple_strtoul(argv[2], NULL, 16);

	if (!is_sparse_image(addr)) {
		printf("Not a sparse image\n");
		return CMD_RET_FAILURE;
	}

	mmc = init_mmc_device(curr_device, false);
	if (!mmc)
		return CMD_RET_FAILURE;

	printf("\nMMC Sparse write: dev # %d, block # %d ... ",
	       curr_device, blk);

	if (mmc_getwp(mmc) == 1) {
		printf("Error: card is write protected!\n");
		return CMD_RET_FAILURE;
	}

	dev_desc = mmc_get_blk_desc(mmc);
	sparse.priv = dev_desc;
	sparse.blksz = 512;
	sparse.start = blk;
	sparse.size = dev_desc->lba - blk;
	sparse.write = mmc_sparse_write;
	sparse.reserve = mmc_sparse_reserve;
	sparse.mssg = NULL;
	sprintf(dest, "0x" LBAF, sparse.start * sparse.blksz);

378
	if (write_sparse_image(&sparse, dest, addr, NULL))
J
Jassi Brar 已提交
379 380 381 382 383 384
		return CMD_RET_FAILURE;
	else
		return CMD_RET_SUCCESS;
}
#endif

385
#if CONFIG_IS_ENABLED(MMC_WRITE)
386 387 388 389 390 391
static int do_mmc_write(cmd_tbl_t *cmdtp, int flag,
			int argc, char * const argv[])
{
	struct mmc *mmc;
	u32 blk, cnt, n;
	void *addr;
L
Lei Wen 已提交
392

393 394
	if (argc != 4)
		return CMD_RET_USAGE;
A
Andy Fleming 已提交
395

396 397 398
	addr = (void *)simple_strtoul(argv[1], NULL, 16);
	blk = simple_strtoul(argv[2], NULL, 16);
	cnt = simple_strtoul(argv[3], NULL, 16);
399

400
	mmc = init_mmc_device(curr_device, false);
401 402
	if (!mmc)
		return CMD_RET_FAILURE;
403

404 405
	printf("\nMMC write: dev # %d, block # %d, count %d ... ",
	       curr_device, blk, cnt);
A
Andy Fleming 已提交
406

407 408 409 410
	if (mmc_getwp(mmc) == 1) {
		printf("Error: card is write protected!\n");
		return CMD_RET_FAILURE;
	}
411
	n = blk_dwrite(mmc_get_blk_desc(mmc), blk, cnt, addr);
412
	printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
413

414 415 416 417 418 419 420
	return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
}
static int do_mmc_erase(cmd_tbl_t *cmdtp, int flag,
			int argc, char * const argv[])
{
	struct mmc *mmc;
	u32 blk, cnt, n;
421

422 423
	if (argc != 3)
		return CMD_RET_USAGE;
424

425 426
	blk = simple_strtoul(argv[1], NULL, 16);
	cnt = simple_strtoul(argv[2], NULL, 16);
427

428
	mmc = init_mmc_device(curr_device, false);
429 430
	if (!mmc)
		return CMD_RET_FAILURE;
431

432 433
	printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
	       curr_device, blk, cnt);
434

435 436 437 438
	if (mmc_getwp(mmc) == 1) {
		printf("Error: card is write protected!\n");
		return CMD_RET_FAILURE;
	}
439
	n = blk_derase(mmc_get_blk_desc(mmc), blk, cnt);
440
	printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
441

442 443
	return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
}
444 445
#endif

446 447 448 449
static int do_mmc_rescan(cmd_tbl_t *cmdtp, int flag,
			 int argc, char * const argv[])
{
	struct mmc *mmc;
450

451 452
	mmc = init_mmc_device(curr_device, true);
	if (!mmc)
453
		return CMD_RET_FAILURE;
454

455 456 457 458 459
	return CMD_RET_SUCCESS;
}
static int do_mmc_part(cmd_tbl_t *cmdtp, int flag,
		       int argc, char * const argv[])
{
460
	struct blk_desc *mmc_dev;
461 462
	struct mmc *mmc;

463
	mmc = init_mmc_device(curr_device, false);
464 465 466
	if (!mmc)
		return CMD_RET_FAILURE;

467
	mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device);
468
	if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
469
		part_print(mmc_dev);
470 471 472 473 474 475 476 477 478
		return CMD_RET_SUCCESS;
	}

	puts("get mmc type error!\n");
	return CMD_RET_FAILURE;
}
static int do_mmc_dev(cmd_tbl_t *cmdtp, int flag,
		      int argc, char * const argv[])
{
479
	int dev, part = 0, ret;
480 481 482 483 484 485 486 487 488 489 490 491 492
	struct mmc *mmc;

	if (argc == 1) {
		dev = curr_device;
	} else if (argc == 2) {
		dev = simple_strtoul(argv[1], NULL, 10);
	} else if (argc == 3) {
		dev = (int)simple_strtoul(argv[1], NULL, 10);
		part = (int)simple_strtoul(argv[2], NULL, 10);
		if (part > PART_ACCESS_MASK) {
			printf("#part_num shouldn't be larger than %d\n",
			       PART_ACCESS_MASK);
			return CMD_RET_FAILURE;
493
		}
494 495 496
	} else {
		return CMD_RET_USAGE;
	}
497

498
	mmc = init_mmc_device(dev, true);
499 500 501
	if (!mmc)
		return CMD_RET_FAILURE;

502
	ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part);
503 504 505 506 507
	printf("switch to partitions #%d, %s\n",
	       part, (!ret) ? "OK" : "ERROR");
	if (ret)
		return 1;

508 509 510 511 512
	curr_device = dev;
	if (mmc->part_config == MMCPART_NOAVAILABLE)
		printf("mmc%d is current device\n", curr_device);
	else
		printf("mmc%d(part %d) is current device\n",
513
		       curr_device, mmc_get_blk_desc(mmc)->hwpart);
514

515 516 517 518 519 520 521 522
	return CMD_RET_SUCCESS;
}
static int do_mmc_list(cmd_tbl_t *cmdtp, int flag,
		       int argc, char * const argv[])
{
	print_mmc_devices('\n');
	return CMD_RET_SUCCESS;
}
523

524
#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
static int parse_hwpart_user(struct mmc_hwpart_conf *pconf,
			     int argc, char * const argv[])
{
	int i = 0;

	memset(&pconf->user, 0, sizeof(pconf->user));

	while (i < argc) {
		if (!strcmp(argv[i], "enh")) {
			if (i + 2 >= argc)
				return -1;
			pconf->user.enh_start =
				simple_strtoul(argv[i+1], NULL, 10);
			pconf->user.enh_size =
				simple_strtoul(argv[i+2], NULL, 10);
			i += 3;
		} else if (!strcmp(argv[i], "wrrel")) {
			if (i + 1 >= argc)
				return -1;
			pconf->user.wr_rel_change = 1;
			if (!strcmp(argv[i+1], "on"))
				pconf->user.wr_rel_set = 1;
			else if (!strcmp(argv[i+1], "off"))
				pconf->user.wr_rel_set = 0;
			else
				return -1;
			i += 2;
		} else {
			break;
		}
	}
	return i;
}

static int parse_hwpart_gp(struct mmc_hwpart_conf *pconf, int pidx,
			   int argc, char * const argv[])
{
	int i;

	memset(&pconf->gp_part[pidx], 0, sizeof(pconf->gp_part[pidx]));

	if (1 >= argc)
		return -1;
	pconf->gp_part[pidx].size = simple_strtoul(argv[0], NULL, 10);

	i = 1;
	while (i < argc) {
		if (!strcmp(argv[i], "enh")) {
			pconf->gp_part[pidx].enhanced = 1;
			i += 1;
		} else if (!strcmp(argv[i], "wrrel")) {
			if (i + 1 >= argc)
				return -1;
			pconf->gp_part[pidx].wr_rel_change = 1;
			if (!strcmp(argv[i+1], "on"))
				pconf->gp_part[pidx].wr_rel_set = 1;
			else if (!strcmp(argv[i+1], "off"))
				pconf->gp_part[pidx].wr_rel_set = 0;
			else
				return -1;
			i += 2;
		} else {
			break;
		}
	}
	return i;
}

593 594 595 596 597 598
static int do_mmc_hwpartition(cmd_tbl_t *cmdtp, int flag,
			      int argc, char * const argv[])
{
	struct mmc *mmc;
	struct mmc_hwpart_conf pconf = { };
	enum mmc_hwpart_conf_mode mode = MMC_HWPART_CONF_CHECK;
599
	int i, r, pidx;
600 601 602 603 604 605 606 607 608

	mmc = init_mmc_device(curr_device, false);
	if (!mmc)
		return CMD_RET_FAILURE;

	if (argc < 1)
		return CMD_RET_USAGE;
	i = 1;
	while (i < argc) {
609 610 611 612
		if (!strcmp(argv[i], "user")) {
			i++;
			r = parse_hwpart_user(&pconf, argc-i, &argv[i]);
			if (r < 0)
613
				return CMD_RET_USAGE;
614
			i += r;
615 616 617 618
		} else if (!strncmp(argv[i], "gp", 2) &&
			   strlen(argv[i]) == 3 &&
			   argv[i][2] >= '1' && argv[i][2] <= '4') {
			pidx = argv[i][2] - '1';
619 620 621 622 623
			i++;
			r = parse_hwpart_gp(&pconf, pidx, argc-i, &argv[i]);
			if (r < 0)
				return CMD_RET_USAGE;
			i += r;
624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646
		} else if (!strcmp(argv[i], "check")) {
			mode = MMC_HWPART_CONF_CHECK;
			i++;
		} else if (!strcmp(argv[i], "set")) {
			mode = MMC_HWPART_CONF_SET;
			i++;
		} else if (!strcmp(argv[i], "complete")) {
			mode = MMC_HWPART_CONF_COMPLETE;
			i++;
		} else {
			return CMD_RET_USAGE;
		}
	}

	puts("Partition configuration:\n");
	if (pconf.user.enh_size) {
		puts("\tUser Enhanced Start: ");
		print_size(((u64)pconf.user.enh_start) << 9, "\n");
		puts("\tUser Enhanced Size: ");
		print_size(((u64)pconf.user.enh_size) << 9, "\n");
	} else {
		puts("\tNo enhanced user data area\n");
	}
647 648 649
	if (pconf.user.wr_rel_change)
		printf("\tUser partition write reliability: %s\n",
		       pconf.user.wr_rel_set ? "on" : "off");
650 651 652 653 654 655 656 657 658
	for (pidx = 0; pidx < 4; pidx++) {
		if (pconf.gp_part[pidx].size) {
			printf("\tGP%i Capacity: ", pidx+1);
			print_size(((u64)pconf.gp_part[pidx].size) << 9,
				   pconf.gp_part[pidx].enhanced ?
				   " ENH\n" : "\n");
		} else {
			printf("\tNo GP%i partition\n", pidx+1);
		}
659 660 661
		if (pconf.gp_part[pidx].wr_rel_change)
			printf("\tGP%i write reliability: %s\n", pidx+1,
			       pconf.gp_part[pidx].wr_rel_set ? "on" : "off");
662 663 664 665 666 667 668 669
	}

	if (!mmc_hwpart_config(mmc, &pconf, mode)) {
		if (mode == MMC_HWPART_CONF_COMPLETE)
			puts("Partitioning successful, "
			     "power-cycle to make effective\n");
		return CMD_RET_SUCCESS;
	} else {
670
		puts("Failed!\n");
671 672 673
		return CMD_RET_FAILURE;
	}
}
674
#endif
675

676 677 678 679 680 681 682 683 684 685 686 687 688 689 690
#ifdef CONFIG_SUPPORT_EMMC_BOOT
static int do_mmc_bootbus(cmd_tbl_t *cmdtp, int flag,
			  int argc, char * const argv[])
{
	int dev;
	struct mmc *mmc;
	u8 width, reset, mode;

	if (argc != 5)
		return CMD_RET_USAGE;
	dev = simple_strtoul(argv[1], NULL, 10);
	width = simple_strtoul(argv[2], NULL, 10);
	reset = simple_strtoul(argv[3], NULL, 10);
	mode = simple_strtoul(argv[4], NULL, 10);

691
	mmc = init_mmc_device(dev, false);
692 693 694 695 696 697
	if (!mmc)
		return CMD_RET_FAILURE;

	if (IS_SD(mmc)) {
		puts("BOOT_BUS_WIDTH only exists on eMMC\n");
		return CMD_RET_FAILURE;
698
	}
M
Markus Niebel 已提交
699

700 701 702 703 704 705 706 707 708
	/* acknowledge to be sent during boot operation */
	return mmc_set_boot_bus_width(mmc, width, reset, mode);
}
static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
			      int argc, char * const argv[])
{
	int dev;
	struct mmc *mmc;
	u32 bootsize, rpmbsize;
M
Markus Niebel 已提交
709

710 711 712 713 714 715
	if (argc != 4)
		return CMD_RET_USAGE;
	dev = simple_strtoul(argv[1], NULL, 10);
	bootsize = simple_strtoul(argv[2], NULL, 10);
	rpmbsize = simple_strtoul(argv[3], NULL, 10);

716
	mmc = init_mmc_device(dev, false);
717 718 719 720 721 722
	if (!mmc)
		return CMD_RET_FAILURE;

	if (IS_SD(mmc)) {
		printf("It is not a EMMC device\n");
		return CMD_RET_FAILURE;
M
Markus Niebel 已提交
723 724
	}

725 726 727 728
	if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
		printf("EMMC boot partition Size change Failed.\n");
		return CMD_RET_FAILURE;
	}
729

730 731 732 733
	printf("EMMC boot partition Size %d MB\n", bootsize);
	printf("EMMC RPMB partition Size %d MB\n", rpmbsize);
	return CMD_RET_SUCCESS;
}
734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755

static int mmc_partconf_print(struct mmc *mmc)
{
	u8 ack, access, part;

	if (mmc->part_config == MMCPART_NOAVAILABLE) {
		printf("No part_config info for ver. 0x%x\n", mmc->version);
		return CMD_RET_FAILURE;
	}

	access = EXT_CSD_EXTRACT_PARTITION_ACCESS(mmc->part_config);
	ack = EXT_CSD_EXTRACT_BOOT_ACK(mmc->part_config);
	part = EXT_CSD_EXTRACT_BOOT_PART(mmc->part_config);

	printf("EXT_CSD[179], PARTITION_CONFIG:\n"
		"BOOT_ACK: 0x%x\n"
		"BOOT_PARTITION_ENABLE: 0x%x\n"
		"PARTITION_ACCESS: 0x%x\n", ack, part, access);

	return CMD_RET_SUCCESS;
}

756 757 758 759 760 761
static int do_mmc_partconf(cmd_tbl_t *cmdtp, int flag,
			   int argc, char * const argv[])
{
	int dev;
	struct mmc *mmc;
	u8 ack, part_num, access;
A
Andy Fleming 已提交
762

763
	if (argc != 2 && argc != 5)
764
		return CMD_RET_USAGE;
A
Andy Fleming 已提交
765

766
	dev = simple_strtoul(argv[1], NULL, 10);
767

768
	mmc = init_mmc_device(dev, false);
769 770 771 772 773 774 775 776
	if (!mmc)
		return CMD_RET_FAILURE;

	if (IS_SD(mmc)) {
		puts("PARTITION_CONFIG only exists on eMMC\n");
		return CMD_RET_FAILURE;
	}

777 778 779 780 781 782 783
	if (argc == 2)
		return mmc_partconf_print(mmc);

	ack = simple_strtoul(argv[2], NULL, 10);
	part_num = simple_strtoul(argv[3], NULL, 10);
	access = simple_strtoul(argv[4], NULL, 10);

784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804
	/* acknowledge to be sent during boot operation */
	return mmc_set_part_conf(mmc, ack, part_num, access);
}
static int do_mmc_rst_func(cmd_tbl_t *cmdtp, int flag,
			   int argc, char * const argv[])
{
	int dev;
	struct mmc *mmc;
	u8 enable;

	/*
	 * Set the RST_n_ENABLE bit of RST_n_FUNCTION
	 * The only valid values are 0x0, 0x1 and 0x2 and writing
	 * a value of 0x1 or 0x2 sets the value permanently.
	 */
	if (argc != 3)
		return CMD_RET_USAGE;

	dev = simple_strtoul(argv[1], NULL, 10);
	enable = simple_strtoul(argv[2], NULL, 10);

805
	if (enable > 2) {
806 807 808 809
		puts("Invalid RST_n_ENABLE value\n");
		return CMD_RET_USAGE;
	}

810
	mmc = init_mmc_device(dev, false);
811 812 813 814 815 816 817
	if (!mmc)
		return CMD_RET_FAILURE;

	if (IS_SD(mmc)) {
		puts("RST_n_FUNCTION only exists on eMMC\n");
		return CMD_RET_FAILURE;
	}
A
Andy Fleming 已提交
818

819 820 821 822 823 824 825 826 827 828 829 830
	return mmc_set_rst_n_function(mmc, enable);
}
#endif
static int do_mmc_setdsr(cmd_tbl_t *cmdtp, int flag,
			 int argc, char * const argv[])
{
	struct mmc *mmc;
	u32 val;
	int ret;

	if (argc != 2)
		return CMD_RET_USAGE;
831
	val = simple_strtoul(argv[1], NULL, 16);
832 833 834 835 836 837 838 839 840 841 842 843 844 845

	mmc = find_mmc_device(curr_device);
	if (!mmc) {
		printf("no mmc device at slot %x\n", curr_device);
		return CMD_RET_FAILURE;
	}
	ret = mmc_set_dsr(mmc, val);
	printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
	if (!ret) {
		mmc->has_init = 0;
		if (mmc_init(mmc))
			return CMD_RET_FAILURE;
		else
			return CMD_RET_SUCCESS;
A
Andy Fleming 已提交
846
	}
847 848 849
	return ret;
}

T
Tomas Melin 已提交
850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
#ifdef CONFIG_CMD_BKOPS_ENABLE
static int do_mmc_bkops_enable(cmd_tbl_t *cmdtp, int flag,
				   int argc, char * const argv[])
{
	int dev;
	struct mmc *mmc;

	if (argc != 2)
		return CMD_RET_USAGE;

	dev = simple_strtoul(argv[1], NULL, 10);

	mmc = init_mmc_device(dev, false);
	if (!mmc)
		return CMD_RET_FAILURE;

	if (IS_SD(mmc)) {
		puts("BKOPS_EN only exists on eMMC\n");
		return CMD_RET_FAILURE;
	}

	return mmc_set_bkops_enable(mmc);
}
#endif

875 876 877
static cmd_tbl_t cmd_mmc[] = {
	U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""),
	U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""),
878
#if CONFIG_IS_ENABLED(MMC_WRITE)
879 880
	U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""),
	U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""),
881 882 883
#endif
#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
	U_BOOT_CMD_MKENT(swrite, 3, 0, do_mmc_sparse_write, "", ""),
884
#endif
885 886 887 888
	U_BOOT_CMD_MKENT(rescan, 1, 1, do_mmc_rescan, "", ""),
	U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""),
	U_BOOT_CMD_MKENT(dev, 3, 0, do_mmc_dev, "", ""),
	U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
889
#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
890
	U_BOOT_CMD_MKENT(hwpartition, 28, 0, do_mmc_hwpartition, "", ""),
891
#endif
892 893
#ifdef CONFIG_SUPPORT_EMMC_BOOT
	U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
894
	U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
895 896 897
	U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
	U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
#endif
898
#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
899 900 901
	U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
#endif
	U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
T
Tomas Melin 已提交
902 903 904
#ifdef CONFIG_CMD_BKOPS_ENABLE
	U_BOOT_CMD_MKENT(bkops-enable, 2, 0, do_mmc_bkops_enable, "", ""),
#endif
905 906 907 908 909 910 911 912 913 914 915 916 917 918
};

static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
{
	cmd_tbl_t *cp;

	cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));

	/* Drop the mmc command */
	argc--;
	argv++;

	if (cp == NULL || argc > cp->maxargs)
		return CMD_RET_USAGE;
919
	if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
920
		return CMD_RET_SUCCESS;
921

922 923 924 925 926 927 928 929 930
	if (curr_device < 0) {
		if (get_mmc_num() > 0) {
			curr_device = 0;
		} else {
			puts("No MMC device available\n");
			return CMD_RET_FAILURE;
		}
	}
	return cp->cmd(cmdtp, flag, argc, argv);
A
Andy Fleming 已提交
931 932 933
}

U_BOOT_CMD(
934
	mmc, 29, 1, do_mmcops,
M
Mike Frysinger 已提交
935
	"MMC sub system",
936 937
	"info - display info of the current MMC device\n"
	"mmc read addr blk# cnt\n"
938
	"mmc write addr blk# cnt\n"
939
#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
J
Jassi Brar 已提交
940 941
	"mmc swrite addr blk#\n"
#endif
942
	"mmc erase blk# cnt\n"
943 944
	"mmc rescan\n"
	"mmc part - lists available partition on current mmc device\n"
945
	"mmc dev [dev] [part] - show or set current mmc device [partition]\n"
946
	"mmc list - lists available devices\n"
947
#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
948 949
	"mmc hwpartition [args...] - does hardware partitioning\n"
	"  arguments (sizes in 512-byte blocks):\n"
950 951
	"    [user [enh start cnt] [wrrel {on|off}]] - sets user data area attributes\n"
	"    [gp1|gp2|gp3|gp4 cnt [enh] [wrrel {on|off}]] - general purpose partition\n"
952
	"    [check|set|complete] - mode, complete set partitioning completed\n"
953 954
	"  WARNING: Partitioning is a write-once setting once it is set to complete.\n"
	"  Power cycling is required to initialize partitions after set to complete.\n"
955
#endif
956
#ifdef CONFIG_SUPPORT_EMMC_BOOT
957 958
	"mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
	" - Set the BOOT_BUS_WIDTH field of the specified device\n"
959 960
	"mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
	" - Change sizes of boot and RPMB partitions of specified device\n"
961 962
	"mmc partconf dev [boot_ack boot_partition partition_access]\n"
	" - Show or change the bits of the PARTITION_CONFIG field of the specified device\n"
963 964 965
	"mmc rst-function dev value\n"
	" - Change the RST_n_FUNCTION field of the specified device\n"
	"   WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
966
#endif
967
#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
968 969 970 971 972 973
	"mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
	"mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
	"mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
	"mmc rpmb counter - read the value of the write counter\n"
#endif
	"mmc setdsr <value> - set DSR register value\n"
T
Tomas Melin 已提交
974 975 976 977
#ifdef CONFIG_CMD_BKOPS_ENABLE
	"mmc bkops-enable <dev> - enable background operations handshake on device\n"
	"   WARNING: This is a write-once setting.\n"
#endif
978
	);
979 980 981 982 983 984 985

/* Old command kept for compatibility. Same as 'mmc info' */
U_BOOT_CMD(
	mmcinfo, 1, 0, do_mmcinfo,
	"display MMC info",
	"- display info of the current MMC device"
);