]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
dmaengine: at_xdmac: wait for in-progress transaction to complete after pausing a...
authorCyrille Pitchen <cyrille.pitchen@atmel.com>
Tue, 27 Jan 2015 15:30:29 +0000 (16:30 +0100)
committerVinod Koul <vinod.koul@intel.com>
Thu, 5 Feb 2015 07:12:28 +0000 (23:12 -0800)
Signed-off-by: Cyrille Pitchen <cyrille.pitchen@atmel.com>
Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/at_xdmac.c

index c39000b9980acc0e4a0b2af727a1c4012490dbc0..ed8a576cee7bd8db56f3bcbf5943e7f2bfd3b9b7 100644 (file)
@@ -1136,9 +1136,14 @@ static int at_xdmac_device_pause(struct dma_chan *chan)
 
        dev_dbg(chan2dev(chan), "%s\n", __func__);
 
+       if (test_and_set_bit(AT_XDMAC_CHAN_IS_PAUSED, &atchan->status))
+               return 0;
+
        spin_lock_bh(&atchan->lock);
        at_xdmac_write(atxdmac, AT_XDMAC_GRWS, atchan->mask);
-       set_bit(AT_XDMAC_CHAN_IS_PAUSED, &atchan->status);
+       while (at_xdmac_chan_read(atchan, AT_XDMAC_CC)
+              & (AT_XDMAC_CC_WRIP | AT_XDMAC_CC_RDIP))
+               cpu_relax();
        spin_unlock_bh(&atchan->lock);
 
        return 0;