[PATCH v2 6/8] mmc: zynq_sdhci: Change variable deviceid to node_id

Ashok Reddy Soma ashokred at xilinx.com
Tue Jul 27 14:50:01 CEST 2021


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

Sorry, Forgot to add Reviewed-by:
https://patchwork.ozlabs.org/project/uboot/patch/20210724081009.15761-6-ashok.reddy.soma@xilinx.com/ 

Thanks,
Ashok

> -----Original Message-----
> From: Ashok Reddy Soma <ashok.reddy.soma at xilinx.com>
> Sent: Tuesday, July 27, 2021 6:07 PM
> To: u-boot at lists.denx.de
> Cc: peng.fan at nxp.com; jh80.chung at samsung.com; faiz_abbas at ti.com;
> sjg at chromium.org; michael at walle.cc; git <git at xilinx.com>;
> monstr at monstr.eu; somaashokreddy at gmail.com; Ashok Reddy Soma
> <ashokred at xilinx.com>
> Subject: [PATCH v2 6/8] mmc: zynq_sdhci: Change variable deviceid to node_id
> 
> Change deviceid to node_id in arasan_zynqmp_dll_reset() and also in tapdelay
> related static inline functions to reflect proper name and for consistency.
> 
> Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma at xilinx.com>
> ---
> 
> (no changes since v1)
> 
>  drivers/mmc/zynq_sdhci.c | 14 +++++++-------
>  1 file changed, 7 insertions(+), 7 deletions(-)
> 
> diff --git a/drivers/mmc/zynq_sdhci.c b/drivers/mmc/zynq_sdhci.c index
> 043af5cb3a..81311d14ca 100644
> --- a/drivers/mmc/zynq_sdhci.c
> +++ b/drivers/mmc/zynq_sdhci.c
> @@ -75,17 +75,17 @@ static const u8 mode2timing[] = {
>  	[MMC_HS_200] = MMC_TIMING_MMC_HS200,
>  };
> 
> -static inline int arasan_zynqmp_set_in_tapdelay(u8 deviceid, u32 type,
> +static inline int arasan_zynqmp_set_in_tapdelay(u8 node_id, u32 type,
>  						u32 itap_delay)
>  {
> -	return xilinx_pm_request(PM_IOCTL, (u32)deviceid,
> IOCTL_SET_SD_TAPDELAY,
> +	return xilinx_pm_request(PM_IOCTL, (u32)node_id,
> +IOCTL_SET_SD_TAPDELAY,
>  				 type, itap_delay, NULL);
>  }
> 
> -static inline int arasan_zynqmp_set_out_tapdelay(u8 deviceid, u32 type,
> +static inline int arasan_zynqmp_set_out_tapdelay(u8 node_id, u32 type,
>  						 u32 otap_delay)
>  {
> -	return xilinx_pm_request(PM_IOCTL, (u32)deviceid,
> IOCTL_SET_SD_TAPDELAY,
> +	return xilinx_pm_request(PM_IOCTL, (u32)node_id,
> +IOCTL_SET_SD_TAPDELAY,
>  				 type, otap_delay, NULL);
>  }
> 
> @@ -95,7 +95,7 @@ static inline int zynqmp_pm_sd_dll_reset(u8 node_id, u32
> type)
>  				 type, 0, NULL);
>  }
> 
> -static int arasan_zynqmp_dll_reset(struct sdhci_host *host, u8 deviceid)
> +static int arasan_zynqmp_dll_reset(struct sdhci_host *host, u8 node_id)
>  {
>  	struct mmc *mmc = (struct mmc *)host->mmc;
>  	struct udevice *dev = mmc->dev;
> @@ -108,7 +108,7 @@ static int arasan_zynqmp_dll_reset(struct sdhci_host
> *host, u8 deviceid)
>  	sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
> 
>  	/* Issue DLL Reset */
> -	ret = zynqmp_pm_sd_dll_reset(deviceid, PM_DLL_RESET_ASSERT);
> +	ret = zynqmp_pm_sd_dll_reset(node_id, PM_DLL_RESET_ASSERT);
>  	if (ret) {
>  		dev_err(dev, "dll_reset assert failed with err: %d\n", ret);
>  		return ret;
> @@ -116,7 +116,7 @@ static int arasan_zynqmp_dll_reset(struct sdhci_host
> *host, u8 deviceid)
> 
>  	/* Allow atleast 1ms delay for proper DLL reset */
>  	mdelay(1);
> -	ret = zynqmp_pm_sd_dll_reset(deviceid, PM_DLL_RESET_RELEASE);
> +	ret = zynqmp_pm_sd_dll_reset(node_id, PM_DLL_RESET_RELEASE);
>  	if (ret) {
>  		dev_err(dev, "dll_reset release failed with err: %d\n", ret);
>  		return ret;
> --
> 2.17.1



More information about the U-Boot mailing list