Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1398664
| From | Rajesh Bhagat <rajesh.bhagat@nxp.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | RE: [PATCH] drivers: usb: dwc3 : Configure DMA properties and ops from DT |
| Date | 2016-05-11 05:50 +0200 |
| Message-ID | <rxtjQ-8qN-9@gated-at.bofh.it> (permalink) |
| References | <ruZSX-8fm-25@gated-at.bofh.it> <ruZSX-8fm-23@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
> -----Original Message----- > From: Felipe Balbi [mailto:felipe.balbi@linux.intel.com] > Sent: Wednesday, May 04, 2016 1:28 PM > To: Rajesh Bhagat <rajesh.bhagat@nxp.com>; linux-usb@vger.kernel.org > Cc: linux-kernel@vger.kernel.org; gregkh@linuxfoundation.org; Yang-Leo Li > <leoyang.li@nxp.com>; Sriram Dash <sriram.dash@nxp.com>; Rajesh Bhagat > <rajesh.bhagat@nxp.com> > Subject: Re: [PATCH] drivers: usb: dwc3 : Configure DMA properties and ops from DT > > > Hi, > > Rajesh Bhagat <rajesh.bhagat@nxp.com> writes: > > 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: Rajesh Bhagat <rajesh.bhagat@nxp.com> > > Reviewed-by: Yang-Leo Li <leoyang.li@nxp.com> Hi, > > Cool, nxp is also using dwc3 :-) C'mon Rajesh, send us a glue layer :) > I would surely be sending the glue layer soon :) > > diff --git a/drivers/usb/dwc3/host.c b/drivers/usb/dwc3/host.c index > > c679f63..4d5b783 100644 > > --- a/drivers/usb/dwc3/host.c > > +++ b/drivers/usb/dwc3/host.c > > @@ -17,6 +17,7 @@ > > > > #include <linux/platform_device.h> > > #include <linux/usb/xhci_pdriver.h> > > +#include <linux/of_device.h> > > > > #include "core.h" > > > > @@ -32,6 +33,9 @@ int dwc3_host_init(struct dwc3 *dwc) > > return -ENOMEM; > > } > > > > + if (IS_ENABLED(CONFIG_OF) && dwc->dev->of_node) > > + of_dma_configure(&xhci->dev, dwc->dev->of_node); > > okay, so we have a long discussion about this going on. You can catch up with it > starting here: > > http://marc.info/?i=1461612094-30939-1-git-send-email-grygorii.strashko@ti.com > > At least for now, this patch will be applied. We need to have a better solution for this, > one that helps not only DT platforms. > Thanks for information. > -- > balbi
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: [PATCH] drivers: usb: dwc3 : Configure DMA properties and ops from DT Felipe Balbi <felipe.balbi@linux.intel.com> - 2016-05-04 10:00 +0200 RE: [PATCH] drivers: usb: dwc3 : Configure DMA properties and ops from DT Rajesh Bhagat <rajesh.bhagat@nxp.com> - 2016-05-11 05:50 +0200
csiph-web