blob: 14f85a08a4cfe250f7d6630738b9a953f44f695e [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 Gautambd8ce542014-04-21 17:46:44 +053037 struct regulator *vdd33;
38 struct regulator *vdd10;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +090039};
40
Bill Pemberton41ac7b32012-11-19 13:21:48 -050041static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos)
Felipe Balbid720f052012-07-19 14:01:10 +030042{
Felipe Balbi4525bee2014-04-16 15:20:44 -050043 struct usb_phy_generic_platform_data pdata;
Felipe Balbid720f052012-07-19 14:01:10 +030044 struct platform_device *pdev;
45 int ret;
46
47 memset(&pdata, 0x00, sizeof(pdata));
48
Felipe Balbi4525bee2014-04-16 15:20:44 -050049 pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO);
Felipe Balbid720f052012-07-19 14:01:10 +030050 if (!pdev)
51 return -ENOMEM;
52
53 exynos->usb2_phy = pdev;
54 pdata.type = USB_PHY_TYPE_USB2;
Heikki Krogerus13518672013-12-18 16:41:25 +020055 pdata.gpio_reset = -1;
Felipe Balbid720f052012-07-19 14:01:10 +030056
57 ret = platform_device_add_data(exynos->usb2_phy, &pdata, sizeof(pdata));
58 if (ret)
59 goto err1;
60
Felipe Balbi4525bee2014-04-16 15:20:44 -050061 pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO);
Felipe Balbid720f052012-07-19 14:01:10 +030062 if (!pdev) {
63 ret = -ENOMEM;
64 goto err1;
65 }
66
67 exynos->usb3_phy = pdev;
68 pdata.type = USB_PHY_TYPE_USB3;
69
70 ret = platform_device_add_data(exynos->usb3_phy, &pdata, sizeof(pdata));
71 if (ret)
72 goto err2;
73
74 ret = platform_device_add(exynos->usb2_phy);
75 if (ret)
76 goto err2;
77
78 ret = platform_device_add(exynos->usb3_phy);
79 if (ret)
80 goto err3;
81
82 return 0;
83
84err3:
85 platform_device_del(exynos->usb2_phy);
86
87err2:
88 platform_device_put(exynos->usb3_phy);
89
90err1:
91 platform_device_put(exynos->usb2_phy);
92
93 return ret;
94}
95
Vivek Gautamadcf20d2013-03-14 18:09:49 +053096static int dwc3_exynos_remove_child(struct device *dev, void *unused)
97{
98 struct platform_device *pdev = to_platform_device(dev);
99
100 platform_device_unregister(pdev);
101
102 return 0;
103}
104
Bill Pemberton41ac7b32012-11-19 13:21:48 -0500105static int dwc3_exynos_probe(struct platform_device *pdev)
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900106{
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900107 struct dwc3_exynos *exynos;
Jingoo Han20b97dc2012-11-13 11:20:49 +0900108 struct device *dev = &pdev->dev;
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530109 struct device_node *node = dev->of_node;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900110
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300111 int ret;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900112
Jingoo Han20b97dc2012-11-13 11:20:49 +0900113 exynos = devm_kzalloc(dev, sizeof(*exynos), GFP_KERNEL);
Jingoo Han734d5a52014-07-17 12:45:11 +0900114 if (!exynos)
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300115 return -ENOMEM;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900116
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530117 /*
118 * Right now device-tree probed devices don't get dma_mask set.
119 * Since shared usb code relies on it, set it here for now.
120 * Once we move to full device tree support this will vanish off.
121 */
Russell Kinge1fd7342013-06-27 12:36:37 +0100122 ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32));
Russell King22d9d8e2013-06-10 16:28:49 +0100123 if (ret)
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300124 return ret;
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530125
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900126 platform_set_drvdata(pdev, exynos);
127
Felipe Balbid720f052012-07-19 14:01:10 +0300128 ret = dwc3_exynos_register_phys(exynos);
129 if (ret) {
Jingoo Han20b97dc2012-11-13 11:20:49 +0900130 dev_err(dev, "couldn't register PHYs\n");
Andy Shevchenkob09e99e2014-05-15 15:53:32 +0300131 return ret;
Jingoo Han20b97dc2012-11-13 11:20:49 +0900132 }
133
Vivek Gautamc1a3aca2014-11-21 19:05:45 +0530134 exynos->dev = dev;
135
136 exynos->clk = devm_clk_get(dev, "usbdrd30");
137 if (IS_ERR(exynos->clk)) {
Jingoo Han20b97dc2012-11-13 11:20:49 +0900138 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 }
Vivek Gautamddb51472013-03-14 16:14:58 +0530141 clk_prepare_enable(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900142
Vivek Gautambd8ce542014-04-21 17:46:44 +0530143 exynos->vdd33 = devm_regulator_get(dev, "vdd33");
144 if (IS_ERR(exynos->vdd33)) {
145 ret = PTR_ERR(exynos->vdd33);
146 goto err2;
147 }
148 ret = regulator_enable(exynos->vdd33);
149 if (ret) {
150 dev_err(dev, "Failed to enable VDD33 supply\n");
151 goto err2;
152 }
153
154 exynos->vdd10 = devm_regulator_get(dev, "vdd10");
155 if (IS_ERR(exynos->vdd10)) {
156 ret = PTR_ERR(exynos->vdd10);
157 goto err3;
158 }
159 ret = regulator_enable(exynos->vdd10);
160 if (ret) {
161 dev_err(dev, "Failed to enable VDD10 supply\n");
162 goto err3;
163 }
164
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530165 if (node) {
166 ret = of_platform_populate(node, NULL, NULL, dev);
167 if (ret) {
168 dev_err(dev, "failed to add dwc3 core\n");
Vivek Gautambd8ce542014-04-21 17:46:44 +0530169 goto err4;
Vivek Gautamadcf20d2013-03-14 18:09:49 +0530170 }
171 } else {
172 dev_err(dev, "no device node, failed to add dwc3 core\n");
173 ret = -ENODEV;
Vivek Gautambd8ce542014-04-21 17:46:44 +0530174 goto err4;
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900175 }
176
177 return 0;
178
Vivek Gautambd8ce542014-04-21 17:46:44 +0530179err4:
180 regulator_disable(exynos->vdd10);
181err3:
182 regulator_disable(exynos->vdd33);
Jingoo Han20b97dc2012-11-13 11:20:49 +0900183err2:
Vivek Gautamc1a3aca2014-11-21 19:05:45 +0530184 clk_disable_unprepare(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900185 return ret;
186}
187
Bill Pembertonfb4e98a2012-11-19 13:26:20 -0500188static int dwc3_exynos_remove(struct platform_device *pdev)
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900189{
190 struct dwc3_exynos *exynos = platform_get_drvdata(pdev);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900191
Peter Chen022d0542013-05-24 14:30:16 +0800192 device_for_each_child(&pdev->dev, NULL, dwc3_exynos_remove_child);
Felipe Balbid720f052012-07-19 14:01:10 +0300193 platform_device_unregister(exynos->usb2_phy);
194 platform_device_unregister(exynos->usb3_phy);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900195
Vivek Gautamddb51472013-03-14 16:14:58 +0530196 clk_disable_unprepare(exynos->clk);
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900197
Vivek Gautambd8ce542014-04-21 17:46:44 +0530198 regulator_disable(exynos->vdd33);
199 regulator_disable(exynos->vdd10);
200
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900201 return 0;
202}
203
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530204static const struct of_device_id exynos_dwc3_match[] = {
Vivek Gautamfe29db82013-01-24 19:15:30 +0530205 { .compatible = "samsung,exynos5250-dwusb3" },
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530206 {},
207};
208MODULE_DEVICE_TABLE(of, exynos_dwc3_match);
Vivek Gautamaccefdd2012-11-03 18:00:27 +0530209
Jingoo Han19fda7c2013-03-26 01:52:48 +0000210#ifdef CONFIG_PM_SLEEP
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530211static int dwc3_exynos_suspend(struct device *dev)
212{
213 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
214
215 clk_disable(exynos->clk);
216
Vivek Gautambd8ce542014-04-21 17:46:44 +0530217 regulator_disable(exynos->vdd33);
218 regulator_disable(exynos->vdd10);
219
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530220 return 0;
221}
222
223static int dwc3_exynos_resume(struct device *dev)
224{
225 struct dwc3_exynos *exynos = dev_get_drvdata(dev);
Vivek Gautambd8ce542014-04-21 17:46:44 +0530226 int ret;
227
228 ret = regulator_enable(exynos->vdd33);
229 if (ret) {
230 dev_err(dev, "Failed to enable VDD33 supply\n");
231 return ret;
232 }
233 ret = regulator_enable(exynos->vdd10);
234 if (ret) {
235 dev_err(dev, "Failed to enable VDD10 supply\n");
236 return ret;
237 }
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530238
239 clk_enable(exynos->clk);
240
241 /* runtime set active to reflect active state. */
242 pm_runtime_disable(dev);
243 pm_runtime_set_active(dev);
244 pm_runtime_enable(dev);
245
246 return 0;
247}
248
249static const struct dev_pm_ops dwc3_exynos_dev_pm_ops = {
250 SET_SYSTEM_SLEEP_PM_OPS(dwc3_exynos_suspend, dwc3_exynos_resume)
251};
252
253#define DEV_PM_OPS (&dwc3_exynos_dev_pm_ops)
254#else
255#define DEV_PM_OPS NULL
Jingoo Han19fda7c2013-03-26 01:52:48 +0000256#endif /* CONFIG_PM_SLEEP */
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530257
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900258static struct platform_driver dwc3_exynos_driver = {
259 .probe = dwc3_exynos_probe,
Bill Pemberton76904172012-11-19 13:21:08 -0500260 .remove = dwc3_exynos_remove,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900261 .driver = {
262 .name = "exynos-dwc3",
Jingoo Hanb4c9f572014-11-04 11:01:47 +0900263 .of_match_table = exynos_dwc3_match,
Vikas Sajjan0646caf2012-10-16 15:15:38 +0530264 .pm = DEV_PM_OPS,
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900265 },
266};
267
268module_platform_driver(dwc3_exynos_driver);
269
270MODULE_ALIAS("platform:exynos-dwc3");
271MODULE_AUTHOR("Anton Tikhomirov <av.tikhomirov@samsung.com>");
Felipe Balbi5945f782013-06-30 14:15:11 +0300272MODULE_LICENSE("GPL v2");
Anton Tikhomirovd28a9682012-02-15 17:04:56 +0900273MODULE_DESCRIPTION("DesignWare USB3 EXYNOS Glue Layer");