linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] spi: bcm2835: fix gpio cs level inversion
@ 2020-10-14  9:02 Martin Hundebøll
  2020-10-29 13:07 ` Mark Brown
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Martin Hundebøll @ 2020-10-14  9:02 UTC (permalink / raw)
  To: Mark Brown, linux-spi
  Cc: Florian Fainelli, Scott Branden, Martin Hundebøll,
	Gregory CLEMENT, stable, Nicolas Saenz Julienne,
	bcm-kernel-feedback-list, linux-rpi-kernel, Ray Jui,
	linux-arm-kernel

The work on improving gpio chip-select in spi core, and the following
fixes, has caused the bcm2835 spi driver to use wrong levels. Fix this
by simply removing level handling in the bcm2835 driver, and let the
core do its work.

Fixes: 3e5ec1db8bfe ("spi: Fix SPI_CS_HIGH setting when using native and GPIO CS")
Cc: <stable@vger.kernel.org>
Signed-off-by: Martin Hundebøll <martin@geanix.com>
---
 drivers/spi/spi-bcm2835.c | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/drivers/spi/spi-bcm2835.c b/drivers/spi/spi-bcm2835.c
index b87116e9b413..9b6ba94fe878 100644
--- a/drivers/spi/spi-bcm2835.c
+++ b/drivers/spi/spi-bcm2835.c
@@ -1259,18 +1259,6 @@ static int bcm2835_spi_setup(struct spi_device *spi)
 	if (!chip)
 		return 0;
 
-	/*
-	 * Retrieve the corresponding GPIO line used for CS.
-	 * The inversion semantics will be handled by the GPIO core
-	 * code, so we pass GPIOD_OUT_LOW for "unasserted" and
-	 * the correct flag for inversion semantics. The SPI_CS_HIGH
-	 * on spi->mode cannot be checked for polarity in this case
-	 * as the flag use_gpio_descriptors enforces SPI_CS_HIGH.
-	 */
-	if (of_property_read_bool(spi->dev.of_node, "spi-cs-high"))
-		lflags = GPIO_ACTIVE_HIGH;
-	else
-		lflags = GPIO_ACTIVE_LOW;
 	spi->cs_gpiod = gpiochip_request_own_desc(chip, 8 - spi->chip_select,
 						  DRV_NAME,
 						  lflags,
-- 
2.28.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] spi: bcm2835: fix gpio cs level inversion
  2020-10-14  9:02 [PATCH] spi: bcm2835: fix gpio cs level inversion Martin Hundebøll
@ 2020-10-29 13:07 ` Mark Brown
  2020-10-30  9:06 ` Nathan Chancellor
  2020-11-05  9:06 ` [PATCH] spi: bcm2835: remove use of uninitialized gpio flags variable Martin Hundebøll
  2 siblings, 0 replies; 6+ messages in thread
From: Mark Brown @ 2020-10-29 13:07 UTC (permalink / raw)
  To: Martin Hundebøll, linux-spi
  Cc: Florian Fainelli, Scott Branden, Ray Jui, Gregory CLEMENT,
	stable, Nicolas Saenz Julienne, bcm-kernel-feedback-list,
	linux-rpi-kernel, linux-arm-kernel

