public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
From: Adrian Hunter <adrian.hunter@intel.com>
To: Hu Ziji <huziji@marvell.com>,
	ulf.hansson@linaro.org, linux-mmc@vger.kernel.org
Cc: zmxu@marvell.com, dougj@marvell.com, jszhang@marvell.com,
	nadavh@marvell.com, ygao@marvell.com, xigu@marvell.com,
	liuw@marvell.com, dingwei@marvell.com, kostap@marvell.com,
	hannah@marvell.com, hongd@marvell.com, zjwu@marvell.com
Subject: Re: [PATCH -next 2/2] mmc: sdhci-xenon: Fix the default value of LOGIC_TIMING_ADJUST register in eMMC 5.0 PHY
Date: Fri, 28 Apr 2017 10:51:42 +0300	[thread overview]
Message-ID: <85d28107-bf1f-a611-c61b-8d365b503d01@intel.com> (raw)
In-Reply-To: <50ac97be8a5696487750791f231ab2606eb800bb.1493275842.git.huziji@marvell.com>

On 28/04/17 05:35, Hu Ziji wrote:
> The default value of LOGIC_TIMING_ADJUST register in eMMC 5.0 PHY
> is different from that in eMMC 5.1 PHY.
> Set the specific value for that register in eMMC 5.0 PHY.
> 
> Signed-off-by: Hu Ziji <huziji@marvell.com>
> Reported-by: Jisheng Zhang <jszhang@marvell.com>
> Tested-by: Jisheng Zhang <jszhang@marvell.com>

Acked-by: Adrian Hunter <adrian.hunter@intel.com>

> ---
>  drivers/mmc/host/sdhci-xenon-phy.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/mmc/host/sdhci-xenon-phy.c b/drivers/mmc/host/sdhci-xenon-phy.c
> index 4bdbcd3..31d08cf 100644
> --- a/drivers/mmc/host/sdhci-xenon-phy.c
> +++ b/drivers/mmc/host/sdhci-xenon-phy.c
> @@ -108,6 +108,7 @@
>  
>  #define XENON_EMMC_5_0_PHY_LOGIC_TIMING_ADJUST	\
>  	(XENON_EMMC_5_0_PHY_REG_BASE + 0x14)
> +#define XENON_EMMC_5_0_PHY_LOGIC_TIMING_VALUE	0x5A54
>  #define XENON_EMMC_PHY_LOGIC_TIMING_ADJUST	(XENON_EMMC_PHY_REG_BASE + 0x18)
>  #define XENON_LOGIC_TIMING_VALUE		0x00AA8977
>  
> @@ -130,6 +131,8 @@ struct xenon_emmc_phy_regs {
>  	u16 logic_timing_adj;
>  	/* DLL Update Enable bit */
>  	u32 dll_update;
> +	/* value in Logic Timing Adjustment register */
> +	u32 logic_timing_val;
>  };
>  
>  static const char * const phy_types[] = {
> @@ -166,6 +169,7 @@ static struct xenon_emmc_phy_regs xenon_emmc_5_0_phy_regs = {
>  	.dll_ctrl	= XENON_EMMC_5_0_PHY_DLL_CONTROL,
>  	.logic_timing_adj = XENON_EMMC_5_0_PHY_LOGIC_TIMING_ADJUST,
>  	.dll_update	= XENON_DLL_UPDATE_STROBE_5_0,
> +	.logic_timing_val = XENON_EMMC_5_0_PHY_LOGIC_TIMING_VALUE,
>  };
>  
>  static struct xenon_emmc_phy_regs xenon_emmc_5_1_phy_regs = {
> @@ -176,6 +180,7 @@ static struct xenon_emmc_phy_regs xenon_emmc_5_1_phy_regs = {
>  	.dll_ctrl	= XENON_EMMC_PHY_DLL_CONTROL,
>  	.logic_timing_adj = XENON_EMMC_PHY_LOGIC_TIMING_ADJUST,
>  	.dll_update	= XENON_DLL_UPDATE,
> +	.logic_timing_val = XENON_LOGIC_TIMING_VALUE,
>  };
>  
>  /*
> @@ -607,7 +612,7 @@ static void xenon_emmc_phy_set(struct sdhci_host *host,
>  
>  	if (timing == MMC_TIMING_MMC_HS400)
>  		/* Hardware team recommend a value for HS400 */
> -		sdhci_writel(host, XENON_LOGIC_TIMING_VALUE,
> +		sdhci_writel(host, phy_regs->logic_timing_val,
>  			     phy_regs->logic_timing_adj);
>  	else
>  		xenon_emmc_phy_disable_data_strobe(host);
> 


  reply	other threads:[~2017-04-28  7:57 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-28  2:34 [PATCH -next 0/2] Two issue fixes of Xenon SDHCI Hu Ziji
2017-04-28  2:34 ` [PATCH -next 1/2] mmc: sdhci-xenon: Fix the work flow in xenon_remove() Hu Ziji
2017-04-28  7:45   ` Adrian Hunter
2017-04-28  2:35 ` [PATCH -next 2/2] mmc: sdhci-xenon: Fix the default value of LOGIC_TIMING_ADJUST register in eMMC 5.0 PHY Hu Ziji
2017-04-28  7:51   ` Adrian Hunter [this message]
2017-04-28 10:36 ` [PATCH -next 0/2] Two issue fixes of Xenon SDHCI Ulf Hansson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=85d28107-bf1f-a611-c61b-8d365b503d01@intel.com \
    --to=adrian.hunter@intel.com \
    --cc=dingwei@marvell.com \
    --cc=dougj@marvell.com \
    --cc=hannah@marvell.com \
    --cc=hongd@marvell.com \
    --cc=huziji@marvell.com \
    --cc=jszhang@marvell.com \
    --cc=kostap@marvell.com \
    --cc=linux-mmc@vger.kernel.org \
    --cc=liuw@marvell.com \
    --cc=nadavh@marvell.com \
    --cc=ulf.hansson@linaro.org \
    --cc=xigu@marvell.com \
    --cc=ygao@marvell.com \
    --cc=zjwu@marvell.com \
    --cc=zmxu@marvell.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox