public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: usb: dwc3 : Configure DMA properties and ops from DT
@ 2016-05-04  3:41 Rajesh Bhagat
  2016-05-04  7:57 ` Felipe Balbi
  0 siblings, 1 reply; 7+ messages in thread
From: Rajesh Bhagat @ 2016-05-04  3:41 UTC (permalink / raw)
  To: linux-usb
  Cc: linux-kernel, balbi, gregkh, leoyang.li, sriram.dash,
	Rajesh Bhagat

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>
---
 drivers/usb/dwc3/host.c | 4 ++++
 1 file changed, 4 insertions(+)

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);
+
 	dma_set_coherent_mask(&xhci->dev, dwc->dev->coherent_dma_mask);
 
 	xhci->dev.parent	= dwc->dev;
-- 
2.6.2.198.g614a2ac

^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2016-05-27 13:35 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-04  3:41 [PATCH] drivers: usb: dwc3 : Configure DMA properties and ops from DT Rajesh Bhagat
2016-05-04  7:57 ` Felipe Balbi
2016-05-11  3:45   ` Rajesh Bhagat
2016-05-25 19:31   ` Leo Li
2016-05-26  8:30     ` Felipe Balbi
2016-05-26 20:56       ` Leo Li
2016-05-27 13:32         ` Felipe Balbi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox