All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lukasz Majewski <lukma@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] Revert "mmc: fsl_esdhc: fix sd/mmc ddr mode clock setting issue"
Date: Wed, 8 May 2019 08:38:29 +0200	[thread overview]
Message-ID: <20190508083829.3661d244@jawa> (raw)
In-Reply-To: <20190508081945.3bba8155@jawa>

On Wed, 8 May 2019 08:19:45 +0200
Lukasz Majewski <lukma@denx.de> wrote:

> Hi Peng,
> 
> > Hi Lukasz,
> >   
> > > Subject: [PATCH] Revert "mmc: fsl_esdhc: fix sd/mmc ddr mode clock
> > > setting issue"
> > > 
> > > This reverts commit 72a89e0da5ac6a4ab929b15a2b656f04f50767f6,
> > > which causes the imx53 HSC to hang as the eMMC is not working
> > > properly anymore.
> > > 
> > > The exact error message:
> > > MMC write: dev # 0, block # 2, count 927 ... mmc write failed
> > > 0 blocks written: ERROR
> > > 
> > > imx53 is not using the DDR mode.
> > > 
> > > Debugging of pre_div and div generation showed that those values
> > > are generated in a way, which is not matching the ones from
> > > working setup.
> > > 
> > > As the original patch was performing code refactoring, let's
> > > revert this change, so all imx53 boards would work again.    
> > 
> > Could you share what is the clock value for your board?  
> 
> Sure, no problem:
> 
> Working setup:
> --------------
> 
> MMC:
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 8 div: 12 set_sysctl: clk: 2240
> FSL_SDHC: 0
> Loading Environment from MMC...
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 8 div: 12 set_sysctl: clk: 2240
> 
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 8 div: 12 set_sysctl: clk: 2240
> 
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 1 div: 1 set_sysctl: clk: 272
> 
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 1 div: 0 set_sysctl: clk: 256
> 
> 
> 
> 
> Broken:
> -------
> MMC:
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 8 div: 12 set_sysctl: clk: 2240
> FSL_SDHC: 0
> Loading Environment from MMC...
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 8 div: 12 set_sysctl: clk: 2240
> 
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 8 div: 12 set_sysctl: clk: 2240
> 
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 0 div: 3 set_sysctl: clk: 48
> 
> set_sysctl: pre_div = 2 mmc->ddr: 0 sdhc_clk: 80000000
>  pre_div: 0 div: 1 set_sysctl: clk: 16
> 
> 
> (Please also find attached patch to reproduce debug output).
> 

And maybe the most important question - why it was necessary to
refactor this code?

Parts responsible for calculating pre_div and div seems not related to
ddr problem (one spot issue is div <= 16 , but in the original code it
was div < 16)?

> > 
> > Thanks,
> > Peng.
> >   
> > > 
> > > Signed-off-by: Lukasz Majewski <lukma@denx.de>
> > > ---
> > >  drivers/mmc/fsl_esdhc.c | 23 +++++------------------
> > >  1 file changed, 5 insertions(+), 18 deletions(-)
> > > 
> > > diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c
> > > index 1b7de74a72..377b2673a3 100644
> > > --- a/drivers/mmc/fsl_esdhc.c
> > > +++ b/drivers/mmc/fsl_esdhc.c
> > > @@ -621,31 +621,18 @@ static void set_sysctl(struct fsl_esdhc_priv
> > > *priv, struct mmc *mmc, uint clock)  #else
> > >  	int pre_div = 2;
> > >  #endif
> > > +	int ddr_pre_div = mmc->ddr_mode ? 2 : 1;
> > >  	int sdhc_clk = priv->sdhc_clk;
> > >  	uint clk;
> > > 
> > > -	/*
> > > -	 * For ddr mode, usdhc need to enable DDR mode first,
> > > after select
> > > -	 * this DDR mode, usdhc will automatically divide the
> > > usdhc clock
> > > -	 */
> > > -	if (mmc->ddr_mode) {
> > > -		writel(readl(&regs->mixctrl) | MIX_CTRL_DDREN,
> > > &regs->mixctrl);
> > > -		sdhc_clk >>= 1;
> > > -	}
> > > -
> > >  	if (clock < mmc->cfg->f_min)
> > >  		clock = mmc->cfg->f_min;
> > > 
> > > -	if (sdhc_clk / 16 > clock) {
> > > -		for (; pre_div < 256; pre_div *= 2)
> > > -			if ((sdhc_clk / pre_div) <= (clock * 16))
> > > -				break;
> > > -	} else
> > > -		pre_div = 1;
> > > +	while (sdhc_clk / (16 * pre_div * ddr_pre_div) > clock &&
> > > pre_div < 256)
> > > +		pre_div *= 2;
> > > 
> > > -	for (div = 1; div <= 16; div++)
> > > -		if ((sdhc_clk / (div * pre_div)) <= clock)
> > > -			break;
> > > +	while (sdhc_clk / (div * pre_div * ddr_pre_div) > clock
> > > && div < 16)
> > > +		div++;
> > > 
> > >  	pre_div >>= 1;
> > >  	div -= 1;
> > > --
> > > 2.11.0    
> >   
> 
> 
> 
> 
> Best regards,
> 
> Lukasz Majewski
> 
> --
> 
> DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
> HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
> Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email:
> lukma at denx.de




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma at denx.de
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 488 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190508/185091df/attachment.sig>

  reply	other threads:[~2019-05-08  6:38 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-07 15:47 [U-Boot] [PATCH] Revert "mmc: fsl_esdhc: fix sd/mmc ddr mode clock setting issue" Lukasz Majewski
2019-05-08  1:25 ` Peng Fan
2019-05-08  6:19   ` Lukasz Majewski
2019-05-08  6:38     ` Lukasz Majewski [this message]
2019-05-08  9:44       ` Peng Fan
2019-05-08 11:37         ` Lukasz Majewski
2019-05-08 13:03           ` BOUGH CHEN
2019-05-08 13:58             ` Lukasz Majewski
2019-05-08 13:59       ` Peng Fan
2019-05-08 14:32         ` Lukasz Majewski
2019-05-09  1:16           ` Peng Fan
2019-05-15  6:13             ` Peng Fan
2019-05-20  3:19               ` Peng Fan
2019-05-20  6:04                 ` Lukasz Majewski
2019-05-20  6:14                   ` Peng Fan
2019-05-20  7:47                     ` Lukasz Majewski

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=20190508083829.3661d244@jawa \
    --to=lukma@denx.de \
    --cc=u-boot@lists.denx.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.