diff mbox series

[v2] mmc: fsl_esdhc_imx: check the clock stable status after config the clock rate.

Message ID 1598522573-10988-1-git-send-email-haibo.chen@nxp.com
State Superseded
Delegated to: Stefano Babic
Headers show
Series [v2] mmc: fsl_esdhc_imx: check the clock stable status after config the clock rate. | expand

Commit Message

Bough Chen Aug. 27, 2020, 10:02 a.m. UTC
From: Haibo Chen <haibo.chen@nxp.com>

Currently, after config the clock rate, delay 10ms, this is quite a rough
method. Check the clock stable status in the present status register is
enough.

Tested-by: Ji Luo <ji.luo@nxp.com>
Signed-off-by: Haibo Chen <haibo.chen@nxp.com>
---
 drivers/mmc/fsl_esdhc_imx.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

Comments

Peng Fan Aug. 28, 2020, 5:38 a.m. UTC | #1
> Subject: [PATCH v2] mmc: fsl_esdhc_imx: check the clock stable status after
> config the clock rate.
> 
> From: Haibo Chen <haibo.chen@nxp.com>
> 
> Currently, after config the clock rate, delay 10ms, this is quite a rough method.
> Check the clock stable status in the present status register is enough.
> 
> Tested-by: Ji Luo <ji.luo@nxp.com>
> Signed-off-by: Haibo Chen <haibo.chen@nxp.com>
> ---
>  drivers/mmc/fsl_esdhc_imx.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/mmc/fsl_esdhc_imx.c b/drivers/mmc/fsl_esdhc_imx.c
> index 788677984b..8f7ac5b7a3 100644
> --- a/drivers/mmc/fsl_esdhc_imx.c
> +++ b/drivers/mmc/fsl_esdhc_imx.c
> @@ -36,6 +36,7 @@
>  #include <dt-structs.h>
>  #include <mapmem.h>
>  #include <dm/ofnode.h>
> +#include <linux/iopoll.h>
> 
>  #if !CONFIG_IS_ENABLED(BLK)
>  #include "mmc_private.h"
> @@ -631,6 +632,8 @@ static void set_sysctl(struct fsl_esdhc_priv *priv,
> struct mmc *mmc, uint clock)  {
>  	struct fsl_esdhc *regs = priv->esdhc_regs;
>  	int div = 1;
> +	u32 tmp;
> +	int ret;
>  #ifdef ARCH_MXC
>  #ifdef CONFIG_MX53
>  	/* For i.MX53 eSDHCv3, SYSCTL.SDCLKFS may not be set to 0. */ @@
> -664,7 +667,9 @@ static void set_sysctl(struct fsl_esdhc_priv *priv, struct
> mmc *mmc, uint clock)
> 
>  	esdhc_clrsetbits32(&regs->sysctl, SYSCTL_CLOCK_MASK, clk);
> 
> -	udelay(10000);
> +	ret = readl_poll_timeout(&regs->prsstat, tmp, tmp & PRSSTAT_SDSTB,

To avoid breaking others, not i.MX, please add access io.

Thanks,
Peng.

> 100);
> +	if (ret)
> +		pr_warn("fsl_esdhc_imx: Internal clock never stabilised.\n");
> 
>  #ifdef CONFIG_FSL_USDHC
>  	esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN |
> VENDORSPEC_CKEN);
> --
> 2.17.1
diff mbox series

Patch

diff --git a/drivers/mmc/fsl_esdhc_imx.c b/drivers/mmc/fsl_esdhc_imx.c
index 788677984b..8f7ac5b7a3 100644
--- a/drivers/mmc/fsl_esdhc_imx.c
+++ b/drivers/mmc/fsl_esdhc_imx.c
@@ -36,6 +36,7 @@ 
 #include <dt-structs.h>
 #include <mapmem.h>
 #include <dm/ofnode.h>
+#include <linux/iopoll.h>
 
 #if !CONFIG_IS_ENABLED(BLK)
 #include "mmc_private.h"
@@ -631,6 +632,8 @@  static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock)
 {
 	struct fsl_esdhc *regs = priv->esdhc_regs;
 	int div = 1;
+	u32 tmp;
+	int ret;
 #ifdef ARCH_MXC
 #ifdef CONFIG_MX53
 	/* For i.MX53 eSDHCv3, SYSCTL.SDCLKFS may not be set to 0. */
@@ -664,7 +667,9 @@  static void set_sysctl(struct fsl_esdhc_priv *priv, struct mmc *mmc, uint clock)
 
 	esdhc_clrsetbits32(&regs->sysctl, SYSCTL_CLOCK_MASK, clk);
 
-	udelay(10000);
+	ret = readl_poll_timeout(&regs->prsstat, tmp, tmp & PRSSTAT_SDSTB, 100);
+	if (ret)
+		pr_warn("fsl_esdhc_imx: Internal clock never stabilised.\n");
 
 #ifdef CONFIG_FSL_USDHC
 	esdhc_setbits32(&regs->vendorspec, VENDORSPEC_PEREN | VENDORSPEC_CKEN);