* [RFC PATCH] spi: Ensure that CS line is in non-active state after setup
@ 2015-03-06 15:45 Ivan T. Ivanov
2015-03-08 20:01 ` Mark Brown
0 siblings, 1 reply; 4+ messages in thread
From: Ivan T. Ivanov @ 2015-03-06 15:45 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, linux-arm-msm
When drivers didn't provide setup() method, 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..bfba2d9 100644
--- a/drivers/spi/spi.c
+++ b/drivers/spi/spi.c
@@ -1895,6 +1895,8 @@ int spi_setup(struct spi_device *spi)
if (spi->master->setup)
status = spi->master->setup(spi);
+ else
+ spi_set_cs(spi, false);
dev_dbg(&spi->dev, "setup mode %d, %s%s%s%s%u bits/w, %u Hz max --> %d\n",
(int) (spi->mode & (SPI_CPOL | SPI_CPHA)),
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [RFC PATCH] spi: Ensure that CS line is in non-active state after setup
2015-03-06 15:45 [RFC PATCH] spi: Ensure that CS line is in non-active state after setup Ivan T. Ivanov
@ 2015-03-08 20:01 ` Mark Brown
2015-03-09 7:11 ` Ivan T. Ivanov
0 siblings, 1 reply; 4+ messages in thread
From: Mark Brown @ 2015-03-08 20:01 UTC (permalink / raw)
To: Ivan T. Ivanov; +Cc: linux-spi, linux-kernel, linux-arm-msm
[-- Attachment #1: Type: text/plain, Size: 312 bytes --]
On Fri, Mar 06, 2015 at 05:45:15PM +0200, Ivan T. Ivanov wrote:
> if (spi->master->setup)
> status = spi->master->setup(spi);
> + else
> + spi_set_cs(spi, false);
Why would this be conditional on there not being a setup operation?
It's a good idea, I just don't see why the backstop isn't always useful.
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFC PATCH] spi: Ensure that CS line is in non-active state after setup
2015-03-08 20:01 ` Mark Brown
@ 2015-03-09 7:11 ` Ivan T. Ivanov
2015-03-09 12:11 ` Andy Shevchenko
0 siblings, 1 reply; 4+ messages in thread
From: Ivan T. Ivanov @ 2015-03-09 7:11 UTC (permalink / raw)
To: Mark Brown; +Cc: linux-spi, linux-kernel, linux-arm-msm
On Sun, 2015-03-08 at 20:01 +0000, Mark Brown wrote:
> On Fri, Mar 06, 2015 at 05:45:15PM +0200, Ivan T. Ivanov wrote:
>
> > if (spi->master->setup)
> > status = spi->master->setup(spi);
> > + else
> > + spi_set_cs(spi, false);
>
> Why would this be conditional on there not being a setup operation?
> It's a good idea, I just don't see why the backstop isn't always useful.
I was thinking that this is expected to be handled inside
setup operation, nothing more.
Ivan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [RFC PATCH] spi: Ensure that CS line is in non-active state after setup
2015-03-09 7:11 ` Ivan T. Ivanov
@ 2015-03-09 12:11 ` Andy Shevchenko
0 siblings, 0 replies; 4+ messages in thread
From: Andy Shevchenko @ 2015-03-09 12:11 UTC (permalink / raw)
To: Ivan T. Ivanov
Cc: Mark Brown, linux-spi, linux-kernel@vger.kernel.org,
linux-arm-msm
On Mon, Mar 9, 2015 at 9:11 AM, Ivan T. Ivanov <iivanov@mm-sol.com> wrote:
>
> On Sun, 2015-03-08 at 20:01 +0000, Mark Brown wrote:
>> On Fri, Mar 06, 2015 at 05:45:15PM +0200, Ivan T. Ivanov wrote:
>>
>> > if (spi->master->setup)
>> > status = spi->master->setup(spi);
>> > + else
>> > + spi_set_cs(spi, false);
>>
>> Why would this be conditional on there not being a setup operation?
>> It's a good idea, I just don't see why the backstop isn't always useful.
>
> I was thinking that this is expected to be handled inside
> setup operation, nothing more.
Agree with Mark. It's perhaps a good idea to call unconditionally
before ->setup().
--
With Best Regards,
Andy Shevchenko
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2015-03-09 12:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-06 15:45 [RFC PATCH] spi: Ensure that CS line is in non-active state after setup Ivan T. Ivanov
2015-03-08 20:01 ` Mark Brown
2015-03-09 7:11 ` Ivan T. Ivanov
2015-03-09 12:11 ` Andy Shevchenko
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox