diff options
author | Tom Rini <trini@konsulko.com> | 2021-02-19 11:56:14 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-19 11:56:14 -0500 |
commit | a1a652e8016426e2d67148cab225cd5ec45189fb (patch) | |
tree | be761ff6a8b75f866ea2ff21195d843becfacbc7 /cmd/mmc.c | |
parent | 766927a7595a6f18fef460a06fdac370fd9e02cf (diff) | |
parent | 144d0574d5f3652008ef400e86cc66db5ef88736 (diff) |
Merge tag 'mmc-2021-2-19' of https://gitlab.denx.de/u-boot/custodians/u-boot-mmc
- mmc_spi improvement
- added mmc-pwrseq to remove duplicated code
- fix response timeout after switch command
- sdhci: skip cache invalidation if DMA is not used
Diffstat (limited to 'cmd/mmc.c')
-rw-r--r-- | cmd/mmc.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/mmc.c b/cmd/mmc.c index 1529a3e05dd..cb6b59f36a4 100644 --- a/cmd/mmc.c +++ b/cmd/mmc.c @@ -1017,13 +1017,13 @@ U_BOOT_CMD( " Power cycling is required to initialize partitions after set to complete.\n" #endif #ifdef CONFIG_SUPPORT_EMMC_BOOT - "mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n" + "mmc bootbus <dev> <boot_bus_width> <reset_boot_bus_width> <boot_mode>\n" " - Set the BOOT_BUS_WIDTH field of the specified device\n" "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n" " - Change sizes of boot and RPMB partitions of specified device\n" - "mmc partconf dev [boot_ack boot_partition partition_access]\n" + "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" - "mmc rst-function dev value\n" + "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" #endif |