[PATCH v2 03/11] mmc: fsl_esdhc_imx: fix voltage validation

Jaehoon Chung jh80.chung at samsung.com
Mon Nov 15 09:36:09 CET 2021


On 11/13/21 4:15 AM, Sean Anderson wrote:
> [ fsl_esdhc commit 5b05fc0310cd933acf76ee661577c6b07a95e684 ]
> 
> Voltage validation should be done by CMD8. Current comparison between
> mmc_cfg voltages and host voltage capabilities is meaningless.
> So drop current comparison and let voltage validation is through CMD8.
> 
> Signed-off-by: Yangbo Lu <yangbo.lu at nxp.com>
> Signed-off-by: Sean Anderson <sean.anderson at seco.com>

Reviewed-by: Jaehoon Chung <jh80.chung at samsung.com>

Best Regards,
Jaehoon Chung

> ---
> 
> (no changes since v1)
> 
>  drivers/mmc/fsl_esdhc_imx.c | 35 +++++++++++++----------------------
>  include/fsl_esdhc_imx.h     | 12 ++++++------
>  2 files changed, 19 insertions(+), 28 deletions(-)
> 
> diff --git a/drivers/mmc/fsl_esdhc_imx.c b/drivers/mmc/fsl_esdhc_imx.c
> index 40886f37aa..b91dda27f9 100644
> --- a/drivers/mmc/fsl_esdhc_imx.c
> +++ b/drivers/mmc/fsl_esdhc_imx.c
> @@ -1164,7 +1164,7 @@ static int fsl_esdhc_init(struct fsl_esdhc_priv *priv,
>  {
>  	struct mmc_config *cfg;
>  	struct fsl_esdhc *regs;
> -	u32 caps, voltage_caps;
> +	u32 caps;
>  	int ret;
>  
>  	if (!priv)
> @@ -1203,9 +1203,7 @@ static int fsl_esdhc_init(struct fsl_esdhc_priv *priv,
>  	memset(cfg, '\0', sizeof(*cfg));
>  #endif
>  
> -	voltage_caps = 0;
>  	caps = esdhc_read32(&regs->hostcapblt);
> -
>  #ifdef CONFIG_MCF5441x
>  	/*
>  	 * MCF5441x RM declares in more points that sdhc clock speed must
> @@ -1216,31 +1214,24 @@ static int fsl_esdhc_init(struct fsl_esdhc_priv *priv,
>  #endif
>  
>  #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC135
> -	caps = caps & ~(ESDHC_HOSTCAPBLT_SRS |
> -			ESDHC_HOSTCAPBLT_VS18 | ESDHC_HOSTCAPBLT_VS30);
> +	caps &= ~(HOSTCAPBLT_SRS | HOSTCAPBLT_VS18 | HOSTCAPBLT_VS30);
>  #endif
>  
> -	if (caps & ESDHC_HOSTCAPBLT_VS18)
> -		voltage_caps |= MMC_VDD_165_195;
> -	if (caps & ESDHC_HOSTCAPBLT_VS30)
> -		voltage_caps |= MMC_VDD_29_30 | MMC_VDD_30_31;
> -	if (caps & ESDHC_HOSTCAPBLT_VS33)
> -		voltage_caps |= MMC_VDD_32_33 | MMC_VDD_33_34;
> +#ifdef CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33
> +	caps |= HOSTCAPBLT_VS33;
> +#endif
> +
> +	if (caps & HOSTCAPBLT_VS18)
> +		cfg->voltages |= MMC_VDD_165_195;
> +	if (caps & HOSTCAPBLT_VS30)
> +		cfg->voltages |= MMC_VDD_29_30 | MMC_VDD_30_31;
> +	if (caps & HOSTCAPBLT_VS33)
> +		cfg->voltages |= MMC_VDD_32_33 | MMC_VDD_33_34;
>  
>  	cfg->name = "FSL_SDHC";
>  #if !CONFIG_IS_ENABLED(DM_MMC)
>  	cfg->ops = &esdhc_ops;
>  #endif
> -#ifdef CONFIG_SYS_SD_VOLTAGE
> -	cfg->voltages = CONFIG_SYS_SD_VOLTAGE;
> -#else
> -	cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
> -#endif
> -	if ((cfg->voltages & voltage_caps) == 0) {
> -		printf("voltage not supported by controller\n");
> -		return -1;
> -	}
> -
>  	if (priv->bus_width == 8)
>  		cfg->host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT;
>  	else if (priv->bus_width == 4)
> @@ -1258,7 +1249,7 @@ static int fsl_esdhc_init(struct fsl_esdhc_priv *priv,
>  			cfg->host_caps &= ~MMC_MODE_4BIT;
>  	}
>  
> -	if (caps & ESDHC_HOSTCAPBLT_HSS)
> +	if (caps & HOSTCAPBLT_HSS)
>  		cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
>  
>  #ifdef CONFIG_ESDHC_DETECT_8_BIT_QUIRK
> diff --git a/include/fsl_esdhc_imx.h b/include/fsl_esdhc_imx.h
> index 45ed635a77..1529b8bba3 100644
> --- a/include/fsl_esdhc_imx.h
> +++ b/include/fsl_esdhc_imx.h
> @@ -164,12 +164,12 @@
>  #define BLKATTR_SIZE(x)	(x & 0x1fff)
>  #define MAX_BLK_CNT	0x7fff	/* so malloc will have enough room with 32M */
>  
> -#define ESDHC_HOSTCAPBLT_VS18	0x04000000
> -#define ESDHC_HOSTCAPBLT_VS30	0x02000000
> -#define ESDHC_HOSTCAPBLT_VS33	0x01000000
> -#define ESDHC_HOSTCAPBLT_SRS	0x00800000
> -#define ESDHC_HOSTCAPBLT_DMAS	0x00400000
> -#define ESDHC_HOSTCAPBLT_HSS	0x00200000
> +#define HOSTCAPBLT_VS18	0x04000000
> +#define HOSTCAPBLT_VS30	0x02000000
> +#define HOSTCAPBLT_VS33	0x01000000
> +#define HOSTCAPBLT_SRS	0x00800000
> +#define HOSTCAPBLT_DMAS	0x00400000
> +#define HOSTCAPBLT_HSS	0x00200000
>  
>  #define ESDHC_VENDORSPEC_VSELECT 0x00000002 /* Use 1.8V */
>  
> 



More information about the U-Boot mailing list