2 * dwc3-exynos.c - Samsung EXYNOS DWC3 Specific Glue layer
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
7 * Author: Anton Tikhomirov <av.tikhomirov@samsung.com>
9 * 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.
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.
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>
25 #include <linux/clk.h>
26 #include <linux/usb/otg.h>
27 #include <linux/usb/usb_phy_generic.h>
29 #include <linux/of_platform.h>
30 #include <linux/regulator/consumer.h>
33 struct platform_device
*usb2_phy
;
34 struct platform_device
*usb3_phy
;
38 struct regulator
*vdd33
;
39 struct regulator
*vdd10
;
42 static int dwc3_exynos_register_phys(struct dwc3_exynos
*exynos
)
44 struct usb_phy_generic_platform_data pdata
;
45 struct platform_device
*pdev
;
48 memset(&pdata
, 0x00, sizeof(pdata
));
50 pdev
= platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO
);
54 exynos
->usb2_phy
= pdev
;
55 pdata
.type
= USB_PHY_TYPE_USB2
;
56 pdata
.gpio_reset
= -1;
58 ret
= platform_device_add_data(exynos
->usb2_phy
, &pdata
, sizeof(pdata
));
62 pdev
= platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO
);
68 exynos
->usb3_phy
= pdev
;
69 pdata
.type
= USB_PHY_TYPE_USB3
;
71 ret
= platform_device_add_data(exynos
->usb3_phy
, &pdata
, sizeof(pdata
));
75 ret
= platform_device_add(exynos
->usb2_phy
);
79 ret
= platform_device_add(exynos
->usb3_phy
);
86 platform_device_del(exynos
->usb2_phy
);
89 platform_device_put(exynos
->usb3_phy
);
92 platform_device_put(exynos
->usb2_phy
);
97 static int dwc3_exynos_remove_child(struct device
*dev
, void *unused
)
99 struct platform_device
*pdev
= to_platform_device(dev
);
101 platform_device_unregister(pdev
);
106 static int dwc3_exynos_probe(struct platform_device
*pdev
)
108 struct dwc3_exynos
*exynos
;
110 struct device
*dev
= &pdev
->dev
;
111 struct device_node
*node
= dev
->of_node
;
115 exynos
= devm_kzalloc(dev
, sizeof(*exynos
), GFP_KERNEL
);
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.
124 ret
= dma_coerce_mask_and_coherent(dev
, DMA_BIT_MASK(32));
128 platform_set_drvdata(pdev
, exynos
);
130 ret
= dwc3_exynos_register_phys(exynos
);
132 dev_err(dev
, "couldn't register PHYs\n");
136 clk
= devm_clk_get(dev
, "usbdrd30");
138 dev_err(dev
, "couldn't get clock\n");
145 clk_prepare_enable(exynos
->clk
);
147 exynos
->vdd33
= devm_regulator_get(dev
, "vdd33");
148 if (IS_ERR(exynos
->vdd33
)) {
149 ret
= PTR_ERR(exynos
->vdd33
);
152 ret
= regulator_enable(exynos
->vdd33
);
154 dev_err(dev
, "Failed to enable VDD33 supply\n");
158 exynos
->vdd10
= devm_regulator_get(dev
, "vdd10");
159 if (IS_ERR(exynos
->vdd10
)) {
160 ret
= PTR_ERR(exynos
->vdd10
);
163 ret
= regulator_enable(exynos
->vdd10
);
165 dev_err(dev
, "Failed to enable VDD10 supply\n");
170 ret
= of_platform_populate(node
, NULL
, NULL
, dev
);
172 dev_err(dev
, "failed to add dwc3 core\n");
176 dev_err(dev
, "no device node, failed to add dwc3 core\n");
184 regulator_disable(exynos
->vdd10
);
186 regulator_disable(exynos
->vdd33
);
188 clk_disable_unprepare(clk
);
192 static int dwc3_exynos_remove(struct platform_device
*pdev
)
194 struct dwc3_exynos
*exynos
= platform_get_drvdata(pdev
);
196 device_for_each_child(&pdev
->dev
, NULL
, dwc3_exynos_remove_child
);
197 platform_device_unregister(exynos
->usb2_phy
);
198 platform_device_unregister(exynos
->usb3_phy
);
200 clk_disable_unprepare(exynos
->clk
);
202 regulator_disable(exynos
->vdd33
);
203 regulator_disable(exynos
->vdd10
);
209 static const struct of_device_id exynos_dwc3_match
[] = {
210 { .compatible
= "samsung,exynos5250-dwusb3" },
213 MODULE_DEVICE_TABLE(of
, exynos_dwc3_match
);
216 #ifdef CONFIG_PM_SLEEP
217 static int dwc3_exynos_suspend(struct device
*dev
)
219 struct dwc3_exynos
*exynos
= dev_get_drvdata(dev
);
221 clk_disable(exynos
->clk
);
223 regulator_disable(exynos
->vdd33
);
224 regulator_disable(exynos
->vdd10
);
229 static int dwc3_exynos_resume(struct device
*dev
)
231 struct dwc3_exynos
*exynos
= dev_get_drvdata(dev
);
234 ret
= regulator_enable(exynos
->vdd33
);
236 dev_err(dev
, "Failed to enable VDD33 supply\n");
239 ret
= regulator_enable(exynos
->vdd10
);
241 dev_err(dev
, "Failed to enable VDD10 supply\n");
245 clk_enable(exynos
->clk
);
247 /* runtime set active to reflect active state. */
248 pm_runtime_disable(dev
);
249 pm_runtime_set_active(dev
);
250 pm_runtime_enable(dev
);
255 static const struct dev_pm_ops dwc3_exynos_dev_pm_ops
= {
256 SET_SYSTEM_SLEEP_PM_OPS(dwc3_exynos_suspend
, dwc3_exynos_resume
)
259 #define DEV_PM_OPS (&dwc3_exynos_dev_pm_ops)
261 #define DEV_PM_OPS NULL
262 #endif /* CONFIG_PM_SLEEP */
264 static struct platform_driver dwc3_exynos_driver
= {
265 .probe
= dwc3_exynos_probe
,
266 .remove
= dwc3_exynos_remove
,
268 .name
= "exynos-dwc3",
269 .of_match_table
= of_match_ptr(exynos_dwc3_match
),
274 module_platform_driver(dwc3_exynos_driver
);
276 MODULE_ALIAS("platform:exynos-dwc3");
277 MODULE_AUTHOR("Anton Tikhomirov <av.tikhomirov@samsung.com>");
278 MODULE_LICENSE("GPL v2");
279 MODULE_DESCRIPTION("DesignWare USB3 EXYNOS Glue Layer");