diff options
author | Russell King - ARM Linux <linux@arm.linux.org.uk> | 2012-03-06 17:35:27 -0500 |
---|---|---|
committer | Vinod Koul <vinod.koul@linux.intel.com> | 2012-03-13 02:07:14 -0400 |
commit | 96a2af41c78b1fbb1f567a3486bdc63f7b31c5fd (patch) | |
tree | d977c6b2ff1a23dfd523e70315ebe976a3f3f079 /drivers/dma/iop-adma.c | |
parent | f7fbce07c6ce26a25b4e0cb5f241c361fde87901 (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/iop-adma.c')
-rw-r--r-- | drivers/dma/iop-adma.c | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/drivers/dma/iop-adma.c b/drivers/dma/iop-adma.c index f2392d59568d..b1e3be089c52 100644 --- a/drivers/dma/iop-adma.c +++ b/drivers/dma/iop-adma.c | |||
@@ -894,24 +894,14 @@ static enum dma_status iop_adma_status(struct dma_chan *chan, | |||
894 | struct dma_tx_state *txstate) | 894 | struct dma_tx_state *txstate) |
895 | { | 895 | { |
896 | struct iop_adma_chan *iop_chan = to_iop_adma_chan(chan); | 896 | struct iop_adma_chan *iop_chan = to_iop_adma_chan(chan); |
897 | dma_cookie_t last_used; | 897 | |
898 | dma_cookie_t last_complete; | 898 | ret = dma_cookie_status(chan, cookie, txstate); |
899 | enum dma_status ret; | ||
900 | |||
901 | last_used = chan->cookie; | ||
902 | last_complete = chan->completed_cookie; | ||
903 | dma_set_tx_state(txstate, last_complete, last_used, 0); | ||
904 | ret = dma_async_is_complete(cookie, last_complete, last_used); | ||
905 | if (ret == DMA_SUCCESS) | 899 | if (ret == DMA_SUCCESS) |
906 | return ret; | 900 | return ret; |
907 | 901 | ||
908 | iop_adma_slot_cleanup(iop_chan); | 902 | iop_adma_slot_cleanup(iop_chan); |
909 | 903 | ||
910 | last_used = chan->cookie; | 904 | return dma_cookie_status(chan, cookie, txstate); |
911 | last_complete = chan->completed_cookie; | ||
912 | dma_set_tx_state(txstate, last_complete, last_used, 0); | ||
913 | |||
914 | return dma_async_is_complete(cookie, last_complete, last_used); | ||
915 | } | 905 | } |
916 | 906 | ||
917 | static irqreturn_t iop_adma_eot_handler(int irq, void *data) | 907 | static irqreturn_t iop_adma_eot_handler(int irq, void *data) |