1 // SPDX-License-Identifier: GPL-2.0
3 * dwc3-of-simple.c - OF glue layer for simple integrations
5 * Copyright (c) 2015 Texas Instruments Incorporated - http://www.ti.com
9 * This is a combination of the old dwc3-qcom.c by Ivan T. Ivanov
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/slab.h>
17 #include <linux/platform_device.h>
18 #include <linux/dma-mapping.h>
19 #include <linux/clk.h>
21 #include <linux/of_platform.h>
22 #include <linux/pm_runtime.h>
23 #include <linux/reset.h>
25 struct dwc3_of_simple {
27 struct clk_bulk_data *clks;
29 struct reset_control *resets;
34 static int dwc3_of_simple_probe(struct platform_device *pdev)
36 struct dwc3_of_simple *simple;
37 struct device *dev = &pdev->dev;
38 struct device_node *np = dev->of_node;
41 bool shared_resets = false;
43 simple = devm_kzalloc(dev, sizeof(*simple), GFP_KERNEL);
47 platform_set_drvdata(pdev, simple);
51 * Some controllers need to toggle the usb3-otg reset before trying to
52 * initialize the PHY, otherwise the PHY times out.
54 if (of_device_is_compatible(np, "rockchip,rk3399-dwc3"))
55 simple->need_reset = true;
57 if (of_device_is_compatible(np, "amlogic,meson-axg-dwc3") ||
58 of_device_is_compatible(np, "amlogic,meson-gxl-dwc3")) {
60 simple->pulse_resets = true;
63 simple->resets = of_reset_control_array_get(np, shared_resets, true,
65 if (IS_ERR(simple->resets)) {
66 ret = PTR_ERR(simple->resets);
67 dev_err(dev, "failed to get device resets, err=%d\n", ret);
71 if (simple->pulse_resets) {
72 ret = reset_control_reset(simple->resets);
76 ret = reset_control_deassert(simple->resets);
81 ret = clk_bulk_get_all(simple->dev, &simple->clks);
83 goto err_resetc_assert;
85 simple->num_clocks = ret;
86 ret = clk_bulk_prepare_enable(simple->num_clocks, simple->clks);
88 goto err_resetc_assert;
90 ret = of_platform_populate(np, NULL, NULL, dev);
94 pm_runtime_set_active(dev);
95 pm_runtime_enable(dev);
96 pm_runtime_get_sync(dev);
101 clk_bulk_disable_unprepare(simple->num_clocks, simple->clks);
102 clk_bulk_put_all(simple->num_clocks, simple->clks);
105 if (!simple->pulse_resets)
106 reset_control_assert(simple->resets);
109 reset_control_put(simple->resets);
113 static void __dwc3_of_simple_teardown(struct dwc3_of_simple *simple)
115 of_platform_depopulate(simple->dev);
117 clk_bulk_disable_unprepare(simple->num_clocks, simple->clks);
118 clk_bulk_put_all(simple->num_clocks, simple->clks);
119 simple->num_clocks = 0;
121 if (!simple->pulse_resets)
122 reset_control_assert(simple->resets);
124 reset_control_put(simple->resets);
126 pm_runtime_disable(simple->dev);
127 pm_runtime_put_noidle(simple->dev);
128 pm_runtime_set_suspended(simple->dev);
131 static int dwc3_of_simple_remove(struct platform_device *pdev)
133 struct dwc3_of_simple *simple = platform_get_drvdata(pdev);
135 __dwc3_of_simple_teardown(simple);
140 static void dwc3_of_simple_shutdown(struct platform_device *pdev)
142 struct dwc3_of_simple *simple = platform_get_drvdata(pdev);
144 __dwc3_of_simple_teardown(simple);
147 static int __maybe_unused dwc3_of_simple_runtime_suspend(struct device *dev)
149 struct dwc3_of_simple *simple = dev_get_drvdata(dev);
151 clk_bulk_disable(simple->num_clocks, simple->clks);
156 static int __maybe_unused dwc3_of_simple_runtime_resume(struct device *dev)
158 struct dwc3_of_simple *simple = dev_get_drvdata(dev);
160 return clk_bulk_enable(simple->num_clocks, simple->clks);
163 static int __maybe_unused dwc3_of_simple_suspend(struct device *dev)
165 struct dwc3_of_simple *simple = dev_get_drvdata(dev);
167 if (simple->need_reset)
168 reset_control_assert(simple->resets);
173 static int __maybe_unused dwc3_of_simple_resume(struct device *dev)
175 struct dwc3_of_simple *simple = dev_get_drvdata(dev);
177 if (simple->need_reset)
178 reset_control_deassert(simple->resets);
183 static const struct dev_pm_ops dwc3_of_simple_dev_pm_ops = {
184 SET_SYSTEM_SLEEP_PM_OPS(dwc3_of_simple_suspend, dwc3_of_simple_resume)
185 SET_RUNTIME_PM_OPS(dwc3_of_simple_runtime_suspend,
186 dwc3_of_simple_runtime_resume, NULL)
189 static const struct of_device_id of_dwc3_simple_match[] = {
190 { .compatible = "rockchip,rk3399-dwc3" },
191 { .compatible = "xlnx,zynqmp-dwc3" },
192 { .compatible = "cavium,octeon-7130-usb-uctl" },
193 { .compatible = "sprd,sc9860-dwc3" },
194 { .compatible = "amlogic,meson-axg-dwc3" },
195 { .compatible = "amlogic,meson-gxl-dwc3" },
196 { .compatible = "allwinner,sun50i-h6-dwc3" },
199 MODULE_DEVICE_TABLE(of, of_dwc3_simple_match);
201 static struct platform_driver dwc3_of_simple_driver = {
202 .probe = dwc3_of_simple_probe,
203 .remove = dwc3_of_simple_remove,
204 .shutdown = dwc3_of_simple_shutdown,
206 .name = "dwc3-of-simple",
207 .of_match_table = of_dwc3_simple_match,
208 .pm = &dwc3_of_simple_dev_pm_ops,
212 module_platform_driver(dwc3_of_simple_driver);
213 MODULE_LICENSE("GPL v2");
214 MODULE_DESCRIPTION("DesignWare USB3 OF Simple Glue Layer");