diff options
author | Tom Rini <trini@konsulko.com> | 2020-11-29 11:12:59 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-11-29 11:12:59 -0500 |
commit | a7ab4b71d563b6e0b65f911a8bf7d6950625982e (patch) | |
tree | f277c78904d831239653fc2f56e00e286b1d0734 /include | |
parent | fc4c2f7f85165c5e0f72ce79849b4deb54a48ab3 (diff) | |
parent | b3dc016caade00e07d5ae45042c9be42f611d625 (diff) | |
download | u-boot-a7ab4b71d563b6e0b65f911a8bf7d6950625982e.tar.gz |
Merge tag 'mmc-2020-11-29' of https://gitlab.denx.de/u-boot/custodians/u-boot-mmcWIP/29Nov2020
- mmc minor update for better debug and error check
- fsl_esdhc sysctl set and make sure delay check for HS400
Diffstat (limited to 'include')
-rw-r--r-- | include/fsl_esdhc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/fsl_esdhc.h b/include/fsl_esdhc.h index e6f1c75e27..850a304bd7 100644 --- a/include/fsl_esdhc.h +++ b/include/fsl_esdhc.h @@ -187,8 +187,12 @@ /* DLL config 0 register */ #define DLL_ENABLE 0x80000000 +#define DLL_RESET 0x40000000 #define DLL_FREQ_SEL 0x08000000 +/* DLL status 0 register */ +#define DLL_STS_SLV_LOCK 0x08000000 + #define MAX_TUNING_LOOP 40 #define HOSTVER_VENDOR(x) (((x) >> 8) & 0xff) |