From: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
To: Feng Tang <feng.tang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: 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 v2] spi/dw_spi: clean the cs_control code
Date: Wed, 8 Sep 2010 10:51:06 -0600 [thread overview]
Message-ID: <20100908165106.GI3686@angua.secretlab.ca> (raw)
In-Reply-To: <1283845926-12547-1-git-send-email-feng.tang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
On Tue, Sep 07, 2010 at 03:52:06PM +0800, Feng Tang wrote:
> commit 052dc7c45i "spi/dw_spi: conditional transfer mode change"
> introduced cs_control code, which has a bug by using bit offset
> for spi mode to set transfer mode in control register. Also it
> forces devices who don't need cs_control to re-configure the
> control registers for each spi transfer. This patch will fix them
>
> Signed-off-by: Feng Tang <feng.tang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> Cc: David Brownell <dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
> Cc: Grant Likely <grant.likely-s3s/WqlpOiPyB63q8FvJNQ@public.gmane.org>
> Cc: George Shore <george-ofzTHo7+kyPpQY4QmZNtDQ@public.gmane.org>
> ---
Applied, thanks.
g.
> drivers/spi/dw_spi.c | 17 +++++------------
> include/linux/spi/dw_spi.h | 2 ++
> 2 files changed, 7 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/spi/dw_spi.c b/drivers/spi/dw_spi.c
> index d256cb0..4b75a81 100644
> --- a/drivers/spi/dw_spi.c
> +++ b/drivers/spi/dw_spi.c
> @@ -181,10 +181,6 @@ static void flush(struct dw_spi *dws)
> wait_till_not_busy(dws);
> }
>
> -static void null_cs_control(u32 command)
> -{
> -}
> -
> static int null_writer(struct dw_spi *dws)
> {
> u8 n_bytes = dws->n_bytes;
> @@ -322,7 +318,7 @@ static void giveback(struct dw_spi *dws)
> struct spi_transfer,
> transfer_list);
>
> - if (!last_transfer->cs_change)
> + if (!last_transfer->cs_change && dws->cs_control)
> dws->cs_control(MRST_SPI_DEASSERT);
>
> msg->state = NULL;
> @@ -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);
> }
>
> @@ -699,9 +695,6 @@ static int dw_spi_setup(struct spi_device *spi)
> chip = kzalloc(sizeof(struct chip_data), GFP_KERNEL);
> if (!chip)
> return -ENOMEM;
> -
> - chip->cs_control = null_cs_control;
> - chip->enable_dma = 0;
> }
>
> /*
> diff --git a/include/linux/spi/dw_spi.h b/include/linux/spi/dw_spi.h
> index cc813f9..c91302f 100644
> --- a/include/linux/spi/dw_spi.h
> +++ b/include/linux/spi/dw_spi.h
> @@ -14,7 +14,9 @@
> #define SPI_MODE_OFFSET 6
> #define SPI_SCPH_OFFSET 6
> #define SPI_SCOL_OFFSET 7
> +
> #define SPI_TMOD_OFFSET 8
> +#define SPI_TMOD_MASK (0x3 << SPI_TMOD_OFFSET)
> #define SPI_TMOD_TR 0x0 /* xmit & recv */
> #define SPI_TMOD_TO 0x1 /* xmit only */
> #define SPI_TMOD_RO 0x2 /* recv only */
> --
> 1.7.0.4
>
------------------------------------------------------------------------------
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
prev parent reply other threads:[~2010-09-08 16:51 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-07 7:52 [PATCH v2] spi/dw_spi: clean the cs_control code Feng Tang
[not found] ` <1283845926-12547-1-git-send-email-feng.tang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2010-09-08 16:51 ` Grant Likely [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=20100908165106.GI3686@angua.secretlab.ca \
--to=grant.likely-s3s/wqlpoipyb63q8fvjnq@public.gmane.org \
--cc=dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
--cc=feng.tang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
--cc=george-ofzTHo7+kyPpQY4QmZNtDQ@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).