dmaengine: ioatdma: set the completion address register after channel reset
authorDave Jiang <dave.jiang@intel.com>
Mon, 11 Jun 2018 19:49:03 +0000 (12:49 -0700)
committerVinod Koul <vkoul@kernel.org>
Tue, 19 Jun 2018 04:30:16 +0000 (10:00 +0530)
It seems that starting with Skylake Xeon, channel reset clears the
completion address register. Make sure the completion address register is
set again after reset.

Signed-off-by: Dave Jiang <dave.jiang@intel.com>
Signed-off-by: Vinod Koul <vkoul@kernel.org>
drivers/dma/ioat/dma.c

index 8b5b23a8ace9b16265200098cfbb9ef1f05dbadf..23fb2fa040002daeb3e248036efa261b63b3769e 100644 (file)
@@ -688,6 +688,12 @@ static void ioat_restart_channel(struct ioatdma_chan *ioat_chan)
 {
        u64 phys_complete;
 
+       /* set the completion address register again */
+       writel(lower_32_bits(ioat_chan->completion_dma),
+              ioat_chan->reg_base + IOAT_CHANCMP_OFFSET_LOW);
+       writel(upper_32_bits(ioat_chan->completion_dma),
+              ioat_chan->reg_base + IOAT_CHANCMP_OFFSET_HIGH);
+
        ioat_quiesce(ioat_chan, 0);
        if (ioat_cleanup_preamble(ioat_chan, &phys_complete))
                __cleanup(ioat_chan, phys_complete);