spi: pxa2xx: Update DMA mapping and using logic in the documentation
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Fri, 8 Dec 2023 17:02:55 +0000 (19:02 +0200)
committerMark Brown <broonie@kernel.org>
Fri, 8 Dec 2023 17:50:00 +0000 (17:50 +0000)
Update DMA mapping and using logic in the documentation to follow what
the code does.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20231208170436.3309648-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Documentation/spi/pxa2xx.rst

index 143f1df..19479b8 100644 (file)
@@ -193,17 +193,14 @@ mode supports both coherent and stream based DMA mappings.
 The following logic is used to determine the type of I/O to be used on
 a per "spi_transfer" basis::
 
-  if !enable_dma then
-       always use PIO transfers
+  if spi_message.len > 65536 then
+       if spi_message.is_dma_mapped or rx_dma_buf != 0 or tx_dma_buf != 0 then
+               reject premapped transfers
 
-  if spi_message.len > 8191 then
        print "rate limited" warning
        use PIO transfers
 
-  if spi_message.is_dma_mapped and rx_dma_buf != 0 and tx_dma_buf != 0 then
-       use coherent DMA mode
-
-  if rx_buf and tx_buf are aligned on 8 byte boundary then
+  if enable_dma and the size is in the range [DMA burst size..65536] then
        use streaming DMA mode
 
   otherwise