On Wed, 14 Oct 2020 11:02:30 +0200, Martin Hundebøll wrote:
> The work on improving gpio chip-select in spi core, and the following
> fixes, has caused the bcm2835 spi driver to use wrong levels. Fix this
> by simply removing level handling in the bcm2835 driver, and let the
> core do its work.

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi: bcm2835: fix gpio cs level inversion
      commit: 5e31ba0c0543a04483b53151eb5b7413efece94c

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] spi: bcm2835: fix gpio cs level inversion
  2020-10-14  9:02 [PATCH] spi: bcm2835: fix gpio cs level inversion Martin Hundebøll
  2020-10-29 13:07 ` Mark Brown
@ 2020-10-30  9:06 ` Nathan Chancellor
  2020-11-05  9:06 ` [PATCH] spi: bcm2835: remove use of uninitialized gpio flags variable Martin Hundebøll
  2 siblings, 0 replies; 6+ messages in thread
From: Nathan Chancellor @ 2020-10-30  9:06 UTC (permalink / raw)
  To: Martin Hundebøll
  Cc: linux-arm-kernel, Florian Fainelli, Scott Branden, Ray Jui,
	Gregory CLEMENT, stable, linux-spi, Mark Brown,
	bcm-kernel-feedback-list, linux-rpi-kernel,
	Nicolas Saenz Julienne

On Wed, Oct 14, 2020 at 11:02:30AM +0200, Martin Hundebøll wrote:
> The work on improving gpio chip-select in spi core, and the following
> fixes, has caused the bcm2835 spi driver to use wrong levels. Fix this
> by simply removing level handling in the bcm2835 driver, and let the
> core do its work.
> 
> Fixes: 3e5ec1db8bfe ("spi: Fix SPI_CS_HIGH setting when using native and GPIO CS")
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Martin Hundebøll <martin@geanix.com>
> ---
>  drivers/spi/spi-bcm2835.c | 12 ------------
>  1 file changed, 12 deletions(-)
> 
> diff --git a/drivers/spi/spi-bcm2835.c b/drivers/spi/spi-bcm2835.c
> index b87116e9b413..9b6ba94fe878 100644
> --- a/drivers/spi/spi-bcm2835.c
> +++ b/drivers/spi/spi-bcm2835.c
> @@ -1259,18 +1259,6 @@ static int bcm2835_spi_setup(struct spi_device *spi)
>  	if (!chip)
>  		return 0;
>  
> -	/*
> -	 * Retrieve the corresponding GPIO line used for CS.
> -	 * The inversion semantics will be handled by the GPIO core
> -	 * code, so we pass GPIOD_OUT_LOW for "unasserted" and
> -	 * the correct flag for inversion semantics. The SPI_CS_HIGH
> -	 * on spi->mode cannot be checked for polarity in this case
> -	 * as the flag use_gpio_descriptors enforces SPI_CS_HIGH.
> -	 */
> -	if (of_property_read_bool(spi->dev.of_node, "spi-cs-high"))
> -		lflags = GPIO_ACTIVE_HIGH;
> -	else
> -		lflags = GPIO_ACTIVE_LOW;
>  	spi->cs_gpiod = gpiochip_request_own_desc(chip, 8 - spi->chip_select,
>  						  DRV_NAME,
>  						  lflags,
> -- 
> 2.28.0
> 
> 

Clang now warns:

drivers/spi/spi-bcm2835.c:1264:9: warning: variable 'lflags' is uninitialized when used here [-Wuninitialized]
                                                  lflags,
                                                  ^~~~~~
drivers/spi/spi-bcm2835.c:1196:2: note: variable 'lflags' is declared here
        enum gpio_lookup_flags lflags;
        ^
1 warning generated.

Cheers,
Nathan

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] spi: bcm2835: remove use of uninitialized gpio flags variable
  2020-10-14  9:02 [PATCH] spi: bcm2835: fix gpio cs level inversion Martin Hundebøll
  2020-10-29 13:07 ` Mark Brown
  2020-10-30  9:06 ` Nathan Chancellor
@ 2020-11-05  9:06 ` Martin Hundebøll
  2020-11-05 15:08   ` Mark Brown
  2020-11-06 11:54   ` Mark Brown
  2 siblings, 2 replies; 6+ messages in thread
From: Martin Hundebøll @ 2020-11-05  9:06 UTC (permalink / raw)
  To: Mark Brown, linux-spi
  Cc: Florian Fainelli, Scott Branden, Martin Hundebøll,
	Nicolas Saenz Julienne, bcm-kernel-feedback-list,
	linux-rpi-kernel, Ray Jui, linux-arm-kernel

Removing the duplicate gpio chip select level handling in
bcm2835_spi_setup() left the lflags variable uninitialized. Avoid trhe
use of such variable by passing default flags to
gpiochip_request_own_desc().

Fixes: 5e31ba0c0543 ("spi: bcm2835: fix gpio cs level inversion")
Signed-off-by: Martin Hundebøll <martin@geanix.com>
---

