blob: 3951a65fea048c51d6fec6b2eda72563fff5cd8a [file] [log] [blame]
Anton Tikhomirovd28a9682012-02-15 17:04:56 +09001/**
2 * dwc3-exynos.c - Samsung EXYNOS DWC3 Specific Glue layer
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
6 *
7 * Author: Anton Tikhomirov <av.tikhomirov@samsung.com>
8 *
Felipe Balbi5945f782013-06-30 14:15:11 +03009 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 of
11 * the License as published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090017 */
18
19#include <linux/module.h>
20#include <linux/kernel.h>
21#include <linux/slab.h>
22#include <linux/platform_device.h>
23#include <linux/platform_data/dwc3-exynos.h>
24#include <linux/dma-mapping.h>
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090025#include <linux/clk.h>
Felipe Balbid720f052012-07-19 14:01:10 +030026#include <linux/usb/otg.h>
Felipe Balbid7078df2014-04-16 15:28:32 -050027#include <linux/usb/usb_phy_generic.h>
Vivek Gautamaccefdd2012-11-03 18:00:27 +053028#include <linux/of.h>
Vivek Gautamadcf20d2013-03-14 18:09:49 +053029#include <linux/of_platform.h>
Vivek Gautambd8ce542014-04-21 17:46:44 +053030#include <linux/regulator/consumer.h>
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090031
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090032struct dwc3_exynos {
Felipe Balbid720f052012-07-19 14:01:10 +030033 struct platform_device *usb2_phy;
34 struct platform_device *usb3_phy;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090035 struct device *dev;
36
37 struct clk *clk;
Vivek Gautambd8ce542014-04-21 17:46:44 +053038 struct regulator *vdd33;
39 struct regulator *vdd10;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090040};
41
Bill Pemberton41ac7b32012-11-19 13:21:48 -050042static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos)
Felipe Balbid720f052012-07-19 14:01:10 +030043{
Felipe Balbi4525bee2014-04-16 15:20:44 -050044 struct usb_phy_generic_platform_data pdata;
Felipe Balbid720f052012-07-19 14:01:10 +030045 struct platform_device *pdev;
46 int ret;
47
48 memset(&pdata, 0x00, sizeof(pdata));
49
Felipe Balbi4525bee2014-04-16 15:20:44 -050050 pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO);
Felipe Balbid720f052012-07-19 14:01:10 +030051 if (!pdev)
52 return -ENOMEM;
53
54 exynos->usb2_phy = pdev;
55 pdata.type = USB_PHY_TYPE_USB2;
Heikki Krogerus13518672013-12-18 16:41:25 +020056 pdata.gpio_reset = -1;
Felipe Balbid720f052012-07-19 14:01:10 +030057
58 ret = platform_device_add_data(exynos->usb2_phy, &pdata, sizeof(pdata));
59 if (ret)
60 goto err1;
61
Felipe Balbi4525bee2014-04-16 15:20:44 -050062 pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO);
Felipe Balbid720f052012-07-19 14:01:10 +030063 if (!pdev) {
64 ret = -ENOMEM;
65 goto err1;
66 }
67
68 exynos->usb3_phy = pdev;
69 pdata.type = USB_PHY_TYPE_USB3;
70
71 ret = platform_device_add_data(exynos->usb3_phy, &pdata, sizeof(pdata));
72 if (ret)
73 goto err2;
74
75 ret = platform_device_add(exynos->usb2_phy);
76 if (ret)
77 goto err2;
78
79 ret = platform_device_add(exynos->usb3_phy);
80 if (ret)
81 goto err3;
82
83 return 0;
84
85err3:
86 platform_device_del(exynos->usb2_phy);
87
88err2:
89 platform_device_put(exynos->usb3_phy);
90
91err1:
92 platform_device_put(exynos->usb2_phy);
93
94 return ret;
95}
96
Vivek Gautamadcf20d2013-03-14 18:09:49 +053097static int dwc3_exynos_remove_child(struct device *dev, void *unused)
98{
99 struct platform_device *pdev = to_platform_device(dev);
100
101 platform_device_unregister(pdev);
102
103 return 0;
104}
105
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500106static int dwc3_exynos_probe(struct platform_device *pdev)
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900107{
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900108 struct dwc3_exynos *exynos;
109 struct clk *clk;
Jingoo Han20b97dc2012-11-13 11:20:49 +0900110 struct device *dev = &pdev->dev;
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530111 struct device_node *node = dev->of_node;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900112
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300113 int ret;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900114
Jingoo Han20b97dc2012-11-13 11:20:49 +0900115 exynos = devm_kzalloc(dev, sizeof(*exynos), GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900116 if (!exynos)
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300117 return -ENOMEM;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900118
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530119 /*
120 * Right now device-tree probed devices don't get dma_mask set.
121 * Since shared usb code relies on it, set it here for now.
122 * Once we move to full device tree support this will vanish off.
123 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100124 ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100125 if (ret)
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300126 return ret;
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530127
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900128 platform_set_drvdata(pdev, exynos);
129
Felipe Balbid720f052012-07-19 14:01:10 +0300130 ret = dwc3_exynos_register_phys(exynos);
131 if (ret) {
Jingoo Han20b97dc2012-11-13 11:20:49 +0900132 dev_err(dev, "couldn't register PHYs\n");
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300133 return ret;
Jingoo Han20b97dc2012-11-13 11:20:49 +0900134 }
135
136 clk = devm_clk_get(dev, "usbdrd30");
137 if (IS_ERR(clk)) {
138 dev_err(dev, "couldn't get clock\n");
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300139 return -EINVAL;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900140 }
141
Jingoo Han20b97dc2012-11-13 11:20:49 +0900142 exynos->dev = dev;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900143 exynos->clk = clk;
144
Vivek Gautamddb51472013-03-14 16:14:58 +0530145 clk_prepare_enable(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900146
Vivek Gautambd8ce542014-04-21 17:46:44 +0530147 exynos->vdd33 = devm_regulator_get(dev, "vdd33");
148 if (IS_ERR(exynos->vdd33)) {
149 ret = PTR_ERR(exynos->vdd33);
150 goto err2;
151 }
152 ret = regulator_enable(exynos->vdd33);
153 if (ret) {
154 dev_err(dev, "Failed to enable VDD33 supply\n");
155 goto err2;
156 }
157
158 exynos->vdd10 = devm_regulator_get(dev, "vdd10");
159 if (IS_ERR(exynos->vdd10)) {
160 ret = PTR_ERR(exynos->vdd10);
161 goto err3;
162 }
163 ret = regulator_enable(exynos->vdd10);
164 if (ret) {
165 dev_err(dev, "Failed to enable VDD10 supply\n");
166 goto err3;
167 }
168
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530169 if (node) {
170 ret = of_platform_populate(node, NULL, NULL, dev);
171 if (ret) {
172 dev_err(dev, "failed to add dwc3 core\n");
Vivek Gautambd8ce542014-04-21 17:46:44 +0530173 goto err4;
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530174 }
175 } else {
176 dev_err(dev, "no device node, failed to add dwc3 core\n");
177 ret = -ENODEV;
Vivek Gautambd8ce542014-04-21 17:46:44 +0530178 goto err4;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900179 }
180
181 return 0;
182
Vivek Gautambd8ce542014-04-21 17:46:44 +0530183err4:
184 regulator_disable(exynos->vdd10);
185err3:
186 regulator_disable(exynos->vdd33);
Jingoo Han20b97dc2012-11-13 11:20:49 +0900187err2:
Vivek Gautamddb51472013-03-14 16:14:58 +0530188 clk_disable_unprepare(clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900189 return ret;
190}
191
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500192static int dwc3_exynos_remove(struct platform_device *pdev)
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900193{
194 struct dwc3_exynos *exynos = platform_get_drvdata(pdev);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900195
Peter Chen022d0542013-05-24 14:30:16 +0800196 device_for_each_child(&pdev->dev, NULL, dwc3_exynos_remove_child);
Felipe Balbid720f052012-07-19 14:01:10 +0300197 platform_device_unregister(exynos->usb2_phy);
198 platform_device_unregister(exynos->usb3_phy);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900199
Vivek Gautamddb51472013-03-14 16:14:58 +0530200 clk_disable_unprepare(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900201
Vivek Gautambd8ce542014-04-21 17:46:44 +0530202 regulator_disable(exynos->vdd33);
203 regulator_disable(exynos->vdd10);
204
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900205 return 0;
206}
207
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530208#ifdef CONFIG_OF
209static const struct of_device_id exynos_dwc3_match[] = {
Vivek Gautamfe29db82013-01-24 19:15:30 +0530210 { .compatible = "samsung,exynos5250-dwusb3" },
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530211 {},
212};
213MODULE_DEVICE_TABLE(of, exynos_dwc3_match);
214#endif
215
Jingoo Han19fda7c2013-03-26 01:52:48 +0000216#ifdef CONFIG_PM_SLEEP
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530217static int dwc3_exynos_suspend(struct device *dev)
218{
219 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
220
221 clk_disable(exynos->clk);
222
Vivek Gautambd8ce542014-04-21 17:46:44 +0530223 regulator_disable(exynos->vdd33);
224 regulator_disable(exynos->vdd10);
225
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530226 return 0;
227}
228
229static int dwc3_exynos_resume(struct device *dev)
230{
231 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
Vivek Gautambd8ce542014-04-21 17:46:44 +0530232 int ret;
233
234 ret = regulator_enable(exynos->vdd33);
235 if (ret) {
236 dev_err(dev, "Failed to enable VDD33 supply\n");
237 return ret;
238 }
239 ret = regulator_enable(exynos->vdd10);
240 if (ret) {
241 dev_err(dev, "Failed to enable VDD10 supply\n");
242 return ret;
243 }
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530244
245 clk_enable(exynos->clk);
246
247 /* runtime set active to reflect active state. */
248 pm_runtime_disable(dev);
249 pm_runtime_set_active(dev);
250 pm_runtime_enable(dev);
251
252 return 0;
253}
254
255static const struct dev_pm_ops dwc3_exynos_dev_pm_ops = {
256 SET_SYSTEM_SLEEP_PM_OPS(dwc3_exynos_suspend, dwc3_exynos_resume)
257};
258
259#define DEV_PM_OPS (&dwc3_exynos_dev_pm_ops)
260#else
261#define DEV_PM_OPS NULL
Jingoo Han19fda7c2013-03-26 01:52:48 +0000262#endif /* CONFIG_PM_SLEEP */
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530263
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900264static struct platform_driver dwc3_exynos_driver = {
265 .probe = dwc3_exynos_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500266 .remove = dwc3_exynos_remove,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900267 .driver = {
268 .name = "exynos-dwc3",
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530269 .of_match_table = of_match_ptr(exynos_dwc3_match),
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530270 .pm = DEV_PM_OPS,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900271 },
272};
273
274module_platform_driver(dwc3_exynos_driver);
275
276MODULE_ALIAS("platform:exynos-dwc3");
277MODULE_AUTHOR("Anton Tikhomirov <av.tikhomirov@samsung.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +0300278MODULE_LICENSE("GPL v2");
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900279MODULE_DESCRIPTION("DesignWare USB3 EXYNOS Glue Layer");