From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753323AbbJNLY5 (ORCPT ); Wed, 14 Oct 2015 07:24:57 -0400 Received: from mga03.intel.com ([134.134.136.65]:22187 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751731AbbJNLYx (ORCPT ); Wed, 14 Oct 2015 07:24:53 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,681,1437462000"; d="scan'208";a="664103051" Date: Wed, 14 Oct 2015 16:57:59 +0530 From: Vinod Koul To: Jon Hunter Cc: Laxman Dewangan , Stephen Warren , Thierry Reding , Alexandre Courbot , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Arnd Bergmann , dmaengine@vger.kernel.org, linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH V2 2/2] dmaengine: tegra-adma: Add support for Tegra210 ADMA Message-ID: <20151014112759.GS27370@localhost> References: <1444047007-30494-1-git-send-email-jonathanh@nvidia.com> <1444047007-30494-3-git-send-email-jonathanh@nvidia.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1444047007-30494-3-git-send-email-jonathanh@nvidia.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 05, 2015 at 01:10:07PM +0100, Jon Hunter wrote: > +static enum dma_status tegra_adma_tx_status(struct dma_chan *dc, > + dma_cookie_t cookie, > + struct dma_tx_state *txstate) > +{ > + struct tegra_adma_chan *tdc = to_tegra_adma_chan(dc); > + struct tegra_adma_desc *desc; > + struct virt_dma_desc *vd; > + enum dma_status ret; > + unsigned long flags; > + unsigned int residual; > + > + spin_lock_irqsave(&tdc->lock, flags); > + > + ret = dma_cookie_status(dc, cookie, txstate); > + if (ret == DMA_COMPLETE) { > + spin_unlock_irqrestore(&tdc->lock, flags); > + return ret; > + } txstate can be NULL, upon which below code doesn't help in getting executed so bailing here or above case is fine > +static struct dma_async_tx_descriptor *tegra_adma_prep_dma_cyclic( > + struct dma_chan *dc, dma_addr_t buf_addr, size_t buf_len, > + size_t period_len, enum dma_transfer_direction direction, > + unsigned long flags) > +{ > + struct tegra_adma_chan *tdc = to_tegra_adma_chan(dc); > + struct tegra_adma_desc *desc = NULL; > + > + if (!tdc->config_valid) { > + dev_err(tdc2dev(tdc), "ADMA slave configuration not set\n"); > + return NULL; > + } > + > + if (!buf_len || !period_len || period_len > ADMA_CH_TC_COUNT_MASK) { > + dev_err(tdc2dev(tdc), "invalid buffer/period len\n"); > + return NULL; > + } > + > + if (buf_len % period_len) { > + dev_err(tdc2dev(tdc), "buf_len not a multiple of period_len\n"); > + return NULL; > + } > + > + if (!IS_ALIGNED(buf_addr, 4)) { > + dev_err(tdc2dev(tdc), "invalid buffer alignment\n"); > + return NULL; > + } > + > + desc = kzalloc(sizeof(*desc), GFP_ATOMIC); we recommend GFP_NOWAIT for the subsystem > +static int tegra_adma_remove(struct platform_device *pdev) > +{ > + struct tegra_adma *tdma = platform_get_drvdata(pdev); > + struct tegra_adma_chan *tdc; > + int i; > + > + dma_async_device_unregister(&tdma->dma_dev); > + > + for (i = 0; i < tdma->nr_channels; ++i) { > + tdc = &tdma->channels[i]; > + tasklet_kill(&tdc->vc.task); > + } this is good, but your irq is still active and can fire and thus trigger more tasklets! -- ~Vinod