]> git.baikalelectronics.ru Git - uboot.git/commit
mmc: fsl_esdhc: make sure delay chain locked for HS400
authorYangbo Lu <yangbo.lu@nxp.com>
Tue, 20 Oct 2020 03:04:52 +0000 (11:04 +0800)
committerPeng Fan <peng.fan@nxp.com>
Sat, 28 Nov 2020 02:39:44 +0000 (10:39 +0800)
commitb6033df7f50f13e0a5e08a4d4e528ae309dff076
tree0535a2e17bf25b4d0f368f16ad533606ca373acb
parentef18581715d6596347e83e167235607036b368d8
mmc: fsl_esdhc: make sure delay chain locked for HS400

For eMMC HS400 mode, the DLL reset is a required step for mmc rescan.
This step has not been documented in reference manual, but the RM will
be fixed sooner or later.

In previous commit to support eMMC HS400,
  5f1b695 mmc: fsl_esdhc: support eMMC HS400 mode

the steps to configure DLL could be found in commit message,
  13. Set DLLCFG0[DLL_ENABLE] and DLLCFG0[DLL_FREQ_SEL].
  14. Wait for delay chain to lock.

these would be fixed as,
  13.   Set DLLCFG0[DLL_ENABLE] and DLLCFG0[DLL_FREQ_SEL].
  13.1  Write DLLCFG0[DLL_RESET] to 1 and wait for 1us,
        then write DLLCFG0[DLL_RESET]
  14.   Wait for delay chain to lock.

This patch is to add the step of DLL reset, and make sure delay chain
locked for HS400.

Fixes: 5f1b695795fc ("mmc: fsl_esdhc: support eMMC HS400 mode")
Signed-off-by: Yangbo Lu <yangbo.lu@nxp.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
drivers/mmc/fsl_esdhc.c
include/fsl_esdhc.h