blob: 2f1fb7e7aa548f831fb9cfa63d24513c292d15b4 [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/dma-mapping.h>
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090024#include <linux/clk.h>
Felipe Balbid720f052012-07-19 14:01:10 +030025#include <linux/usb/otg.h>
Felipe Balbid7078df2014-04-16 15:28:32 -050026#include <linux/usb/usb_phy_generic.h>
Vivek Gautamaccefdd2012-11-03 18:00:27 +053027#include <linux/of.h>
Vivek Gautamadcf20d2013-03-14 18:09:49 +053028#include <linux/of_platform.h>
Vivek Gautambd8ce542014-04-21 17:46:44 +053029#include <linux/regulator/consumer.h>
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090030
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090031struct dwc3_exynos {
Felipe Balbid720f052012-07-19 14:01:10 +030032 struct platform_device *usb2_phy;
33 struct platform_device *usb3_phy;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090034 struct device *dev;
35
36 struct clk *clk;
Vivek Gautam72d996f2014-11-21 19:05:46 +053037 struct clk *susp_clk;
Vivek Gautamed692a92014-11-21 19:05:47 +053038 struct clk *axius_clk;
Vivek Gautam72d996f2014-11-21 19:05:46 +053039
Vivek Gautambd8ce542014-04-21 17:46:44 +053040 struct regulator *vdd33;
41 struct regulator *vdd10;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090042};
43
Bill Pemberton41ac7b32012-11-19 13:21:48 -050044static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos)
Felipe Balbid720f052012-07-19 14:01:10 +030045{
Felipe Balbi4525bee2014-04-16 15:20:44 -050046 struct usb_phy_generic_platform_data pdata;
Felipe Balbid720f052012-07-19 14:01:10 +030047 struct platform_device *pdev;
48 int ret;
49
50 memset(&pdata, 0x00, sizeof(pdata));
51
Felipe Balbi4525bee2014-04-16 15:20:44 -050052 pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO);
Felipe Balbid720f052012-07-19 14:01:10 +030053 if (!pdev)
54 return -ENOMEM;
55
56 exynos->usb2_phy = pdev;
57 pdata.type = USB_PHY_TYPE_USB2;
Heikki Krogerus13518672013-12-18 16:41:25 +020058 pdata.gpio_reset = -1;
Felipe Balbid720f052012-07-19 14:01:10 +030059
60 ret = platform_device_add_data(exynos->usb2_phy, &pdata, sizeof(pdata));
61 if (ret)
62 goto err1;
63
Felipe Balbi4525bee2014-04-16 15:20:44 -050064 pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO);
Felipe Balbid720f052012-07-19 14:01:10 +030065 if (!pdev) {
66 ret = -ENOMEM;
67 goto err1;
68 }
69
70 exynos->usb3_phy = pdev;
71 pdata.type = USB_PHY_TYPE_USB3;
72
73 ret = platform_device_add_data(exynos->usb3_phy, &pdata, sizeof(pdata));
74 if (ret)
75 goto err2;
76
77 ret = platform_device_add(exynos->usb2_phy);
78 if (ret)
79 goto err2;
80
81 ret = platform_device_add(exynos->usb3_phy);
82 if (ret)
83 goto err3;
84
85 return 0;
86
87err3:
88 platform_device_del(exynos->usb2_phy);
89
90err2:
91 platform_device_put(exynos->usb3_phy);
92
93err1:
94 platform_device_put(exynos->usb2_phy);
95
96 return ret;
97}
98
Vivek Gautamadcf20d2013-03-14 18:09:49 +053099static int dwc3_exynos_remove_child(struct device *dev, void *unused)
100{
101 struct platform_device *pdev = to_platform_device(dev);
102
103 platform_device_unregister(pdev);
104
105 return 0;
106}
107
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500108static int dwc3_exynos_probe(struct platform_device *pdev)
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900109{
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900110 struct dwc3_exynos *exynos;
Jingoo Han20b97dc2012-11-13 11:20:49 +0900111 struct device *dev = &pdev->dev;
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530112 struct device_node *node = dev->of_node;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900113
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300114 int ret;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900115
Jingoo Han20b97dc2012-11-13 11:20:49 +0900116 exynos = devm_kzalloc(dev, sizeof(*exynos), GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900117 if (!exynos)
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300118 return -ENOMEM;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900119
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530120 /*
121 * Right now device-tree probed devices don't get dma_mask set.
122 * Since shared usb code relies on it, set it here for now.
123 * Once we move to full device tree support this will vanish off.
124 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100125 ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100126 if (ret)
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300127 return ret;
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530128
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900129 platform_set_drvdata(pdev, exynos);
130
Vivek Gautamc1a3aca2014-11-21 19:05:45 +0530131 exynos->dev = dev;
132
133 exynos->clk = devm_clk_get(dev, "usbdrd30");
134 if (IS_ERR(exynos->clk)) {
Jingoo Han20b97dc2012-11-13 11:20:49 +0900135 dev_err(dev, "couldn't get clock\n");
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300136 return -EINVAL;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900137 }
Vivek Gautamddb51472013-03-14 16:14:58 +0530138 clk_prepare_enable(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900139
Vivek Gautam72d996f2014-11-21 19:05:46 +0530140 exynos->susp_clk = devm_clk_get(dev, "usbdrd30_susp_clk");
141 if (IS_ERR(exynos->susp_clk)) {
Felipe Balbi42f69a02015-06-30 12:47:45 -0500142 dev_info(dev, "no suspend clk specified\n");
Vivek Gautam72d996f2014-11-21 19:05:46 +0530143 exynos->susp_clk = NULL;
144 }
145 clk_prepare_enable(exynos->susp_clk);
146
Vivek Gautamed692a92014-11-21 19:05:47 +0530147 if (of_device_is_compatible(node, "samsung,exynos7-dwusb3")) {
148 exynos->axius_clk = devm_clk_get(dev, "usbdrd30_axius_clk");
149 if (IS_ERR(exynos->axius_clk)) {
150 dev_err(dev, "no AXI UpScaler clk specified\n");
151 return -ENODEV;
152 }
153 clk_prepare_enable(exynos->axius_clk);
154 } else {
155 exynos->axius_clk = NULL;
156 }
157
Vivek Gautambd8ce542014-04-21 17:46:44 +0530158 exynos->vdd33 = devm_regulator_get(dev, "vdd33");
159 if (IS_ERR(exynos->vdd33)) {
160 ret = PTR_ERR(exynos->vdd33);
161 goto err2;
162 }
163 ret = regulator_enable(exynos->vdd33);
164 if (ret) {
165 dev_err(dev, "Failed to enable VDD33 supply\n");
166 goto err2;
167 }
168
169 exynos->vdd10 = devm_regulator_get(dev, "vdd10");
170 if (IS_ERR(exynos->vdd10)) {
171 ret = PTR_ERR(exynos->vdd10);
172 goto err3;
173 }
174 ret = regulator_enable(exynos->vdd10);
175 if (ret) {
176 dev_err(dev, "Failed to enable VDD10 supply\n");
177 goto err3;
178 }
179
Steinar H. Gunderson4879efb2016-05-24 20:13:15 +0200180 ret = dwc3_exynos_register_phys(exynos);
181 if (ret) {
182 dev_err(dev, "couldn't register PHYs\n");
183 goto err4;
184 }
185
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530186 if (node) {
187 ret = of_platform_populate(node, NULL, NULL, dev);
188 if (ret) {
189 dev_err(dev, "failed to add dwc3 core\n");
Steinar H. Gunderson4879efb2016-05-24 20:13:15 +0200190 goto err5;
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530191 }
192 } else {
193 dev_err(dev, "no device node, failed to add dwc3 core\n");
194 ret = -ENODEV;
Steinar H. Gunderson4879efb2016-05-24 20:13:15 +0200195 goto err5;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900196 }
197
198 return 0;
199
Steinar H. Gunderson4879efb2016-05-24 20:13:15 +0200200err5:
201 platform_device_unregister(exynos->usb2_phy);
202 platform_device_unregister(exynos->usb3_phy);
Vivek Gautambd8ce542014-04-21 17:46:44 +0530203err4:
204 regulator_disable(exynos->vdd10);
205err3:
206 regulator_disable(exynos->vdd33);
Jingoo Han20b97dc2012-11-13 11:20:49 +0900207err2:
Vivek Gautamed692a92014-11-21 19:05:47 +0530208 clk_disable_unprepare(exynos->axius_clk);
Vivek Gautam72d996f2014-11-21 19:05:46 +0530209 clk_disable_unprepare(exynos->susp_clk);
Vivek Gautamc1a3aca2014-11-21 19:05:45 +0530210 clk_disable_unprepare(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900211 return ret;
212}
213
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500214static int dwc3_exynos_remove(struct platform_device *pdev)
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900215{
216 struct dwc3_exynos *exynos = platform_get_drvdata(pdev);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900217
Peter Chen022d0542013-05-24 14:30:16 +0800218 device_for_each_child(&pdev->dev, NULL, dwc3_exynos_remove_child);
Felipe Balbid720f052012-07-19 14:01:10 +0300219 platform_device_unregister(exynos->usb2_phy);
220 platform_device_unregister(exynos->usb3_phy);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900221
Vivek Gautamed692a92014-11-21 19:05:47 +0530222 clk_disable_unprepare(exynos->axius_clk);
Vivek Gautam72d996f2014-11-21 19:05:46 +0530223 clk_disable_unprepare(exynos->susp_clk);
Vivek Gautamddb51472013-03-14 16:14:58 +0530224 clk_disable_unprepare(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900225
Vivek Gautambd8ce542014-04-21 17:46:44 +0530226 regulator_disable(exynos->vdd33);
227 regulator_disable(exynos->vdd10);
228
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900229 return 0;
230}
231
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530232static const struct of_device_id exynos_dwc3_match[] = {
Vivek Gautamfe29db82013-01-24 19:15:30 +0530233 { .compatible = "samsung,exynos5250-dwusb3" },
Vivek Gautamed692a92014-11-21 19:05:47 +0530234 { .compatible = "samsung,exynos7-dwusb3" },
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530235 {},
236};
237MODULE_DEVICE_TABLE(of, exynos_dwc3_match);
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530238
Jingoo Han19fda7c2013-03-26 01:52:48 +0000239#ifdef CONFIG_PM_SLEEP
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530240static int dwc3_exynos_suspend(struct device *dev)
241{
242 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
243
Vivek Gautamed692a92014-11-21 19:05:47 +0530244 clk_disable(exynos->axius_clk);
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530245 clk_disable(exynos->clk);
246
Vivek Gautambd8ce542014-04-21 17:46:44 +0530247 regulator_disable(exynos->vdd33);
248 regulator_disable(exynos->vdd10);
249
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530250 return 0;
251}
252
253static int dwc3_exynos_resume(struct device *dev)
254{
255 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
Vivek Gautambd8ce542014-04-21 17:46:44 +0530256 int ret;
257
258 ret = regulator_enable(exynos->vdd33);
259 if (ret) {
260 dev_err(dev, "Failed to enable VDD33 supply\n");
261 return ret;
262 }
263 ret = regulator_enable(exynos->vdd10);
264 if (ret) {
265 dev_err(dev, "Failed to enable VDD10 supply\n");
266 return ret;
267 }
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530268
269 clk_enable(exynos->clk);
Vivek Gautamed692a92014-11-21 19:05:47 +0530270 clk_enable(exynos->axius_clk);
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530271
272 /* runtime set active to reflect active state. */
273 pm_runtime_disable(dev);
274 pm_runtime_set_active(dev);
275 pm_runtime_enable(dev);
276
277 return 0;
278}
279
280static const struct dev_pm_ops dwc3_exynos_dev_pm_ops = {
281 SET_SYSTEM_SLEEP_PM_OPS(dwc3_exynos_suspend, dwc3_exynos_resume)
282};
283
284#define DEV_PM_OPS (&dwc3_exynos_dev_pm_ops)
285#else
286#define DEV_PM_OPS NULL
Jingoo Han19fda7c2013-03-26 01:52:48 +0000287#endif /* CONFIG_PM_SLEEP */
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530288
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900289static struct platform_driver dwc3_exynos_driver = {
290 .probe = dwc3_exynos_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500291 .remove = dwc3_exynos_remove,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900292 .driver = {
293 .name = "exynos-dwc3",
Jingoo Hanb4c9f572014-11-04 11:01:47 +0900294 .of_match_table = exynos_dwc3_match,
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530295 .pm = DEV_PM_OPS,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900296 },
297};
298
299module_platform_driver(dwc3_exynos_driver);
300
301MODULE_ALIAS("platform:exynos-dwc3");
302MODULE_AUTHOR("Anton Tikhomirov <av.tikhomirov@samsung.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +0300303MODULE_LICENSE("GPL v2");
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900304MODULE_DESCRIPTION("DesignWare USB3 EXYNOS Glue Layer");