[PATCH 1/1] usb: chipidea: add DMA mask configuration API

From: Peter Chen
Date: Thu Mar 24 2016 - 23:54:21 EST


Signed-off-by: Peter Chen <peter.chen@xxxxxxxxxxxxx>
---
drivers/usb/chipidea/ci_hdrc_msm.c | 6 ++++++
drivers/usb/chipidea/core.c | 25 +++++++++++++++++++++++++
include/linux/usb/chipidea.h | 2 ++
3 files changed, 33 insertions(+)

diff --git a/drivers/usb/chipidea/ci_hdrc_msm.c b/drivers/usb/chipidea/ci_hdrc_msm.c
index 3889809..43ceb38 100644
--- a/drivers/usb/chipidea/ci_hdrc_msm.c
+++ b/drivers/usb/chipidea/ci_hdrc_msm.c
@@ -5,6 +5,7 @@
* only version 2 as published by the Free Software Foundation.
*/

+#include <linux/dma-mapping.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/pm_runtime.h>
@@ -56,6 +57,7 @@ static int ci_hdrc_msm_probe(struct platform_device *pdev)
{
struct platform_device *plat_ci;
struct usb_phy *phy;
+ int ret;

dev_dbg(&pdev->dev, "ci_hdrc_msm_probe\n");

@@ -70,6 +72,10 @@ static int ci_hdrc_msm_probe(struct platform_device *pdev)

ci_hdrc_msm_platdata.usb_phy = phy;

+ ret = ci_hdrc_set_dma_mask(&pdev->dev, DMA_BIT_MASK(64));
+ if (ret)
+ return ret;
+
plat_ci = ci_hdrc_add_device(&pdev->dev,
pdev->resource, pdev->num_resources,
&ci_hdrc_msm_platdata);
diff --git a/drivers/usb/chipidea/core.c b/drivers/usb/chipidea/core.c
index 69426e6..b8ca5e3 100644
--- a/drivers/usb/chipidea/core.c
+++ b/drivers/usb/chipidea/core.c
@@ -62,6 +62,7 @@
#include <linux/usb/chipidea.h>
#include <linux/usb/of.h>
#include <linux/of.h>
+#include <linux/of_device.h>
#include <linux/phy.h>
#include <linux/regulator/consumer.h>
#include <linux/usb/ehci_def.h>
@@ -811,6 +812,30 @@ static void ci_extcon_unregister(struct ci_hdrc *ci)

static DEFINE_IDA(ci_ida);

+/**
+ * ci_hdrc_set_dma_mask
+ *
+ * Set dma mask and coherent dma mask for glue layer device, and the core
+ * device will inherit these values. If the 'dma-ranges' is specified at
+ * DT, it will use this value for both dma mask and coherent dma mask.
+ *
+ * @dev: a pointer to the device struct of glue layer device
+ * @ci_coherent_dma_mask: the mask for both dma_mask and cohrent_dma_mask
+ */
+int ci_hdrc_set_dma_mask(struct device *dev, u64 ci_coherent_dma_mask)
+{
+ int ret = dma_set_mask_and_coherent(dev, ci_coherent_dma_mask);
+ if (ret) {
+ dev_err(dev, "dma_set_mask_and_coherent fails\n");
+ return ret;
+ }
+
+ if (dev_of_node(dev))
+ of_dma_configure(dev, dev->of_node);
+
+ return ret;
+}
+
struct platform_device *ci_hdrc_add_device(struct device *dev,
struct resource *res, int nres,
struct ci_hdrc_platform_data *platdata)
diff --git a/include/linux/usb/chipidea.h b/include/linux/usb/chipidea.h
index 5dd75fa..8649930 100644
--- a/include/linux/usb/chipidea.h
+++ b/include/linux/usb/chipidea.h
@@ -84,4 +84,6 @@ struct platform_device *ci_hdrc_add_device(struct device *dev,
/* Remove ci hdrc device */
void ci_hdrc_remove_device(struct platform_device *pdev);

+int ci_hdrc_set_dma_mask(struct device *dev, u64 ci_coherent_dma_mask);
+
#endif

--
Best Regards,
Peter Chen