blob: 1515d45ebcec0dd412b52550930053ab9a9a2fe9 [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>
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090023#include <linux/clk.h>
Felipe Balbid720f052012-07-19 14:01:10 +030024#include <linux/usb/otg.h>
Felipe Balbid7078df2014-04-16 15:28:32 -050025#include <linux/usb/usb_phy_generic.h>
Vivek Gautamaccefdd2012-11-03 18:00:27 +053026#include <linux/of.h>
Vivek Gautamadcf20d2013-03-14 18:09:49 +053027#include <linux/of_platform.h>
Vivek Gautambd8ce542014-04-21 17:46:44 +053028#include <linux/regulator/consumer.h>
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090029
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090030struct dwc3_exynos {
Felipe Balbid720f052012-07-19 14:01:10 +030031 struct platform_device *usb2_phy;
32 struct platform_device *usb3_phy;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090033 struct device *dev;
34
35 struct clk *clk;
Vivek Gautam72d996f2014-11-21 19:05:46 +053036 struct clk *susp_clk;
Vivek Gautamed692a92014-11-21 19:05:47 +053037 struct clk *axius_clk;
Vivek Gautam72d996f2014-11-21 19:05:46 +053038
Vivek Gautambd8ce542014-04-21 17:46:44 +053039 struct regulator *vdd33;
40 struct regulator *vdd10;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090041};
42
Bill Pemberton41ac7b32012-11-19 13:21:48 -050043static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos)
Felipe Balbid720f052012-07-19 14:01:10 +030044{
Felipe Balbi4525bee2014-04-16 15:20:44 -050045 struct usb_phy_generic_platform_data pdata;
Felipe Balbid720f052012-07-19 14:01:10 +030046 struct platform_device *pdev;
47 int ret;
48
49 memset(&pdata, 0x00, sizeof(pdata));
50
Felipe Balbi4525bee2014-04-16 15:20:44 -050051 pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO);
Felipe Balbid720f052012-07-19 14:01:10 +030052 if (!pdev)
53 return -ENOMEM;
54
55 exynos->usb2_phy = pdev;
56 pdata.type = USB_PHY_TYPE_USB2;
Heikki Krogerus13518672013-12-18 16:41:25 +020057 pdata.gpio_reset = -1;
Felipe Balbid720f052012-07-19 14:01:10 +030058
59 ret = platform_device_add_data(exynos->usb2_phy, &pdata, sizeof(pdata));
60 if (ret)
61 goto err1;
62
Felipe Balbi4525bee2014-04-16 15:20:44 -050063 pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO);
Felipe Balbid720f052012-07-19 14:01:10 +030064 if (!pdev) {
65 ret = -ENOMEM;
66 goto err1;
67 }
68
69 exynos->usb3_phy = pdev;
70 pdata.type = USB_PHY_TYPE_USB3;
71
72 ret = platform_device_add_data(exynos->usb3_phy, &pdata, sizeof(pdata));
73 if (ret)
74 goto err2;
75
76 ret = platform_device_add(exynos->usb2_phy);
77 if (ret)
78 goto err2;
79
80 ret = platform_device_add(exynos->usb3_phy);
81 if (ret)
82 goto err3;
83
84 return 0;
85
86err3:
87 platform_device_del(exynos->usb2_phy);
88
89err2:
90 platform_device_put(exynos->usb3_phy);
91
92err1:
93 platform_device_put(exynos->usb2_phy);
94
95 return ret;
96}
97
Vivek Gautamadcf20d2013-03-14 18:09:49 +053098static int dwc3_exynos_remove_child(struct device *dev, void *unused)
99{
100 struct platform_device *pdev = to_platform_device(dev);
101
102 platform_device_unregister(pdev);
103
104 return 0;
105}
106
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500107static int dwc3_exynos_probe(struct platform_device *pdev)
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900108{
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900109 struct dwc3_exynos *exynos;
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
119 platform_set_drvdata(pdev, exynos);
120
Vivek Gautamc1a3aca2014-11-21 19:05:45 +0530121 exynos->dev = dev;
122
123 exynos->clk = devm_clk_get(dev, "usbdrd30");
124 if (IS_ERR(exynos->clk)) {
Jingoo Han20b97dc2012-11-13 11:20:49 +0900125 dev_err(dev, "couldn't get clock\n");
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300126 return -EINVAL;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900127 }
Vivek Gautamddb51472013-03-14 16:14:58 +0530128 clk_prepare_enable(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900129
Vivek Gautam72d996f2014-11-21 19:05:46 +0530130 exynos->susp_clk = devm_clk_get(dev, "usbdrd30_susp_clk");
Shuah Khan3e27b3f2017-01-10 14:20:59 -0700131 if (IS_ERR(exynos->susp_clk))
Vivek Gautam72d996f2014-11-21 19:05:46 +0530132 exynos->susp_clk = NULL;
Vivek Gautam72d996f2014-11-21 19:05:46 +0530133 clk_prepare_enable(exynos->susp_clk);
134
Vivek Gautamed692a92014-11-21 19:05:47 +0530135 if (of_device_is_compatible(node, "samsung,exynos7-dwusb3")) {
136 exynos->axius_clk = devm_clk_get(dev, "usbdrd30_axius_clk");
137 if (IS_ERR(exynos->axius_clk)) {
138 dev_err(dev, "no AXI UpScaler clk specified\n");
Shuah Khan8ae584d2017-01-10 16:05:28 -0700139 ret = -ENODEV;
140 goto axius_clk_err;
Vivek Gautamed692a92014-11-21 19:05:47 +0530141 }
142 clk_prepare_enable(exynos->axius_clk);
143 } else {
144 exynos->axius_clk = NULL;
145 }
146
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
Steinar H. Gunderson4879efb2016-05-24 20:13:15 +0200169 ret = dwc3_exynos_register_phys(exynos);
170 if (ret) {
171 dev_err(dev, "couldn't register PHYs\n");
172 goto err4;
173 }
174
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530175 if (node) {
176 ret = of_platform_populate(node, NULL, NULL, dev);
177 if (ret) {
178 dev_err(dev, "failed to add dwc3 core\n");
Steinar H. Gunderson4879efb2016-05-24 20:13:15 +0200179 goto err5;
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530180 }
181 } else {
182 dev_err(dev, "no device node, failed to add dwc3 core\n");
183 ret = -ENODEV;
Steinar H. Gunderson4879efb2016-05-24 20:13:15 +0200184 goto err5;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900185 }
186
187 return 0;
188
Steinar H. Gunderson4879efb2016-05-24 20:13:15 +0200189err5:
190 platform_device_unregister(exynos->usb2_phy);
191 platform_device_unregister(exynos->usb3_phy);
Vivek Gautambd8ce542014-04-21 17:46:44 +0530192err4:
193 regulator_disable(exynos->vdd10);
194err3:
195 regulator_disable(exynos->vdd33);
Jingoo Han20b97dc2012-11-13 11:20:49 +0900196err2:
Vivek Gautamed692a92014-11-21 19:05:47 +0530197 clk_disable_unprepare(exynos->axius_clk);
Shuah Khan8ae584d2017-01-10 16:05:28 -0700198axius_clk_err:
Vivek Gautam72d996f2014-11-21 19:05:46 +0530199 clk_disable_unprepare(exynos->susp_clk);
Vivek Gautamc1a3aca2014-11-21 19:05:45 +0530200 clk_disable_unprepare(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900201 return ret;
202}
203
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500204static int dwc3_exynos_remove(struct platform_device *pdev)
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900205{
206 struct dwc3_exynos *exynos = platform_get_drvdata(pdev);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900207
Peter Chen022d0542013-05-24 14:30:16 +0800208 device_for_each_child(&pdev->dev, NULL, dwc3_exynos_remove_child);
Felipe Balbid720f052012-07-19 14:01:10 +0300209 platform_device_unregister(exynos->usb2_phy);
210 platform_device_unregister(exynos->usb3_phy);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900211
Vivek Gautamed692a92014-11-21 19:05:47 +0530212 clk_disable_unprepare(exynos->axius_clk);
Vivek Gautam72d996f2014-11-21 19:05:46 +0530213 clk_disable_unprepare(exynos->susp_clk);
Vivek Gautamddb51472013-03-14 16:14:58 +0530214 clk_disable_unprepare(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900215
Vivek Gautambd8ce542014-04-21 17:46:44 +0530216 regulator_disable(exynos->vdd33);
217 regulator_disable(exynos->vdd10);
218
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900219 return 0;
220}
221
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530222static const struct of_device_id exynos_dwc3_match[] = {
Vivek Gautamfe29db82013-01-24 19:15:30 +0530223 { .compatible = "samsung,exynos5250-dwusb3" },
Vivek Gautamed692a92014-11-21 19:05:47 +0530224 { .compatible = "samsung,exynos7-dwusb3" },
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530225 {},
226};
227MODULE_DEVICE_TABLE(of, exynos_dwc3_match);
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530228
Jingoo Han19fda7c2013-03-26 01:52:48 +0000229#ifdef CONFIG_PM_SLEEP
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530230static int dwc3_exynos_suspend(struct device *dev)
231{
232 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
233
Vivek Gautamed692a92014-11-21 19:05:47 +0530234 clk_disable(exynos->axius_clk);
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530235 clk_disable(exynos->clk);
236
Vivek Gautambd8ce542014-04-21 17:46:44 +0530237 regulator_disable(exynos->vdd33);
238 regulator_disable(exynos->vdd10);
239
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530240 return 0;
241}
242
243static int dwc3_exynos_resume(struct device *dev)
244{
245 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
Vivek Gautambd8ce542014-04-21 17:46:44 +0530246 int ret;
247
248 ret = regulator_enable(exynos->vdd33);
249 if (ret) {
250 dev_err(dev, "Failed to enable VDD33 supply\n");
251 return ret;
252 }
253 ret = regulator_enable(exynos->vdd10);
254 if (ret) {
255 dev_err(dev, "Failed to enable VDD10 supply\n");
256 return ret;
257 }
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530258
259 clk_enable(exynos->clk);
Vivek Gautamed692a92014-11-21 19:05:47 +0530260 clk_enable(exynos->axius_clk);
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530261
262 /* runtime set active to reflect active state. */
263 pm_runtime_disable(dev);
264 pm_runtime_set_active(dev);
265 pm_runtime_enable(dev);
266
267 return 0;
268}
269
270static const struct dev_pm_ops dwc3_exynos_dev_pm_ops = {
271 SET_SYSTEM_SLEEP_PM_OPS(dwc3_exynos_suspend, dwc3_exynos_resume)
272};
273
274#define DEV_PM_OPS (&dwc3_exynos_dev_pm_ops)
275#else
276#define DEV_PM_OPS NULL
Jingoo Han19fda7c2013-03-26 01:52:48 +0000277#endif /* CONFIG_PM_SLEEP */
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530278
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900279static struct platform_driver dwc3_exynos_driver = {
280 .probe = dwc3_exynos_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500281 .remove = dwc3_exynos_remove,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900282 .driver = {
283 .name = "exynos-dwc3",
Jingoo Hanb4c9f572014-11-04 11:01:47 +0900284 .of_match_table = exynos_dwc3_match,
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530285 .pm = DEV_PM_OPS,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900286 },
287};
288
289module_platform_driver(dwc3_exynos_driver);
290
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900291MODULE_AUTHOR("Anton Tikhomirov <av.tikhomirov@samsung.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +0300292MODULE_LICENSE("GPL v2");
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900293MODULE_DESCRIPTION("DesignWare USB3 EXYNOS Glue Layer");