From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753427AbcBVGGv (ORCPT ); Mon, 22 Feb 2016 01:06:51 -0500 Received: from mail-pf0-f169.google.com ([209.85.192.169]:32920 "EHLO mail-pf0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752224AbcBVGGt (ORCPT ); Mon, 22 Feb 2016 01:06:49 -0500 Date: Mon, 22 Feb 2016 14:02:30 +0800 From: Peter Chen To: Bjorn Andersson Cc: Peter Chen , Greg Kroah-Hartman , Srinivas Kandagatla , linux-usb@vger.kernel.org, linux-arm-msm , linux-kernel@vger.kernel.org Subject: Re: [PATCH] usb: chipidea: Configure DMA properties and ops from DT Message-ID: <20160222060230.GA5097@shlinux2.ap.freescale.net> References: <1456119133-16114-1-git-send-email-bjorn.andersson@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1456119133-16114-1-git-send-email-bjorn.andersson@linaro.org> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sun, Feb 21, 2016 at 09:32:13PM -0800, Bjorn Andersson wrote: > On certain platforms (e.g. ARM64) the dma_ops needs to be explicitly set > to be able to do DMA allocations, so use the of_dma_configure() helper > to populate the dma properties and assign an appropriate dma_ops. > > Signed-off-by: Bjorn Andersson > --- > drivers/usb/chipidea/core.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/drivers/usb/chipidea/core.c b/drivers/usb/chipidea/core.c > index 7404064b9bbc..047b9d4e67aa 100644 > --- a/drivers/usb/chipidea/core.c > +++ b/drivers/usb/chipidea/core.c > @@ -62,6 +62,7 @@ > #include > #include > #include > +#include > #include > #include > #include > @@ -834,6 +835,9 @@ struct platform_device *ci_hdrc_add_device(struct device *dev, > pdev->dev.dma_parms = dev->dma_parms; > dma_set_coherent_mask(&pdev->dev, dev->coherent_dma_mask); > > + if (IS_ENABLED(CONFIG_OF) && dev->of_node) > + of_dma_configure(&pdev->dev, dev->of_node); > + > ret = platform_device_add_resources(pdev, res, nres); > if (ret) > goto err; Just would like to confirm, it will not affect the default behavior which the "dma-ranges" is not set at those platforms? -- Best Regards, Peter Chen