aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/shdma.c
diff options
context:
space:
mode:
authorRussell King - ARM Linux <linux@arm.linux.org.uk>2012-03-06 17:35:27 -0500
committerVinod Koul <vinod.koul@linux.intel.com>2012-03-13 02:07:14 -0400
commit96a2af41c78b1fbb1f567a3486bdc63f7b31c5fd (patch)
treed977c6b2ff1a23dfd523e70315ebe976a3f3f079 /drivers/dma/shdma.c
parentf7fbce07c6ce26a25b4e0cb5f241c361fde87901 (diff)
dmaengine: consolidate tx_status functions
Now that we have the completed cookie in the dma_chan structure, we can consolidate the tx_status functions by providing a function to set the txstate structure and returning the DMA status. We also provide a separate helper to set the residue for cookies which are still in progress. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk> Tested-by: Linus Walleij <linus.walleij@linaro.org> Reviewed-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: Jassi Brar <jassisinghbrar@gmail.com> [imx-sdma.c & mxs-dma.c] Tested-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Vinod Koul <vinod.koul@linux.intel.com>
Diffstat (limited to 'drivers/dma/shdma.c')
-rw-r--r--drivers/dma/shdma.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/drivers/dma/shdma.c b/drivers/dma/shdma.c
index 96d0a4fe8dd9..50510ef7db72 100644
--- a/drivers/dma/shdma.c
+++ b/drivers/dma/shdma.c
@@ -879,23 +879,14 @@ static enum dma_status sh_dmae_tx_status(struct dma_chan *chan,
879 struct dma_tx_state *txstate) 879 struct dma_tx_state *txstate)
880{ 880{
881 struct sh_dmae_chan *sh_chan = to_sh_chan(chan); 881 struct sh_dmae_chan *sh_chan = to_sh_chan(chan);
882 dma_cookie_t last_used;
883 dma_cookie_t last_complete;
884 enum dma_status status; 882 enum dma_status status;
885 unsigned long flags; 883 unsigned long flags;
886 884
887 sh_dmae_chan_ld_cleanup(sh_chan, false); 885 sh_dmae_chan_ld_cleanup(sh_chan, false);
888 886
889 /* First read completed cookie to avoid a skew */
890 last_complete = chan->completed_cookie;
891 rmb();
892 last_used = chan->cookie;
893 BUG_ON(last_complete < 0);
894 dma_set_tx_state(txstate, last_complete, last_used, 0);
895
896 spin_lock_irqsave(&sh_chan->desc_lock, flags); 887 spin_lock_irqsave(&sh_chan->desc_lock, flags);
897 888
898 status = dma_async_is_complete(cookie, last_complete, last_used); 889 status = dma_cookie_status(chan, cookie, txstate);
899 890
900 /* 891 /*
901 * If we don't find cookie on the queue, it has been aborted and we have 892 * If we don't find cookie on the queue, it has been aborted and we have