linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: b29396@freescale.com (Dong Aisheng)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/7] mmc: sdhci: clear auto cmd setting bits for no data cmds
Date: Wed, 23 Oct 2013 13:54:04 +0800	[thread overview]
Message-ID: <20131023055402.GA14667@shlinux2.ap.freescale.net> (raw)
In-Reply-To: <20131023023325.GB2839@S2101-09.ap.freescale.net>

On Wed, Oct 23, 2013 at 10:33:28AM +0800, Shawn Guo wrote:
> On Mon, Oct 21, 2013 at 10:27:01PM +0800, Dong Aisheng wrote:
> > The auto cmd settings bits should be cleared before sending new commands
> > or we may receive command timeout error for normal commands due to wrongly
> > pre-sent auto cmd.
> > 
> > e.g. we receive CMD13 timeout error due to ACMD23 is wrongly enabled
> > by former data commands.
> > 
> > mmc2: new high speed DDR MMC card at address 0001
> > mmcblk1: mmc2:0001 SEM08G 7.39 GiB
> > mmcblk1boot0: mmc2:0001 SEM08G partition 1 2.00 MiB
> > mmcblk1boot1: mmc2:0001 SEM08G partition 2 2.00 MiB
> > mmcblk1rpmb: mmc2:0001 SEM08G partition 3 128 KiB
> >  mmcblk1: p1 p2 p3 p4 < p5 p6 p7 >
> > mmc2: Timeout waiting for hardware interrupt.
> >  mmcblk1boot1: unknown partition table
> > mmc2: Timeout waiting for hardware interrupt.
> >  mmcblk1boot0: unknown partition table
> > 
> > Signed-off-by: Dong Aisheng <b29396@freescale.com>
> > ---
> >  drivers/mmc/host/sdhci.c |    5 +++++
> >  1 files changed, 5 insertions(+), 0 deletions(-)
> > 
> > diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
> > index a21a710..f868e9b 100644
> > --- a/drivers/mmc/host/sdhci.c
> > +++ b/drivers/mmc/host/sdhci.c
> > @@ -898,6 +898,11 @@ static void sdhci_set_transfer_mode(struct sdhci_host *host,
> >  	u16 mode;
> >  	struct mmc_data *data = cmd->data;
> >  
> > +	/* clear Auto CMD settings for no data CMDs */
> > +	mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
> > +	sdhci_writew(host, mode & ~(SDHCI_TRNS_AUTO_CMD12 |
> > +			SDHCI_TRNS_AUTO_CMD23), SDHCI_TRANSFER_MODE);
> > +
> 
> IMO, it will be more readable if we move the code into the if-clause
> of (data == NULL), something like:
> 
> 	if (data == NULL) {
> 		/* clear Auto CMD settings for no data CMDs */
> 		mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
> 		mode &= SDHCI_TRNS_AUTO_CMD12 | SDHCI_TRNS_AUTO_CMD23;
> 		sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
> 	}
> 

I'm fine with it.
Will change to:

if (data == NULL) {
	/* clear Auto CMD settings for no data CMDs */
	mode = sdhci_readw(host, SDHCI_TRANSFER_MODE);
	mode &= ~(SDHCI_TRNS_AUTO_CMD12 | SDHCI_TRNS_AUTO_CMD23);
	sdhci_writew(host, mode, SDHCI_TRANSFER_MODE);
	return;
}

Regards
Dong Aisheng

> Shawn
> 
> >  	if (data == NULL)
> >  		return;
> >  
> > -- 
> > 1.7.2.rc3
> > 
> > 

  reply	other threads:[~2013-10-23  5:54 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-10-21 14:27 [PATCH 0/7] mmc: sdhci-esdhc-imx: fix acmd23 unwork and ddr not supported on sabresd issues Dong Aisheng
2013-10-21 14:27 ` [PATCH 1/7] mmc: sdhci: clear auto cmd setting bits for no data cmds Dong Aisheng
2013-10-23  2:33   ` Shawn Guo
2013-10-23  5:54     ` Dong Aisheng [this message]
2013-10-21 14:27 ` [PATCH 2/7] mmc: sdhci-esdhc-imx: add SDHCI_TRANSFER_MODE read function Dong Aisheng
2013-10-21 16:01   ` John Tobias
2013-10-21 16:29     ` Dong Aisheng
2013-10-21 14:27 ` [PATCH 3/7] ARM: dts: sabresd: add usdhc4 support Dong Aisheng
2013-10-21 14:27 ` [PATCH 4/7] mmc: sdhci-esdhc-imx: add MMC_CAP_1_8V_DDR for mx6 Dong Aisheng
2013-10-21 14:27 ` [PATCH 5/7] mmc: sdhci-esdhc-imx: fix cpas over write issue Dong Aisheng
2013-10-23  2:51   ` Shawn Guo
2013-10-23  5:56     ` Dong Aisheng
2013-10-21 14:27 ` [PATCH 6/7] mmc: core: mmc DDR mode should not depend on UHS_DDR50 Dong Aisheng
2013-10-21 14:27 ` [PATCH 7/7] mmc: sdhci-esdhc-imx: add eMMC HS200 mode support Dong Aisheng

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=20131023055402.GA14667@shlinux2.ap.freescale.net \
    --to=b29396@freescale.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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;
as well as URLs for NNTP newsgroup(s).