spi: dw-dma: Get the last DMA scoop out of the FIFO
[platform/kernel/linux-rpi.git] / drivers / spi / spi-dw-dma.c
index 0ecbb6c..252ee08 100644 (file)
@@ -315,8 +315,10 @@ static void dw_spi_dma_tx_done(void *arg)
        struct dw_spi *dws = arg;
 
        clear_bit(DW_SPI_TX_BUSY, &dws->dma_chan_busy);
-       if (test_bit(DW_SPI_RX_BUSY, &dws->dma_chan_busy))
+       if (test_bit(DW_SPI_RX_BUSY, &dws->dma_chan_busy)) {
+               dw_writel(dws, DW_SPI_DMARDLR, 0);
                return;
+       }
 
        complete(&dws->dma_completion);
 }
@@ -642,6 +644,8 @@ static int dw_spi_dma_transfer(struct dw_spi *dws, struct spi_transfer *xfer)
 
        nents = max(xfer->tx_sg.nents, xfer->rx_sg.nents);
 
+       dw_writel(dws, DW_SPI_DMARDLR, xfer->tx_buf ? (dws->rxburst - 1) : 0);
+
        /*
         * Execute normal DMA-based transfer (which submits the Rx and Tx SG
         * lists directly to the DMA engine at once) if either full hardware