linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Feng Tang <feng.tang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
To: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
Cc: "spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org"
	<spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>,
	George Shore <george-ofzTHo7+kyPpQY4QmZNtDQ@public.gmane.org>,
	David Brownell
	<dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
Subject: Re: [PATCH] spi/dw_spi: clean the cs_control code
Date: Thu, 2 Sep 2010 10:10:29 +0800	[thread overview]
Message-ID: <20100902101029.2f17c8a5@feng-i7> (raw)
In-Reply-To: <20100901150757.GA13421-MrY2KI0G/OVr83L8+7iqerDks+cytr/Z@public.gmane.org>

On Wed, 1 Sep 2010 23:07:57 +0800
Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org> wrote:

> Hi Feng,
> 
> On Wed, Sep 01, 2010 at 01:35:59PM +0800, Feng Tang wrote:
> > commit 052dc7c45 introduced cs_control code,
> 
> Be friendly to mere-mortals.  You should quote the patch title
> "spi/dw_spi: conditional transfer mode changes" in addition to the
> sha1 id.

Got it, thanks, will add it in V2

> > @@ -544,13 +540,13 @@ static void pump_transfers(unsigned long data)
> >  	 */
> >  	if (dws->cs_control) {
> >  		if (dws->rx && dws->tx)
> > -			chip->tmode = 0x00;
> > +			chip->tmode = SPI_TMOD_TR;
> >  		else if (dws->rx)
> > -			chip->tmode = 0x02;
> > +			chip->tmode = SPI_TMOD_RO;
> >  		else
> > -			chip->tmode = 0x01;
> > +			chip->tmode = SPI_TMOD_TO;
> >  
> > -		cr0 &= ~(0x3 << SPI_MODE_OFFSET);
> > +		cr0 &= ~SPI_TMOD_MASK;
> >  		cr0 |= (chip->tmode << SPI_TMOD_OFFSET);
> 
> Changing these values isn't mentioned in the patch description.  I
> assume this is not the bug fix because the #defines are the same
> values.

OK, it's a little confusing, there are 2 OFFSET here:
	SPI_MODE_OFFSET (for spi mode 0/1/2 etc setting)
	SPI_TMOD_OFFSET (for tx only/rx only/duplex)

So simple fix should be
-		cr0 &= ~(0x3 << SPI_MODE_OFFSET); 
+		cr0 &= ~(0x3 << SPI_TMOD_OFFSET);
while my new introduced SPI_TMOD_MASK make things complex :)

Thanks,
Feng

------------------------------------------------------------------------------
This SF.net Dev2Dev email is sponsored by:

Show off your parallel programming skills.
Enter the Intel(R) Threading Challenge 2010.
http://p.sf.net/sfu/intel-thread-sfd

      parent reply	other threads:[~2010-09-02  2:10 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-01  5:35 [PATCH] spi/dw_spi: clean the cs_control code Feng Tang
     [not found] ` <1283319359-16297-1-git-send-email-feng.tang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2010-09-01 15:07   ` Grant Likely
     [not found]     ` <20100901150757.GA13421-MrY2KI0G/OVr83L8+7iqerDks+cytr/Z@public.gmane.org>
2010-09-02  2:10       ` Feng Tang [this message]

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=20100902101029.2f17c8a5@feng-i7 \
    --to=feng.tang-ral2jqcrhueavxtiumwx3w@public.gmane.org \
    --cc=dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    --cc=george-ofzTHo7+kyPpQY4QmZNtDQ@public.gmane.org \
    --cc=grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org \
    --cc=spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.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).