]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
spi: spi-cadence: Move TX FIFO full busy-wait into FIFO
authorSrikanth Boyapally <srikanth.boyapally@amd.com>
Mon, 20 Jul 2026 12:55:10 +0000 (18:25 +0530)
committerMark Brown <broonie@kernel.org>
Mon, 27 Jul 2026 17:51:47 +0000 (18:51 +0100)
SPI host transfers could intermittently stall with spi_transfer timeouts.
The TXFULL condition was checked only once in cdns_transfer_one() before
cdns_spi_process_fifo(), so if the FIFO became full again during refill,
writes could be dropped and the transfer would never complete.

Move the TXFULL busy-wait into the TX path of cdns_spi_process_fifo() so
the 10µs back-off is applied per FIFO entry during filling, ensuring
forward progress and eliminating spurious timeouts.

Restrict the delay to host mode using spi_controller_is_target(), the
controller is passed into cdns_spi_process_fifo() so the check is made at
the point of use. In target mode this delay must not run as it causes the
target to miss its transfer window and corrupt data.

Fixes: 49530e641178 ("spi: cadence: Add usleep_range() for cdns_spi_fill_tx_fifo()")
Signed-off-by: Srikanth Boyapally <srikanth.boyapally@amd.com>
Reviewed-by: Radhey Shyam Pandey <radhey.shyam.pandey@amd.com>
Link: https://patch.msgid.link/20260720125510.60166-1-srikanth.boyapally@amd.com
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-cadence.c

index 9b4e5b7013ae8367a6749f5b6f8da78788931514..af1a05e7849211609af63c818a4a716d75677ce8 100644 (file)
@@ -388,11 +388,13 @@ static inline void cdns_spi_writer(struct cdns_spi *xspi)
 
 /**
  * cdns_spi_process_fifo - Fills the TX FIFO, and drain the RX FIFO
+ * @ctlr:      Pointer to the spi_controller structure
  * @xspi:      Pointer to the cdns_spi structure
  * @ntx:       Number of bytes to pack into the TX FIFO
  * @nrx:       Number of bytes to drain from the RX FIFO
  */
-static void cdns_spi_process_fifo(struct cdns_spi *xspi, int ntx, int nrx)
+static void cdns_spi_process_fifo(struct spi_controller *ctlr,
+                                 struct cdns_spi *xspi, int ntx, int nrx)
 {
        ntx = clamp(ntx, 0, xspi->tx_bytes);
        nrx = clamp(nrx, 0, xspi->rx_bytes);
@@ -407,6 +409,16 @@ static void cdns_spi_process_fifo(struct cdns_spi *xspi, int ntx, int nrx)
                }
 
                if (ntx) {
+                       /* When xspi in busy condition, bytes may send failed,
+                        * then spi control didn't work thoroughly, add one byte
+                        * delay. Only in host mode; in target mode this delay
+                        * causes data corruption as the target fails to prepare
+                        * data in time.
+                        */
+                       if (!spi_controller_is_target(ctlr) &&
+                           (cdns_spi_read(xspi, CDNS_SPI_ISR) & CDNS_SPI_IXR_TXFULL))
+                               udelay(10);
+
                        cdns_spi_writer(xspi);
                        ntx--;
                }
@@ -460,14 +472,14 @@ static irqreturn_t cdns_spi_irq(int irq, void *dev_id)
                        cdns_spi_write(xspi, CDNS_SPI_THLD, 1);
 
                if (xspi->tx_bytes) {
-                       cdns_spi_process_fifo(xspi, trans_cnt, trans_cnt);
+                       cdns_spi_process_fifo(ctlr, xspi, trans_cnt, trans_cnt);
                } else {
                        /* Fixed delay due to controller limitation with
                         * RX_NEMPTY incorrect status
                         * Xilinx AR:65885 contains more details
                         */
                        udelay(10);
-                       cdns_spi_process_fifo(xspi, 0, trans_cnt);
+                       cdns_spi_process_fifo(ctlr, xspi, 0, trans_cnt);
                        cdns_spi_write(xspi, CDNS_SPI_IDR,
                                       CDNS_SPI_IXR_DEFAULT);
                        spi_finalize_current_transfer(ctlr);
@@ -520,17 +532,11 @@ static int cdns_transfer_one(struct spi_controller *ctlr,
                        cdns_spi_write(xspi, CDNS_SPI_THLD, xspi->tx_fifo_depth >> 1);
        }
 
-       /* When xspi in busy condition, bytes may send failed,
-        * then spi control didn't work thoroughly, add one byte delay
-        */
-       if (cdns_spi_read(xspi, CDNS_SPI_ISR) & CDNS_SPI_IXR_TXFULL)
-               udelay(10);
-
        xspi->n_bytes = cdns_spi_n_bytes(transfer);
        xspi->tx_bytes = DIV_ROUND_UP(xspi->tx_bytes, xspi->n_bytes);
        xspi->rx_bytes = DIV_ROUND_UP(xspi->rx_bytes, xspi->n_bytes);
 
-       cdns_spi_process_fifo(xspi, xspi->tx_fifo_depth, 0);
+       cdns_spi_process_fifo(ctlr, xspi, xspi->tx_fifo_depth, 0);
 
        cdns_spi_write(xspi, CDNS_SPI_IER, CDNS_SPI_IXR_DEFAULT);
        return transfer->len;