Skip to content
Snippets Groups Projects
Commit cf39f3f3 authored by Marek Vasut's avatar Marek Vasut
Browse files

mmc: renesas-sdhi: Wait after reconfiguring pins


The IP requires some time to recuperate after the IO pin
properties were changed. Add a delay to assure this.

Signed-off-by: default avatarMarek Vasut <marek.vasut+renesas@gmail.com>
Cc: Jaehoon Chung <jh80.chung@samsung.com>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
parent 5ee7c9dc
No related branches found
No related tags found
No related merge requests found
...@@ -289,6 +289,9 @@ out: ...@@ -289,6 +289,9 @@ out:
static int renesas_sdhi_set_ios(struct udevice *dev) static int renesas_sdhi_set_ios(struct udevice *dev)
{ {
int ret = matsu_sd_set_ios(dev); int ret = matsu_sd_set_ios(dev);
mdelay(10);
#if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT) #if CONFIG_IS_ENABLED(MMC_HS200_SUPPORT)
struct matsu_sd_priv *priv = dev_get_priv(dev); struct matsu_sd_priv *priv = dev_get_priv(dev);
......
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