On Mon, Nov 09, 2020 at 05:48:08PM +0300, Serge Semin wrote: > On Mon, Nov 09, 2020 at 02:14:22PM +0000, Mark Brown wrote: > > On Mon, Nov 09, 2020 at 08:47:10AM -0500, Sean Anderson wrote: > > > There is a recieve-only mode, but it is not used by this driver. Perhaps > > > it should be. > > I'd expect it'd perform better, especially on systems that are > > apparently struggling for CPU bandwidth like yours seems to. > Well, it might seem a good idea to use that mode, but there are multiple problems > you may get in implementing it. > First of all the Receive-only mode is having a limited number bytes to receive > at once. It's just 64KB. So in order to implement it you'd need to split the > bigger transfers up, and feed the DMA engine with smaller chunks one-by-one. That at least is handlable, even if it's only by falling back to transmitting when the data grows over 64K. > Secondly the Receive-only mode will make the DW SSI controller to constantly receive > the data from the SPI bus and to put it into the Rx FIFO. So your DMA engine will > have to keep up with extracting the data from there on time, otherwise you'll > end up with Rx FIFO overflow error eventually. The problem will be actual for the > DMA engines/system buses, which are slower than the SPI bus speed, second for the > DMA engines with no hardware accelerated LLP traversal support (like on our DWC DMA > controller). The second problem can be also fixed by splitting the transfers up as > it has been already implemented in the spi-dw-dma.c. But the first problem can't be > fixed, but just workarounded by limiting the SPI bus frequency so the DMA engine > would keep up with incoming data traffic. I'd have expected that a single duplex mode would lessen the pressure on at least the system bus - that's the main advantage, and might help the DMA controllers as well depending on why they might be struggling. From the comments in the code there's issues on some systems with TX and RX running at different rates which would go away in single duplex cases if nothing else. But yeah, it's not going to just fix everything. Please fix your mail client to word wrap within paragraphs at something substantially less than 80 columns. Doing this makes your messages much easier to read and reply to.