All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ajay Bhargav <ajay.bhargav@einfochips.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] mmc: mv_sdhci: Fix host version read for Armada100
Date: Tue, 1 Nov 2011 18:00:11 +0530 (IST)	[thread overview]
Message-ID: <1503471992.287903.1320150611810.JavaMail.root@ahm.einfochips.com> (raw)
In-Reply-To: <868712092.287809.1320150229717.JavaMail.root@ahm.einfochips.com>


----- "Marek Vasut" <marek.vasut@gmail.com> wrote:

> > sdhci_readw does not work for host version read in Armada100 series
> > SoCs. This patch fix this issue by making a sdhci_readl call to get
> host
> > version.
> > 
> > Signed-off-by: Ajay Bhargav <ajay.bhargav@einfochips.com>
> > ---
> >  drivers/mmc/mv_sdhci.c |    6 ++++++
> >  1 files changed, 6 insertions(+), 0 deletions(-)
> > 
> > diff --git a/drivers/mmc/mv_sdhci.c b/drivers/mmc/mv_sdhci.c
> > index f92caeb..c7fd287 100644
> > --- a/drivers/mmc/mv_sdhci.c
> > +++ b/drivers/mmc/mv_sdhci.c
> > @@ -30,6 +30,7 @@ static inline void mv_sdhci_writeb(struct
> sdhci_host
> > *host, u8 val, int reg) #endif /* CONFIG_MMC_SDHCI_IO_ACCESSORS */
> > 
> >  static char *MVSDH_NAME = "mv_sdh";
> > +
> >  int mv_sdh_init(u32 regbase, u32 max_clk, u32 min_clk, u32 quirks)
> >  {
> >  	struct sdhci_host *host = NULL;
> > @@ -48,7 +49,12 @@ int mv_sdh_init(u32 regbase, u32 max_clk, u32
> min_clk,
> > u32 quirks) mv_ops.write_b = mv_sdhci_writeb;
> >  	host->ops = &mv_ops;
> >  #endif
> > +#ifdef CONFIG_ARMADA100
> > +	/* SDHCI host version read workaround for Armada100 series */
> > +	host->version = sdhci_readl(host, SDHCI_HOST_VERSION - 2) >> 16;
> > +#else
> >  	host->version = sdhci_readw(host, SDHCI_HOST_VERSION);
> > +#endif
> >  	add_sdhci(host, max_clk, min_clk);
> >  	return 0;
> >  }
> 
> Basically armada100 can't do 16bit access to that register. Ok, but
> why does it 
> work for other registers? Also, can you make this a config option like
> 
> CONFIG_SDHCI_REG32_QUIRK (invent some better name ;-) ).
> 
> Cheers
> 
Hi Marek,

Armada100 SOC has this bug for particularly that register. This is particularly for that register so Do you think a config is required for this?

Regards,
Ajay Bhargav

       reply	other threads:[~2011-11-01 12:30 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <868712092.287809.1320150229717.JavaMail.root@ahm.einfochips.com>
2011-11-01 12:30 ` Ajay Bhargav [this message]
2011-11-01 14:57   ` [U-Boot] [PATCH] mmc: mv_sdhci: Fix host version read for Armada100 Marek Vasut
     [not found] <1050282894.290152.1320212635906.JavaMail.root@ahm.einfochips.com>
2011-11-02  5:46 ` Ajay Bhargav
2011-11-02 10:25   ` Marek Vasut
2011-11-02 12:09     ` Prafulla Wadaskar
2011-11-02 14:28       ` Marek Vasut
2011-11-03  7:41         ` Prafulla Wadaskar
2011-11-01  9:39 Ajay Bhargav
2011-11-01 11:49 ` Marek Vasut
2011-11-01 14:13 ` Lei Wen
2011-11-02  5:38   ` Ajay Bhargav

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=1503471992.287903.1320150611810.JavaMail.root@ahm.einfochips.com \
    --to=ajay.bhargav@einfochips.com \
    --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.