mmc: correct the HS400 initialization process
authorBOUGH CHEN <haibo.chen@nxp.com>
Tue, 26 Mar 2019 06:24:17 +0000 (06:24 +0000)
committerTom Rini <trini@konsulko.com>
Fri, 29 Mar 2019 14:53:18 +0000 (10:53 -0400)
commit5cf12031a426d53f75b9add334641875797f636d
treea0f8a5156ef8ef6b8454da923a7398218737ba11
parent1111ff671f65a71f8577fe145b53f1f0c920faa4
mmc: correct the HS400 initialization process

After the commit b9a2a0e2e9c0 ("mmc: Add support for downgrading
HS200/HS400 to HS mode"), it add a parameter in mmc_set_card_speed()
which indicates that the HS200/HS400 to HS downgrade is happening.

During the HS400 initialization, first select to HS200, and config
the related clock rate, then downgrade to HS mode. So here also need
to config the downgrade value to be true for two reasons. First,
make sure in the function mmc_set_card_speed(), after switch to HS
mode, first config the clock rate, then read the EXT_CSD, avoid
receiving data of EXT_CSD in HS mode at 200MHz. Second, after issue
the MMC_CMD_SWITCH command, it need to wait a bit then switch bus
properties.

Test on i.MX8QM MEK board, some Micron eMMC will stuck in transfer
mode in this case, and USDHC will never get data transfer complete
status, cause the uboot hang.

Signed-off-by: Haibo Chen <haibo.chen@nxp.com>
Acked-by: Marek Vasut <marek.vasut@gmail.com>
drivers/mmc/mmc.c