]> Git Repo - linux.git/commitdiff
spi: spi-imx: correctly configure burst length when using dma
authorBenjamin Bigler <[email protected]>
Sat, 9 Dec 2023 22:23:26 +0000 (23:23 +0100)
committerMark Brown <[email protected]>
Sun, 10 Dec 2023 13:45:58 +0000 (13:45 +0000)
If DMA is used, burst length should be set to the bus width of the DMA.
Otherwise, the SPI hardware will transmit/receive one word per DMA
request.
Since this issue affects both transmission and reception, it cannot be
detected with a loopback test.
Replace magic numbers 512 and 0xfff with MX51_ECSPI_CTRL_MAX_BURST.

Reported-by Stefan Bigler <[email protected]>

Signed-off-by: Benjamin Bigler <[email protected]>
Fixes: 15a6af94a277 ("spi: Increase imx51 ecspi burst length based on transfer length")
Link: https://lore.kernel.org/r/[email protected]
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
drivers/spi/spi-imx.c

index 498e35c8db2c1d733cc33a197e5cb04d06fd6c43..272bc871a848b833e6e673740f4be5f8f3a16294 100644 (file)
@@ -659,11 +659,18 @@ static int mx51_ecspi_prepare_transfer(struct spi_imx_data *spi_imx,
                ctrl |= (spi_imx->target_burst * 8 - 1)
                        << MX51_ECSPI_CTRL_BL_OFFSET;
        else {
-               if (spi_imx->count >= 512)
-                       ctrl |= 0xFFF << MX51_ECSPI_CTRL_BL_OFFSET;
-               else
-                       ctrl |= (spi_imx->count * spi_imx->bits_per_word - 1)
+               if (spi_imx->usedma) {
+                       ctrl |= (spi_imx->bits_per_word *
+                               spi_imx_bytes_per_word(spi_imx->bits_per_word) - 1)
                                << MX51_ECSPI_CTRL_BL_OFFSET;
+               } else {
+                       if (spi_imx->count >= MX51_ECSPI_CTRL_MAX_BURST)
+                               ctrl |= (MX51_ECSPI_CTRL_MAX_BURST - 1)
+                                               << MX51_ECSPI_CTRL_BL_OFFSET;
+                       else
+                               ctrl |= (spi_imx->count * spi_imx->bits_per_word - 1)
+                                               << MX51_ECSPI_CTRL_BL_OFFSET;
+               }
        }
 
        /* set clock speed */
This page took 0.058625 seconds and 4 git commands to generate.