Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753294AbdCNDiA (ORCPT ); Mon, 13 Mar 2017 23:38:00 -0400 Received: from mga03.intel.com ([134.134.136.65]:31142 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751934AbdCNDh6 (ORCPT ); Mon, 13 Mar 2017 23:37:58 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,162,1486454400"; d="scan'208";a="834278692" Date: Tue, 14 Mar 2017 09:08:59 +0530 From: Vinod Koul To: Ramiro Oliveira Cc: linux-kernel@vger.kernel.org, dmaengine@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, CARLOS.PALMINHA@synopsys.com, Dan Williams , Kedareswara rao Appana , Laurent Pinchart , Mark Rutland , Michal Simek , Rob Herring , =?iso-8859-1?Q?S=F6ren?= Brinkmann Subject: Re: [PATCH v2 2/2] dma: xilinx: Add reset support Message-ID: <20170314033859.GA2843@localhost> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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 Content-Length: 2299 Lines: 81 On Mon, Mar 06, 2017 at 12:17:39PM +0000, Ramiro Oliveira wrote: > Add a DT property to control an optional external reset line > > Signed-off-by: Ramiro Oliveira > --- > drivers/dma/xilinx/xilinx_dma.c | 24 ++++++++++++++++++++---- > 1 file changed, 20 insertions(+), 4 deletions(-) > > diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c > index 5c9f11b623ca..589cbb611bc8 100644 > --- a/drivers/dma/xilinx/xilinx_dma.c > +++ b/drivers/dma/xilinx/xilinx_dma.c > @@ -32,20 +32,21 @@ > */ > > #include > -#include > +#include > #include > +#include > #include > #include > +#include > #include > #include > #include > #include > #include > -#include > #include > +#include > +#include > #include > -#include > -#include this is noise in the patch, if you want to change the order feel free to send a separate patch > > #include "../dmaengine.h" > > @@ -409,6 +410,7 @@ struct xilinx_dma_device { > struct clk *rxs_clk; > u32 nr_channels; > u32 chan_id; > + struct reset_control *rst; > }; > > /* Macros */ > @@ -2543,6 +2545,20 @@ static int xilinx_dma_probe(struct platform_device *pdev) > if (IS_ERR(xdev->regs)) > return PTR_ERR(xdev->regs); > > + xdev->rst = devm_reset_control_get_optional_shared(&pdev->dev, NULL); > + if (IS_ERR(xdev->rst)) { > + err = PTR_ERR(xdev->rst); > + if (err == -EPROBE_DEFER) > + return err; > + xdev->rst = NULL; is this optional, how will it work if you can't bring device out if reset > + } else { > + err = reset_control_deassert(xdev->rst); > + if (err) { > + dev_err(xdev->dev, "error deasserting reset %d\n", err); > + return err; > + } > + } > + > /* Retrieve the DMA engine properties from the device tree */ > xdev->has_sg = of_property_read_bool(node, "xlnx,include-sg"); > if (xdev->dma_config->dmatype == XDMA_TYPE_AXIDMA) > -- > 2.11.0 > > -- ~Vinod