Feel free to squash this commit with my previous patch, if rebasing
for-next is allowed.

 drivers/spi/spi-bcm2835.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/spi/spi-bcm2835.c b/drivers/spi/spi-bcm2835.c
index 9b6ba94fe878..7104cf17b848 100644
--- a/drivers/spi/spi-bcm2835.c
+++ b/drivers/spi/spi-bcm2835.c
@@ -1193,7 +1193,6 @@ static int bcm2835_spi_setup(struct spi_device *spi)
 	struct spi_controller *ctlr = spi->controller;
 	struct bcm2835_spi *bs = spi_controller_get_devdata(ctlr);
 	struct gpio_chip *chip;
-	enum gpio_lookup_flags lflags;
 	u32 cs;
 
 	/*
@@ -1261,7 +1260,7 @@ static int bcm2835_spi_setup(struct spi_device *spi)
 
 	spi->cs_gpiod = gpiochip_request_own_desc(chip, 8 - spi->chip_select,
 						  DRV_NAME,
-						  lflags,
+						  GPIO_LOOKUP_FLAGS_DEFAULT,
 						  GPIOD_OUT_LOW);
 	if (IS_ERR(spi->cs_gpiod))
 		return PTR_ERR(spi->cs_gpiod);
-- 
2.28.0


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] spi: bcm2835: remove use of uninitialized gpio flags variable
  2020-11-05  9:06 ` [PATCH] spi: bcm2835: remove use of uninitialized gpio flags variable Martin Hundebøll
@ 2020-11-05 15:08   ` Mark Brown
  2020-11-06 11:54   ` Mark Brown
  1 sibling, 0 replies; 6+ messages in thread
From: Mark Brown @ 2020-11-05 15:08 UTC (permalink / raw)
  To: Martin Hundebøll
  Cc: Florian Fainelli, Scott Branden, Ray Jui, linux-spi,
	Nicolas Saenz Julienne, bcm-kernel-feedback-list,
	linux-rpi-kernel, linux-arm-kernel


[-- Attachment #1.1: Type: text/plain, Size: 455 bytes --]

On Thu, Nov 05, 2020 at 10:06:15AM +0100, Martin Hundebøll wrote:
> Removing the duplicate gpio chip select level handling in
> bcm2835_spi_setup() left the lflags variable uninitialized. Avoid trhe
> use of such variable by passing default flags to
> gpiochip_request_own_desc().

Please don't send patches in reply to old threads, it buries them and
can make it unclear what is a new patch which needs review.  Send new
patches as new threads.

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] spi: bcm2835: remove use of uninitialized gpio flags variable
  2020-11-05  9:06 ` [PATCH] spi: bcm2835: remove use of uninitialized gpio flags variable Martin Hundebøll
  2020-11-05 15:08   ` Mark Brown
@ 2020-11-06 11:54   ` Mark Brown
  1 sibling, 0 replies; 6+ messages in thread
From: Mark Brown @ 2020-11-06 11:54 UTC (permalink / raw)
  To: linux-spi, Martin Hundebøll
  Cc: Florian Fainelli, Scott Branden, Ray Jui, Nicolas Saenz Julienne,
	bcm-kernel-feedback-list, linux-rpi-kernel, linux-arm-kernel

On Thu, 5 Nov 2020 10:06:15 +0100, Martin Hundebøll wrote:
> Removing the duplicate gpio chip select level handling in
> bcm2835_spi_setup() left the lflags variable uninitialized. Avoid trhe
> use of such variable by passing default flags to
> gpiochip_request_own_desc().

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi: bcm2835: remove use of uninitialized gpio flags variable
      commit: bc7f2cd7559c5595dc38b909ae9a8d43e0215994

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-11-06 11:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-14  9:02 [PATCH] spi: bcm2835: fix gpio cs level inversion Martin Hundebøll
2020-10-29 13:07 ` Mark Brown
2020-10-30  9:06 ` Nathan Chancellor
2020-11-05  9:06 ` [PATCH] spi: bcm2835: remove use of uninitialized gpio flags variable Martin Hundebøll
2020-11-05 15:08   ` Mark Brown
2020-11-06 11:54   ` Mark Brown

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).