* McSPI hangs with cs_change after "Switch driver to use transfer_one" change @ 2015-10-08 13:54 Neil Armstrong [not found] ` <561675AA.4010505-rdvid1DuHRBWk0Htik3J/w@public.gmane.org> 0 siblings, 1 reply; 2+ messages in thread From: Neil Armstrong @ 2015-10-08 13:54 UTC (permalink / raw) To: Mark Brown, linux-spi, linux-kernel, Michael Welling, Fionn Cleary, Wolfram Sang, Jarkko Nikula, Sebastian Reichel Hi All, I'm in a use case where I use cs_change on McSPI channel 3 on a single transfer Full-Duplex message, then I transfer a single full duplex message without cs_change on channel 1. Here is a better representation : -- 1 transfer message cs_change=1 cs3 : set_cs(0) cs3 : full-duplex transfer cs3 : transfer ok -- 1 transfer message cs_change=1 cs3 : set_cs(0) cs3 : full-duplex transfer cs3 : transfer ok ... -- 1 transfer message cs_change=1 cs3 : set_cs(0) cs3 : full-duplex transfer cs3 : transfer ok -- 1 transfer message cs_change=1 cs1 : set_cs(0) cs1 : full-duplex transfer cs1 : RXS timed out cs1 : set_cs(1) Then "RXS timed out" on each non-cs3 transfers. The previous behavior of cs_change was : - between transfers, unassert CS and re-assert-it for the following transfer - between messages, unassert CS The new behaviour inherited from the SPI core spi_transfer_one_message function : - between transfers, unassert CS and re-assert-it for the following transfer - between messages, leave CS asserted We tried disabling the DMA, and the FIFO, but the behavior was actually the same, only reverting back before the "Switch driver to use transfer_one" fixed the issue. Then actually disabling the cs_change corrected the issue. It may be why the original driver ignored the "leave it on after last xfer" hint. The problem is : how can we disable this hint since it is managed in SPI core spi_transfer_one_message ? A solution will be to track down the current asserted CS and unassert it them when the active channel changes. Neil ^ permalink raw reply [flat|nested] 2+ messages in thread
[parent not found: <561675AA.4010505-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>]
* Re: McSPI hangs with cs_change after "Switch driver to use transfer_one" change [not found] ` <561675AA.4010505-rdvid1DuHRBWk0Htik3J/w@public.gmane.org> @ 2015-10-08 14:47 ` Michael Welling 0 siblings, 0 replies; 2+ messages in thread From: Michael Welling @ 2015-10-08 14:47 UTC (permalink / raw) To: Neil Armstrong Cc: Mark Brown, linux-spi-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Fionn Cleary, Wolfram Sang, Jarkko Nikula, Sebastian Reichel On Thu, Oct 08, 2015 at 02:54:50PM +0100, Neil Armstrong wrote: > Hi All, > > I'm in a use case where I use cs_change on McSPI channel 3 on a single transfer Full-Duplex message, then I transfer a single full duplex message without cs_change on channel 1. > > Here is a better representation : > -- 1 transfer message cs_change=1 > cs3 : set_cs(0) > cs3 : full-duplex transfer > cs3 : transfer ok > -- 1 transfer message cs_change=1 > cs3 : set_cs(0) > cs3 : full-duplex transfer > cs3 : transfer ok > ... > -- 1 transfer message cs_change=1 > cs3 : set_cs(0) > cs3 : full-duplex transfer > cs3 : transfer ok > -- 1 transfer message cs_change=1 > cs1 : set_cs(0) Looks like bus contention here. > cs1 : full-duplex transfer > cs1 : RXS timed out > cs1 : set_cs(1) > > Then "RXS timed out" on each non-cs3 transfers. > > The previous behavior of cs_change was : > - between transfers, unassert CS and re-assert-it for the following transfer > - between messages, unassert CS > > The new behaviour inherited from the SPI core spi_transfer_one_message function : > - between transfers, unassert CS and re-assert-it for the following transfer > - between messages, leave CS asserted > > We tried disabling the DMA, and the FIFO, but the behavior was actually the same, only reverting back before the "Switch driver to use transfer_one" fixed the issue. > > Then actually disabling the cs_change corrected the issue. It may be why the original driver ignored the "leave it on after last xfer" hint. > > The problem is : how can we disable this hint since it is managed in SPI core spi_transfer_one_message ? It seems the core driver assumes that the driver is smart enough to deselect the previous chip select instead of doing it explicitly. > > A solution will be to track down the current asserted CS and unassert it them when the active channel changes. > > Neil -- 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 ^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-10-08 14:47 UTC | newest] Thread overview: 2+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-10-08 13:54 McSPI hangs with cs_change after "Switch driver to use transfer_one" change Neil Armstrong [not found] ` <561675AA.4010505-rdvid1DuHRBWk0Htik3J/w@public.gmane.org> 2015-10-08 14:47 ` Michael Welling
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).