Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751799AbeACDym (ORCPT + 1 other); Tue, 2 Jan 2018 22:54:42 -0500 Received: from mga11.intel.com ([192.55.52.93]:28930 "EHLO mga11.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750997AbeACDyl (ORCPT ); Tue, 2 Jan 2018 22:54:41 -0500 X-Amp-Result: UNKNOWN X-Amp-Original-Verdict: FILE UNKNOWN X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,500,1508828400"; d="scan'208";a="17059816" Date: Wed, 3 Jan 2018 09:28:45 +0530 From: Vinod Koul To: Kedareswara rao Appana Cc: dan.j.williams@intel.com, michal.simek@xilinx.com, appanad@xilinx.com, lars@metafoo.de, akinobu.mita@gmail.com, joabreu@synopsys.com, mike.looijmans@topic.nl, kedare06@gmail.com, dmaengine@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [LINUX PATCH 2/4] dmaengine: xilinx_dma: Fix race condition in the driver for cdma Message-ID: <20180103035845.GG18649@localhost> References: <1513851098-15787-1-git-send-email-appanad@xilinx.com> <1513851098-15787-3-git-send-email-appanad@xilinx.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1513851098-15787-3-git-send-email-appanad@xilinx.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: On Thu, Dec 21, 2017 at 03:41:36PM +0530, Kedareswara rao Appana wrote: same issue for patch title here too > when hardware is idle we need to toggle the SG bit > in the control register, inorder to update new value to the > current descriptor register other wise undefined > results will occur. can you try making it bit more clear.. > > This patch updates the same. > > Signed-off-by: Kedareswara rao Appana > --- > drivers/dma/xilinx/xilinx_dma.c | 10 ++++++++++ > 1 file changed, 10 insertions(+) > > diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c > index 21ac954..8467671 100644 > --- a/drivers/dma/xilinx/xilinx_dma.c > +++ b/drivers/dma/xilinx/xilinx_dma.c > @@ -1204,6 +1204,12 @@ static void xilinx_cdma_start_transfer(struct xilinx_dma_chan *chan) > } > > if (chan->has_sg) { > + dma_ctrl_clr(chan, XILINX_DMA_REG_DMACR, > + XILINX_CDMA_CR_SGMODE); > + > + dma_ctrl_set(chan, XILINX_DMA_REG_DMACR, > + XILINX_CDMA_CR_SGMODE); > + > xilinx_write(chan, XILINX_DMA_REG_CURDESC, > head_desc->async_tx.phys); > > @@ -2052,6 +2058,10 @@ static int xilinx_dma_terminate_all(struct dma_chan *dchan) > chan->cyclic = false; > } > > + if ((chan->xdev->dma_config->dmatype == XDMA_TYPE_CDMA) && chan->has_sg) > + dma_ctrl_clr(chan, XILINX_DMA_REG_DMACR, > + XILINX_CDMA_CR_SGMODE); > + > return 0; > } > > -- > 2.7.4 > -- ~Vinod