[U-Boot] [PATCH 08/18] mmc: display size and start of eMMC enhanced user data area in mmcinfo
Diego Santa Cruz
Diego.SantaCruz at spinetix.com
Fri Nov 28 10:10:35 CET 2014
This adds output to show the eMMC enhanced user data area size and offset
along with the partition sizes in mmcinfo's output.
---
common/cmd_mmc.c | 11 ++++++++---
1 files changed, 8 insertions(+), 3 deletions(-)
diff --git a/common/cmd_mmc.c b/common/cmd_mmc.c
index bc02273..aa5ba0e 100644
--- a/common/cmd_mmc.c
+++ b/common/cmd_mmc.c
@@ -96,10 +96,15 @@ static void print_mmcinfo(struct mmc *mmc)
if (!IS_SD(mmc) && (mmc->version >= MMC_VERSION_4_41)) {
bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
+ bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
puts("User Capacity: ");
- print_size(mmc->capacity_user,
- has_enh && (mmc->part_attr & EXT_CSD_ENH_USR) ?
- " ENH\n" : "\n");
+ print_size(mmc->capacity_user, usr_enh ? " ENH\n" : "\n");
+ 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");
+ }
puts("Boot Capacity: ");
print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
puts("RPMB Capacity: ");
--
1.7.1
More information about the U-Boot
mailing list