blob: f9fb8adb785b7eb35c158dd2e9ad8e5f577fe6d8 [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);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900116 if (!exynos) {
Jingoo Han20b97dc2012-11-13 11:20:49 +0900117 dev_err(dev, "not enough memory\n");
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300118 return -ENOMEM;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900119 }
120
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530121 /*
122 * Right now device-tree probed devices don't get dma_mask set.
123 * Since shared usb code relies on it, set it here for now.
124 * Once we move to full device tree support this will vanish off.
125 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100126 ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100127 if (ret)
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300128 return ret;
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530129
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900130 platform_set_drvdata(pdev, exynos);
131
Felipe Balbid720f052012-07-19 14:01:10 +0300132 ret = dwc3_exynos_register_phys(exynos);
133 if (ret) {
Jingoo Han20b97dc2012-11-13 11:20:49 +0900134 dev_err(dev, "couldn't register PHYs\n");
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300135 return ret;
Jingoo Han20b97dc2012-11-13 11:20:49 +0900136 }
137
138 clk = devm_clk_get(dev, "usbdrd30");
139 if (IS_ERR(clk)) {
140 dev_err(dev, "couldn't get clock\n");
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300141 return -EINVAL;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900142 }
143
Jingoo Han20b97dc2012-11-13 11:20:49 +0900144 exynos->dev = dev;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900145 exynos->clk = clk;
146
Vivek Gautamddb51472013-03-14 16:14:58 +0530147 clk_prepare_enable(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900148
Vivek Gautambd8ce542014-04-21 17:46:44 +0530149 exynos->vdd33 = devm_regulator_get(dev, "vdd33");
150 if (IS_ERR(exynos->vdd33)) {
151 ret = PTR_ERR(exynos->vdd33);
152 goto err2;
153 }
154 ret = regulator_enable(exynos->vdd33);
155 if (ret) {
156 dev_err(dev, "Failed to enable VDD33 supply\n");
157 goto err2;
158 }
159
160 exynos->vdd10 = devm_regulator_get(dev, "vdd10");
161 if (IS_ERR(exynos->vdd10)) {
162 ret = PTR_ERR(exynos->vdd10);
163 goto err3;
164 }
165 ret = regulator_enable(exynos->vdd10);
166 if (ret) {
167 dev_err(dev, "Failed to enable VDD10 supply\n");
168 goto err3;
169 }
170
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530171 if (node) {
172 ret = of_platform_populate(node, NULL, NULL, dev);
173 if (ret) {
174 dev_err(dev, "failed to add dwc3 core\n");
Vivek Gautambd8ce542014-04-21 17:46:44 +0530175 goto err4;
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530176 }
177 } else {
178 dev_err(dev, "no device node, failed to add dwc3 core\n");
179 ret = -ENODEV;
Vivek Gautambd8ce542014-04-21 17:46:44 +0530180 goto err4;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900181 }
182
183 return 0;
184
Vivek Gautambd8ce542014-04-21 17:46:44 +0530185err4:
186 regulator_disable(exynos->vdd10);
187err3:
188 regulator_disable(exynos->vdd33);
Jingoo Han20b97dc2012-11-13 11:20:49 +0900189err2:
Vivek Gautamddb51472013-03-14 16:14:58 +0530190 clk_disable_unprepare(clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900191 return ret;
192}
193
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500194static int dwc3_exynos_remove(struct platform_device *pdev)
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900195{
196 struct dwc3_exynos *exynos = platform_get_drvdata(pdev);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900197
Peter Chen022d0542013-05-24 14:30:16 +0800198 device_for_each_child(&pdev->dev, NULL, dwc3_exynos_remove_child);
Felipe Balbid720f052012-07-19 14:01:10 +0300199 platform_device_unregister(exynos->usb2_phy);
200 platform_device_unregister(exynos->usb3_phy);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900201
Vivek Gautamddb51472013-03-14 16:14:58 +0530202 clk_disable_unprepare(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900203
Vivek Gautambd8ce542014-04-21 17:46:44 +0530204 regulator_disable(exynos->vdd33);
205 regulator_disable(exynos->vdd10);
206
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900207 return 0;
208}
209
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530210#ifdef CONFIG_OF
211static const struct of_device_id exynos_dwc3_match[] = {
Vivek Gautamfe29db82013-01-24 19:15:30 +0530212 { .compatible = "samsung,exynos5250-dwusb3" },
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530213 {},
214};
215MODULE_DEVICE_TABLE(of, exynos_dwc3_match);
216#endif
217
Jingoo Han19fda7c2013-03-26 01:52:48 +0000218#ifdef CONFIG_PM_SLEEP
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530219static int dwc3_exynos_suspend(struct device *dev)
220{
221 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
222
223 clk_disable(exynos->clk);
224
Vivek Gautambd8ce542014-04-21 17:46:44 +0530225 regulator_disable(exynos->vdd33);
226 regulator_disable(exynos->vdd10);
227
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530228 return 0;
229}
230
231static int dwc3_exynos_resume(struct device *dev)
232{
233 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
Vivek Gautambd8ce542014-04-21 17:46:44 +0530234 int ret;
235
236 ret = regulator_enable(exynos->vdd33);
237 if (ret) {
238 dev_err(dev, "Failed to enable VDD33 supply\n");
239 return ret;
240 }
241 ret = regulator_enable(exynos->vdd10);
242 if (ret) {
243 dev_err(dev, "Failed to enable VDD10 supply\n");
244 return ret;
245 }
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530246
247 clk_enable(exynos->clk);
248
249 /* runtime set active to reflect active state. */
250 pm_runtime_disable(dev);
251 pm_runtime_set_active(dev);
252 pm_runtime_enable(dev);
253
254 return 0;
255}
256
257static const struct dev_pm_ops dwc3_exynos_dev_pm_ops = {
258 SET_SYSTEM_SLEEP_PM_OPS(dwc3_exynos_suspend, dwc3_exynos_resume)
259};
260
261#define DEV_PM_OPS (&dwc3_exynos_dev_pm_ops)
262#else
263#define DEV_PM_OPS NULL
Jingoo Han19fda7c2013-03-26 01:52:48 +0000264#endif /* CONFIG_PM_SLEEP */
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530265
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900266static struct platform_driver dwc3_exynos_driver = {
267 .probe = dwc3_exynos_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500268 .remove = dwc3_exynos_remove,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900269 .driver = {
270 .name = "exynos-dwc3",
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530271 .of_match_table = of_match_ptr(exynos_dwc3_match),
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530272 .pm = DEV_PM_OPS,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900273 },
274};
275
276module_platform_driver(dwc3_exynos_driver);
277
278MODULE_ALIAS("platform:exynos-dwc3");
279MODULE_AUTHOR("Anton Tikhomirov <av.tikhomirov@samsung.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +0300280MODULE_LICENSE("GPL v2");
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900281MODULE_DESCRIPTION("DesignWare USB3 EXYNOS Glue Layer");