]> git.karo-electronics.de Git - linux-beck.git/commitdiff
spi: dw-mid: clear ongoing DMA transfers on timeout
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 9 Mar 2015 14:48:48 +0000 (16:48 +0200)
committerMark Brown <broonie@kernel.org>
Mon, 9 Mar 2015 18:11:13 +0000 (18:11 +0000)
This patch shuts up any ongoing DMA transfer in case of error.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-dw-mid.c
drivers/spi/spi-dw.c
drivers/spi/spi-dw.h

index 3729cdd84e94bfe0a650650e83b184c58f756db7..e614190daef6f7b6af86768bd9ed3e85acfd55c9 100644 (file)
@@ -270,11 +270,24 @@ static int mid_spi_dma_transfer(struct dw_spi *dws)
        return 0;
 }
 
+static void mid_spi_dma_stop(struct dw_spi *dws)
+{
+       if (test_bit(TX_BUSY, &dws->dma_chan_busy)) {
+               dmaengine_terminate_all(dws->txchan);
+               clear_bit(TX_BUSY, &dws->dma_chan_busy);
+       }
+       if (test_bit(RX_BUSY, &dws->dma_chan_busy)) {
+               dmaengine_terminate_all(dws->rxchan);
+               clear_bit(RX_BUSY, &dws->dma_chan_busy);
+       }
+}
+
 static struct dw_spi_dma_ops mid_dma_ops = {
        .dma_init       = mid_spi_dma_init,
        .dma_exit       = mid_spi_dma_exit,
        .dma_setup      = mid_spi_dma_setup,
        .dma_transfer   = mid_spi_dma_transfer,
+       .dma_stop       = mid_spi_dma_stop,
 };
 #endif
 
index c7c2fcc2b58e7b864493fe069c20195519493b5b..d53cffe7ff2255f7a2b50b82278e9207fc80f9bf 100644 (file)
@@ -432,6 +432,9 @@ static void dw_spi_handle_err(struct spi_master *master,
 {
        struct dw_spi *dws = spi_master_get_devdata(master);
 
+       if (dws->dma_mapped)
+               dws->dma_ops->dma_stop(dws);
+
        spi_reset_chip(dws);
 }
 
index 7351692494ec2d9c02ff27eb23b9fba44567bc82..7f130bd8f37a2721d58b4a9ec7a39755987b9d93 100644 (file)
@@ -93,6 +93,7 @@ struct dw_spi_dma_ops {
        void (*dma_exit)(struct dw_spi *dws);
        int (*dma_setup)(struct dw_spi *dws);
        int (*dma_transfer)(struct dw_spi *dws);
+       void (*dma_stop)(struct dw_spi *dws);
 };
 
 struct dw_spi {