Loading...
1/*
2 * Copyright (C) 2014 Marvell Technology Group Ltd.
3 *
4 * Antoine Tenart <antoine.tenart@free-electrons.com>
5 *
6 * This file is licensed under the terms of the GNU General Public
7 * License version 2. This program is licensed "as is" without any
8 * warranty of any kind, whether express or implied.
9 */
10
11#include <linux/clk.h>
12#include <linux/dma-mapping.h>
13#include <linux/module.h>
14#include <linux/of.h>
15#include <linux/of_platform.h>
16#include <linux/phy/phy.h>
17#include <linux/platform_device.h>
18#include <linux/usb/chipidea.h>
19#include <linux/usb/hcd.h>
20#include <linux/usb/ulpi.h>
21
22#include "ci.h"
23
24struct ci_hdrc_usb2_priv {
25 struct platform_device *ci_pdev;
26 struct clk *clk;
27};
28
29static const struct ci_hdrc_platform_data ci_default_pdata = {
30 .capoffset = DEF_CAPOFFSET,
31 .flags = CI_HDRC_DISABLE_STREAMING,
32};
33
34static struct ci_hdrc_platform_data ci_zynq_pdata = {
35 .capoffset = DEF_CAPOFFSET,
36};
37
38static const struct of_device_id ci_hdrc_usb2_of_match[] = {
39 { .compatible = "chipidea,usb2"},
40 { .compatible = "xlnx,zynq-usb-2.20a", .data = &ci_zynq_pdata},
41 { }
42};
43MODULE_DEVICE_TABLE(of, ci_hdrc_usb2_of_match);
44
45static int ci_hdrc_usb2_probe(struct platform_device *pdev)
46{
47 struct device *dev = &pdev->dev;
48 struct ci_hdrc_usb2_priv *priv;
49 struct ci_hdrc_platform_data *ci_pdata = dev_get_platdata(dev);
50 int ret;
51 const struct of_device_id *match;
52
53 if (!ci_pdata) {
54 ci_pdata = devm_kmalloc(dev, sizeof(*ci_pdata), GFP_KERNEL);
55 *ci_pdata = ci_default_pdata; /* struct copy */
56 }
57
58 match = of_match_device(ci_hdrc_usb2_of_match, &pdev->dev);
59 if (match && match->data) {
60 /* struct copy */
61 *ci_pdata = *(struct ci_hdrc_platform_data *)match->data;
62 }
63
64 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
65 if (!priv)
66 return -ENOMEM;
67
68 priv->clk = devm_clk_get(dev, NULL);
69 if (!IS_ERR(priv->clk)) {
70 ret = clk_prepare_enable(priv->clk);
71 if (ret) {
72 dev_err(dev, "failed to enable the clock: %d\n", ret);
73 return ret;
74 }
75 }
76
77 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
78 if (ret)
79 goto clk_err;
80
81 ci_pdata->name = dev_name(dev);
82
83 priv->ci_pdev = ci_hdrc_add_device(dev, pdev->resource,
84 pdev->num_resources, ci_pdata);
85 if (IS_ERR(priv->ci_pdev)) {
86 ret = PTR_ERR(priv->ci_pdev);
87 if (ret != -EPROBE_DEFER)
88 dev_err(dev,
89 "failed to register ci_hdrc platform device: %d\n",
90 ret);
91 goto clk_err;
92 }
93
94 platform_set_drvdata(pdev, priv);
95
96 pm_runtime_no_callbacks(dev);
97 pm_runtime_enable(dev);
98
99 return 0;
100
101clk_err:
102 if (!IS_ERR(priv->clk))
103 clk_disable_unprepare(priv->clk);
104 return ret;
105}
106
107static int ci_hdrc_usb2_remove(struct platform_device *pdev)
108{
109 struct ci_hdrc_usb2_priv *priv = platform_get_drvdata(pdev);
110
111 pm_runtime_disable(&pdev->dev);
112 ci_hdrc_remove_device(priv->ci_pdev);
113 clk_disable_unprepare(priv->clk);
114
115 return 0;
116}
117
118static struct platform_driver ci_hdrc_usb2_driver = {
119 .probe = ci_hdrc_usb2_probe,
120 .remove = ci_hdrc_usb2_remove,
121 .driver = {
122 .name = "chipidea-usb2",
123 .of_match_table = of_match_ptr(ci_hdrc_usb2_of_match),
124 },
125};
126module_platform_driver(ci_hdrc_usb2_driver);
127
128MODULE_DESCRIPTION("ChipIdea HDRC USB2 binding for ci13xxx");
129MODULE_AUTHOR("Antoine Tenart <antoine.tenart@free-electrons.com>");
130MODULE_LICENSE("GPL");
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2014 Marvell Technology Group Ltd.
4 *
5 * Antoine Tenart <antoine.tenart@free-electrons.com>
6 */
7
8#include <linux/clk.h>
9#include <linux/dma-mapping.h>
10#include <linux/module.h>
11#include <linux/of.h>
12#include <linux/phy/phy.h>
13#include <linux/platform_device.h>
14#include <linux/property.h>
15#include <linux/usb/chipidea.h>
16#include <linux/usb/hcd.h>
17#include <linux/usb/ulpi.h>
18
19#include "ci.h"
20
21struct ci_hdrc_usb2_priv {
22 struct platform_device *ci_pdev;
23 struct clk *clk;
24};
25
26static const struct ci_hdrc_platform_data ci_default_pdata = {
27 .capoffset = DEF_CAPOFFSET,
28 .flags = CI_HDRC_DISABLE_STREAMING,
29};
30
31static const struct ci_hdrc_platform_data ci_zynq_pdata = {
32 .capoffset = DEF_CAPOFFSET,
33 .flags = CI_HDRC_PHY_VBUS_CONTROL,
34};
35
36static const struct ci_hdrc_platform_data ci_zevio_pdata = {
37 .capoffset = DEF_CAPOFFSET,
38 .flags = CI_HDRC_REGS_SHARED | CI_HDRC_FORCE_FULLSPEED,
39};
40
41static const struct of_device_id ci_hdrc_usb2_of_match[] = {
42 { .compatible = "chipidea,usb2" },
43 { .compatible = "xlnx,zynq-usb-2.20a", .data = &ci_zynq_pdata },
44 { .compatible = "lsi,zevio-usb", .data = &ci_zevio_pdata },
45 { }
46};
47MODULE_DEVICE_TABLE(of, ci_hdrc_usb2_of_match);
48
49static int ci_hdrc_usb2_probe(struct platform_device *pdev)
50{
51 struct device *dev = &pdev->dev;
52 struct ci_hdrc_usb2_priv *priv;
53 struct ci_hdrc_platform_data *ci_pdata = dev_get_platdata(dev);
54 const struct ci_hdrc_platform_data *data;
55 int ret;
56
57 if (!ci_pdata) {
58 ci_pdata = devm_kmalloc(dev, sizeof(*ci_pdata), GFP_KERNEL);
59 if (!ci_pdata)
60 return -ENOMEM;
61 *ci_pdata = ci_default_pdata; /* struct copy */
62 }
63
64 data = device_get_match_data(&pdev->dev);
65 if (data)
66 /* struct copy */
67 *ci_pdata = *data;
68
69 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
70 if (!priv)
71 return -ENOMEM;
72
73 priv->clk = devm_clk_get_optional(dev, NULL);
74 if (IS_ERR(priv->clk))
75 return PTR_ERR(priv->clk);
76
77 ret = clk_prepare_enable(priv->clk);
78 if (ret) {
79 dev_err(dev, "failed to enable the clock: %d\n", ret);
80 return ret;
81 }
82
83 ci_pdata->name = dev_name(dev);
84
85 priv->ci_pdev = ci_hdrc_add_device(dev, pdev->resource,
86 pdev->num_resources, ci_pdata);
87 if (IS_ERR(priv->ci_pdev)) {
88 ret = PTR_ERR(priv->ci_pdev);
89 if (ret != -EPROBE_DEFER)
90 dev_err(dev,
91 "failed to register ci_hdrc platform device: %d\n",
92 ret);
93 goto clk_err;
94 }
95
96 platform_set_drvdata(pdev, priv);
97
98 pm_runtime_no_callbacks(dev);
99 pm_runtime_enable(dev);
100
101 return 0;
102
103clk_err:
104 clk_disable_unprepare(priv->clk);
105 return ret;
106}
107
108static void ci_hdrc_usb2_remove(struct platform_device *pdev)
109{
110 struct ci_hdrc_usb2_priv *priv = platform_get_drvdata(pdev);
111
112 pm_runtime_disable(&pdev->dev);
113 ci_hdrc_remove_device(priv->ci_pdev);
114 clk_disable_unprepare(priv->clk);
115}
116
117static struct platform_driver ci_hdrc_usb2_driver = {
118 .probe = ci_hdrc_usb2_probe,
119 .remove_new = ci_hdrc_usb2_remove,
120 .driver = {
121 .name = "chipidea-usb2",
122 .of_match_table = ci_hdrc_usb2_of_match,
123 },
124};
125module_platform_driver(ci_hdrc_usb2_driver);
126
127MODULE_DESCRIPTION("ChipIdea HDRC USB2 binding for ci13xxx");
128MODULE_AUTHOR("Antoine Tenart <antoine.tenart@free-electrons.com>");
129MODULE_LICENSE("GPL");