All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gregory CLEMENT <gregory.clement-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>
To: Maxime Chevallier <maxime.chevallier-fqqU8Ppg2Jk@public.gmane.org>
Cc: broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Subject: Re: [PATCH 1/2] spi: a3700: Remove endianness swapping functions when accessing FIFOs
Date: Wed, 24 Jan 2018 15:23:12 +0100	[thread overview]
Message-ID: <87k1w749pr.fsf@free-electrons.com> (raw)
In-Reply-To: <1516803048-26942-2-git-send-email-maxime.chevallier-fqqU8Ppg2Jk@public.gmane.org> (Maxime Chevallier's message of "Wed, 24 Jan 2018 15:10:47 +0100")

Hi Maxime,
 
 On mer., janv. 24 2018, Maxime Chevallier <maxime.chevallier-fqqU8Ppg2Jk@public.gmane.org> wrote:

> Fixes the following sparse warnings :
> line 504: warning: incorrect type in assignment (different base types)
> line 504:    expected unsigned int [unsigned] [usertype] val
> line 504:    got restricted __le32 [usertype] <noident>
> line 527: warning: cast to restricted __le32
>
> This is solved by removing endian-converson functions, since the
> converted values are going through readl/writel anyway, which take care
> of the conversion.
>

These changes look good for me:

Reviewed-by: Gregory CLEMENT <gregory.clement-wi1+55ScJUtKEb57/3fJTNBPR1lH4CV8@public.gmane.org>

Thanks,

Gregory


> Fixes: 6fd6fd68c9e2 ("spi: armada-3700: Fix padding when sending not 4-byte aligned data")
> Signed-off-by: Maxime Chevallier <maxime.chevallier-fqqU8Ppg2Jk@public.gmane.org>
> ---
>  drivers/spi/spi-armada-3700.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/spi/spi-armada-3700.c b/drivers/spi/spi-armada-3700.c
> index a8576c89f713..43ee0b56fe1c 100644
> --- a/drivers/spi/spi-armada-3700.c
> +++ b/drivers/spi/spi-armada-3700.c
> @@ -501,7 +501,7 @@ static int a3700_spi_fifo_write(struct a3700_spi *a3700_spi)
>  	u32 val;
>  
>  	while (!a3700_is_wfifo_full(a3700_spi) && a3700_spi->buf_len) {
> -		val = cpu_to_le32(*(u32 *)a3700_spi->tx_buf);
> +		val = *(u32 *)a3700_spi->tx_buf;
>  		spireg_write(a3700_spi, A3700_SPI_DATA_OUT_REG, val);
>  		a3700_spi->buf_len -= 4;
>  		a3700_spi->tx_buf += 4;
> @@ -524,9 +524,8 @@ static int a3700_spi_fifo_read(struct a3700_spi *a3700_spi)
>  	while (!a3700_is_rfifo_empty(a3700_spi) && a3700_spi->buf_len) {
>  		val = spireg_read(a3700_spi, A3700_SPI_DATA_IN_REG);
>  		if (a3700_spi->buf_len >= 4) {
> -			u32 data = le32_to_cpu(val);
>  
> -			memcpy(a3700_spi->rx_buf, &data, 4);
> +			memcpy(a3700_spi->rx_buf, &val, 4);
>  
>  			a3700_spi->buf_len -= 4;
>  			a3700_spi->rx_buf += 4;
> -- 
> 2.1.4
>

-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
--
To unsubscribe from this list: send the line "unsubscribe linux-spi" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

WARNING: multiple messages have this Message-ID (diff)
From: gregory.clement@free-electrons.com (Gregory CLEMENT)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/2] spi: a3700: Remove endianness swapping functions when accessing FIFOs
Date: Wed, 24 Jan 2018 15:23:12 +0100	[thread overview]
Message-ID: <87k1w749pr.fsf@free-electrons.com> (raw)
In-Reply-To: <1516803048-26942-2-git-send-email-maxime.chevallier@smile.fr> (Maxime Chevallier's message of "Wed, 24 Jan 2018 15:10:47 +0100")

Hi Maxime,
 
 On mer., janv. 24 2018, Maxime Chevallier <maxime.chevallier@smile.fr> wrote:

> Fixes the following sparse warnings :
> line 504: warning: incorrect type in assignment (different base types)
> line 504:    expected unsigned int [unsigned] [usertype] val
> line 504:    got restricted __le32 [usertype] <noident>
> line 527: warning: cast to restricted __le32
>
> This is solved by removing endian-converson functions, since the
> converted values are going through readl/writel anyway, which take care
> of the conversion.
>

These changes look good for me:

Reviewed-by: Gregory CLEMENT <gregory.clement@free-electrons.com>

Thanks,

Gregory


> Fixes: 6fd6fd68c9e2 ("spi: armada-3700: Fix padding when sending not 4-byte aligned data")
> Signed-off-by: Maxime Chevallier <maxime.chevallier@smile.fr>
> ---
>  drivers/spi/spi-armada-3700.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/spi/spi-armada-3700.c b/drivers/spi/spi-armada-3700.c
> index a8576c89f713..43ee0b56fe1c 100644
> --- a/drivers/spi/spi-armada-3700.c
> +++ b/drivers/spi/spi-armada-3700.c
> @@ -501,7 +501,7 @@ static int a3700_spi_fifo_write(struct a3700_spi *a3700_spi)
>  	u32 val;
>  
>  	while (!a3700_is_wfifo_full(a3700_spi) && a3700_spi->buf_len) {
> -		val = cpu_to_le32(*(u32 *)a3700_spi->tx_buf);
> +		val = *(u32 *)a3700_spi->tx_buf;
>  		spireg_write(a3700_spi, A3700_SPI_DATA_OUT_REG, val);
>  		a3700_spi->buf_len -= 4;
>  		a3700_spi->tx_buf += 4;
> @@ -524,9 +524,8 @@ static int a3700_spi_fifo_read(struct a3700_spi *a3700_spi)
>  	while (!a3700_is_rfifo_empty(a3700_spi) && a3700_spi->buf_len) {
>  		val = spireg_read(a3700_spi, A3700_SPI_DATA_IN_REG);
>  		if (a3700_spi->buf_len >= 4) {
> -			u32 data = le32_to_cpu(val);
>  
> -			memcpy(a3700_spi->rx_buf, &data, 4);
> +			memcpy(a3700_spi->rx_buf, &val, 4);
>  
>  			a3700_spi->buf_len -= 4;
>  			a3700_spi->rx_buf += 4;
> -- 
> 2.1.4
>

-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

WARNING: multiple messages have this Message-ID (diff)
From: Gregory CLEMENT <gregory.clement@free-electrons.com>
To: Maxime Chevallier <maxime.chevallier@smile.fr>
Cc: broonie@kernel.org, linux-spi@vger.kernel.org,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 1/2] spi: a3700: Remove endianness swapping functions when accessing FIFOs
Date: Wed, 24 Jan 2018 15:23:12 +0100	[thread overview]
Message-ID: <87k1w749pr.fsf@free-electrons.com> (raw)
In-Reply-To: <1516803048-26942-2-git-send-email-maxime.chevallier@smile.fr> (Maxime Chevallier's message of "Wed, 24 Jan 2018 15:10:47 +0100")

Hi Maxime,
 
 On mer., janv. 24 2018, Maxime Chevallier <maxime.chevallier@smile.fr> wrote:

> Fixes the following sparse warnings :
> line 504: warning: incorrect type in assignment (different base types)
> line 504:    expected unsigned int [unsigned] [usertype] val
> line 504:    got restricted __le32 [usertype] <noident>
> line 527: warning: cast to restricted __le32
>
> This is solved by removing endian-converson functions, since the
> converted values are going through readl/writel anyway, which take care
> of the conversion.
>

These changes look good for me:

Reviewed-by: Gregory CLEMENT <gregory.clement@free-electrons.com>

Thanks,

Gregory


> Fixes: 6fd6fd68c9e2 ("spi: armada-3700: Fix padding when sending not 4-byte aligned data")
> Signed-off-by: Maxime Chevallier <maxime.chevallier@smile.fr>
> ---
>  drivers/spi/spi-armada-3700.c | 5 ++---
>  1 file changed, 2 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/spi/spi-armada-3700.c b/drivers/spi/spi-armada-3700.c
> index a8576c89f713..43ee0b56fe1c 100644
> --- a/drivers/spi/spi-armada-3700.c
> +++ b/drivers/spi/spi-armada-3700.c
> @@ -501,7 +501,7 @@ static int a3700_spi_fifo_write(struct a3700_spi *a3700_spi)
>  	u32 val;
>  
>  	while (!a3700_is_wfifo_full(a3700_spi) && a3700_spi->buf_len) {
> -		val = cpu_to_le32(*(u32 *)a3700_spi->tx_buf);
> +		val = *(u32 *)a3700_spi->tx_buf;
>  		spireg_write(a3700_spi, A3700_SPI_DATA_OUT_REG, val);
>  		a3700_spi->buf_len -= 4;
>  		a3700_spi->tx_buf += 4;
> @@ -524,9 +524,8 @@ static int a3700_spi_fifo_read(struct a3700_spi *a3700_spi)
>  	while (!a3700_is_rfifo_empty(a3700_spi) && a3700_spi->buf_len) {
>  		val = spireg_read(a3700_spi, A3700_SPI_DATA_IN_REG);
>  		if (a3700_spi->buf_len >= 4) {
> -			u32 data = le32_to_cpu(val);
>  
> -			memcpy(a3700_spi->rx_buf, &data, 4);
> +			memcpy(a3700_spi->rx_buf, &val, 4);
>  
>  			a3700_spi->buf_len -= 4;
>  			a3700_spi->rx_buf += 4;
> -- 
> 2.1.4
>

-- 
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

  parent reply	other threads:[~2018-01-24 14:23 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-24 14:10 [PATCH 0/2] spi: a3700: Remove endianness correction functions Maxime Chevallier
2018-01-24 14:10 ` Maxime Chevallier
     [not found] ` <1516803048-26942-1-git-send-email-maxime.chevallier-fqqU8Ppg2Jk@public.gmane.org>
2018-01-24 14:10   ` [PATCH 1/2] spi: a3700: Remove endianness swapping functions when accessing FIFOs Maxime Chevallier
2018-01-24 14:10     ` Maxime Chevallier
2018-01-24 14:10     ` Maxime Chevallier
     [not found]     ` <1516803048-26942-2-git-send-email-maxime.chevallier-fqqU8Ppg2Jk@public.gmane.org>
2018-01-24 14:23       ` Gregory CLEMENT [this message]
2018-01-24 14:23         ` Gregory CLEMENT
2018-01-24 14:23         ` Gregory CLEMENT
2018-01-24 15:36     ` Applied "spi: a3700: Remove endianness swapping functions when accessing FIFOs" to the spi tree Mark Brown
2018-01-24 15:36       ` Mark Brown
2018-01-24 14:10 ` [PATCH 2/2] spi: a3700: Remove endianness swapping for full-duplex transfers Maxime Chevallier
2018-01-24 14:10   ` Maxime Chevallier
2018-01-24 14:10   ` Maxime Chevallier
2018-01-24 14:23   ` Gregory CLEMENT
2018-01-24 14:23     ` Gregory CLEMENT
2018-01-24 15:36   ` Applied "spi: a3700: Remove endianness swapping for full-duplex transfers" to the spi tree Mark Brown
2018-01-24 15:36     ` Mark Brown

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=87k1w749pr.fsf@free-electrons.com \
    --to=gregory.clement-wi1+55scjutkeb57/3fjtnbpr1lh4cv8@public.gmane.org \
    --cc=broonie-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=maxime.chevallier-fqqU8Ppg2Jk@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 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.