Skip to content
Snippets Groups Projects
Commit 7a96ec74 authored by Jean-Jacques Hiblot's avatar Jean-Jacques Hiblot Committed by Jaehoon Chung
Browse files

cmd: mmc: display the mode name and current bus speed in the mmc info


Display the mode name when the user execute 'mmc info'. Also instead of
displaying tran_speed, display the actual bus speed.

Signed-off-by: default avatarJean-Jacques Hiblot <jjhiblot@ti.com>
Reviewed-by: default avatarSimon Glass <sjg@chromium.org>
parent 05038576
No related branches found
No related tags found
No related merge requests found
...@@ -23,7 +23,8 @@ static void print_mmcinfo(struct mmc *mmc) ...@@ -23,7 +23,8 @@ static void print_mmcinfo(struct mmc *mmc)
(mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff, (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
(mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff); (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
printf("Tran Speed: %d\n", mmc->tran_speed); printf("Bus Speed: %d\n", mmc->clock);
printf("Mode : %s\n", mmc_mode_name(mmc->selected_mode));
printf("Rd Block Len: %d\n", mmc->read_bl_len); printf("Rd Block Len: %d\n", mmc->read_bl_len);
printf("%s version %d.%d", IS_SD(mmc) ? "SD" : "MMC", printf("%s version %d.%d", IS_SD(mmc) ? "SD" : "MMC",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment