Skip to content

Commit

Permalink
spi: dw-mid: clear ongoing DMA transfers on timeout
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andy Shevchenko authored and Mark Brown committed Mar 9, 2015
1 parent f051fc8 commit 4d5ac1e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
13 changes: 13 additions & 0 deletions drivers/spi/spi-dw-mid.c
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 3 additions & 0 deletions drivers/spi/spi-dw.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
1 change: 1 addition & 0 deletions drivers/spi/spi-dw.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 4d5ac1e

Please sign in to comment.