mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2] spi: Ensure that CS line is in non-active state after spi_setup()
@ 2015-03-13 16:43 Ivan T. Ivanov
  2015-03-20 16:14 ` Ivan T. Ivanov
  0 siblings, 1 reply; 3+ messages in thread
From: Ivan T. Ivanov @ 2015-03-13 16:43 UTC (permalink / raw)
  To: Mark Brown; +Cc: linux-spi, linux-kernel, linux-arm-msm

Some devices samples state of the chip select signal during power up
and act differently based on this state, so SPI core should ensure
that CS line is driven in non-active state after spi_setup().

Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
---
 drivers/spi/spi.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/drivers/spi/spi.c b/drivers/spi/spi.c
index c64a3e5..4023cc9 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -1893,6 +1893,8 @@ int spi_setup(struct spi_device *spi)
 	if (!spi->max_speed_hz)
 		spi->max_speed_hz = spi->master->max_speed_hz;

+	spi_set_cs(spi, false);
+
 	if (spi->master->setup)
 		status = spi->master->setup(spi);

--
1.9.1


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

end of thread, other threads:[~2015-03-20 16:17 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-13 16:43 [PATCH v2] spi: Ensure that CS line is in non-active state after spi_setup() Ivan T. Ivanov
2015-03-20 16:14 ` Ivan T. Ivanov
2015-03-20 16:17   ` Mark Brown

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome