Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 1 | /** |
| 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 Balbi | 5945f78 | 2013-06-30 14:15:11 +0300 | [diff] [blame] | 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. |
| 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 Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 17 | */ |
| 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 Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 25 | #include <linux/clk.h> |
Felipe Balbi | d720f05 | 2012-07-19 14:01:10 +0300 | [diff] [blame] | 26 | #include <linux/usb/otg.h> |
Felipe Balbi | d7078df | 2014-04-16 15:28:32 -0500 | [diff] [blame] | 27 | #include <linux/usb/usb_phy_generic.h> |
Vivek Gautam | accefdd | 2012-11-03 18:00:27 +0530 | [diff] [blame] | 28 | #include <linux/of.h> |
Vivek Gautam | adcf20d | 2013-03-14 18:09:49 +0530 | [diff] [blame] | 29 | #include <linux/of_platform.h> |
Vivek Gautam | bd8ce54 | 2014-04-21 17:46:44 +0530 | [diff] [blame] | 30 | #include <linux/regulator/consumer.h> |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 31 | |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 32 | struct dwc3_exynos { |
Felipe Balbi | d720f05 | 2012-07-19 14:01:10 +0300 | [diff] [blame] | 33 | struct platform_device *usb2_phy; |
| 34 | struct platform_device *usb3_phy; |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 35 | struct device *dev; |
| 36 | |
| 37 | struct clk *clk; |
Vivek Gautam | bd8ce54 | 2014-04-21 17:46:44 +0530 | [diff] [blame] | 38 | struct regulator *vdd33; |
| 39 | struct regulator *vdd10; |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 40 | }; |
| 41 | |
Bill Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 42 | static int dwc3_exynos_register_phys(struct dwc3_exynos *exynos) |
Felipe Balbi | d720f05 | 2012-07-19 14:01:10 +0300 | [diff] [blame] | 43 | { |
Felipe Balbi | 4525bee | 2014-04-16 15:20:44 -0500 | [diff] [blame] | 44 | struct usb_phy_generic_platform_data pdata; |
Felipe Balbi | d720f05 | 2012-07-19 14:01:10 +0300 | [diff] [blame] | 45 | struct platform_device *pdev; |
| 46 | int ret; |
| 47 | |
| 48 | memset(&pdata, 0x00, sizeof(pdata)); |
| 49 | |
Felipe Balbi | 4525bee | 2014-04-16 15:20:44 -0500 | [diff] [blame] | 50 | pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO); |
Felipe Balbi | d720f05 | 2012-07-19 14:01:10 +0300 | [diff] [blame] | 51 | if (!pdev) |
| 52 | return -ENOMEM; |
| 53 | |
| 54 | exynos->usb2_phy = pdev; |
| 55 | pdata.type = USB_PHY_TYPE_USB2; |
Heikki Krogerus | 1351867 | 2013-12-18 16:41:25 +0200 | [diff] [blame] | 56 | pdata.gpio_reset = -1; |
Felipe Balbi | d720f05 | 2012-07-19 14:01:10 +0300 | [diff] [blame] | 57 | |
| 58 | ret = platform_device_add_data(exynos->usb2_phy, &pdata, sizeof(pdata)); |
| 59 | if (ret) |
| 60 | goto err1; |
| 61 | |
Felipe Balbi | 4525bee | 2014-04-16 15:20:44 -0500 | [diff] [blame] | 62 | pdev = platform_device_alloc("usb_phy_generic", PLATFORM_DEVID_AUTO); |
Felipe Balbi | d720f05 | 2012-07-19 14:01:10 +0300 | [diff] [blame] | 63 | 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 | |
| 85 | err3: |
| 86 | platform_device_del(exynos->usb2_phy); |
| 87 | |
| 88 | err2: |
| 89 | platform_device_put(exynos->usb3_phy); |
| 90 | |
| 91 | err1: |
| 92 | platform_device_put(exynos->usb2_phy); |
| 93 | |
| 94 | return ret; |
| 95 | } |
| 96 | |
Vivek Gautam | adcf20d | 2013-03-14 18:09:49 +0530 | [diff] [blame] | 97 | static 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 Pemberton | 41ac7b3 | 2012-11-19 13:21:48 -0500 | [diff] [blame] | 106 | static int dwc3_exynos_probe(struct platform_device *pdev) |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 107 | { |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 108 | struct dwc3_exynos *exynos; |
| 109 | struct clk *clk; |
Jingoo Han | 20b97dc | 2012-11-13 11:20:49 +0900 | [diff] [blame] | 110 | struct device *dev = &pdev->dev; |
Vivek Gautam | adcf20d | 2013-03-14 18:09:49 +0530 | [diff] [blame] | 111 | struct device_node *node = dev->of_node; |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 112 | |
Andy Shevchenko | b09e99e | 2014-05-15 15:53:32 +0300 | [diff] [blame] | 113 | int ret; |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 114 | |
Jingoo Han | 20b97dc | 2012-11-13 11:20:49 +0900 | [diff] [blame] | 115 | exynos = devm_kzalloc(dev, sizeof(*exynos), GFP_KERNEL); |
Jingoo Han | 734d5a5 | 2014-07-17 12:45:11 +0900 | [diff] [blame^] | 116 | if (!exynos) |
Andy Shevchenko | b09e99e | 2014-05-15 15:53:32 +0300 | [diff] [blame] | 117 | return -ENOMEM; |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 118 | |
Vivek Gautam | accefdd | 2012-11-03 18:00:27 +0530 | [diff] [blame] | 119 | /* |
| 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. |
| 123 | */ |
Russell King | e1fd734 | 2013-06-27 12:36:37 +0100 | [diff] [blame] | 124 | ret = dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32)); |
Russell King | 22d9d8e | 2013-06-10 16:28:49 +0100 | [diff] [blame] | 125 | if (ret) |
Andy Shevchenko | b09e99e | 2014-05-15 15:53:32 +0300 | [diff] [blame] | 126 | return ret; |
Vivek Gautam | accefdd | 2012-11-03 18:00:27 +0530 | [diff] [blame] | 127 | |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 128 | platform_set_drvdata(pdev, exynos); |
| 129 | |
Felipe Balbi | d720f05 | 2012-07-19 14:01:10 +0300 | [diff] [blame] | 130 | ret = dwc3_exynos_register_phys(exynos); |
| 131 | if (ret) { |
Jingoo Han | 20b97dc | 2012-11-13 11:20:49 +0900 | [diff] [blame] | 132 | dev_err(dev, "couldn't register PHYs\n"); |
Andy Shevchenko | b09e99e | 2014-05-15 15:53:32 +0300 | [diff] [blame] | 133 | return ret; |
Jingoo Han | 20b97dc | 2012-11-13 11:20:49 +0900 | [diff] [blame] | 134 | } |
| 135 | |
| 136 | clk = devm_clk_get(dev, "usbdrd30"); |
| 137 | if (IS_ERR(clk)) { |
| 138 | dev_err(dev, "couldn't get clock\n"); |
Andy Shevchenko | b09e99e | 2014-05-15 15:53:32 +0300 | [diff] [blame] | 139 | return -EINVAL; |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 140 | } |
| 141 | |
Jingoo Han | 20b97dc | 2012-11-13 11:20:49 +0900 | [diff] [blame] | 142 | exynos->dev = dev; |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 143 | exynos->clk = clk; |
| 144 | |
Vivek Gautam | ddb5147 | 2013-03-14 16:14:58 +0530 | [diff] [blame] | 145 | clk_prepare_enable(exynos->clk); |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 146 | |
Vivek Gautam | bd8ce54 | 2014-04-21 17:46:44 +0530 | [diff] [blame] | 147 | 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 | |
Vivek Gautam | adcf20d | 2013-03-14 18:09:49 +0530 | [diff] [blame] | 169 | if (node) { |
| 170 | ret = of_platform_populate(node, NULL, NULL, dev); |
| 171 | if (ret) { |
| 172 | dev_err(dev, "failed to add dwc3 core\n"); |
Vivek Gautam | bd8ce54 | 2014-04-21 17:46:44 +0530 | [diff] [blame] | 173 | goto err4; |
Vivek Gautam | adcf20d | 2013-03-14 18:09:49 +0530 | [diff] [blame] | 174 | } |
| 175 | } else { |
| 176 | dev_err(dev, "no device node, failed to add dwc3 core\n"); |
| 177 | ret = -ENODEV; |
Vivek Gautam | bd8ce54 | 2014-04-21 17:46:44 +0530 | [diff] [blame] | 178 | goto err4; |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | return 0; |
| 182 | |
Vivek Gautam | bd8ce54 | 2014-04-21 17:46:44 +0530 | [diff] [blame] | 183 | err4: |
| 184 | regulator_disable(exynos->vdd10); |
| 185 | err3: |
| 186 | regulator_disable(exynos->vdd33); |
Jingoo Han | 20b97dc | 2012-11-13 11:20:49 +0900 | [diff] [blame] | 187 | err2: |
Vivek Gautam | ddb5147 | 2013-03-14 16:14:58 +0530 | [diff] [blame] | 188 | clk_disable_unprepare(clk); |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 189 | return ret; |
| 190 | } |
| 191 | |
Bill Pemberton | fb4e98a | 2012-11-19 13:26:20 -0500 | [diff] [blame] | 192 | static int dwc3_exynos_remove(struct platform_device *pdev) |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 193 | { |
| 194 | struct dwc3_exynos *exynos = platform_get_drvdata(pdev); |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 195 | |
Peter Chen | 022d054 | 2013-05-24 14:30:16 +0800 | [diff] [blame] | 196 | device_for_each_child(&pdev->dev, NULL, dwc3_exynos_remove_child); |
Felipe Balbi | d720f05 | 2012-07-19 14:01:10 +0300 | [diff] [blame] | 197 | platform_device_unregister(exynos->usb2_phy); |
| 198 | platform_device_unregister(exynos->usb3_phy); |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 199 | |
Vivek Gautam | ddb5147 | 2013-03-14 16:14:58 +0530 | [diff] [blame] | 200 | clk_disable_unprepare(exynos->clk); |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 201 | |
Vivek Gautam | bd8ce54 | 2014-04-21 17:46:44 +0530 | [diff] [blame] | 202 | regulator_disable(exynos->vdd33); |
| 203 | regulator_disable(exynos->vdd10); |
| 204 | |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 205 | return 0; |
| 206 | } |
| 207 | |
Vivek Gautam | accefdd | 2012-11-03 18:00:27 +0530 | [diff] [blame] | 208 | #ifdef CONFIG_OF |
| 209 | static const struct of_device_id exynos_dwc3_match[] = { |
Vivek Gautam | fe29db8 | 2013-01-24 19:15:30 +0530 | [diff] [blame] | 210 | { .compatible = "samsung,exynos5250-dwusb3" }, |
Vivek Gautam | accefdd | 2012-11-03 18:00:27 +0530 | [diff] [blame] | 211 | {}, |
| 212 | }; |
| 213 | MODULE_DEVICE_TABLE(of, exynos_dwc3_match); |
| 214 | #endif |
| 215 | |
Jingoo Han | 19fda7c | 2013-03-26 01:52:48 +0000 | [diff] [blame] | 216 | #ifdef CONFIG_PM_SLEEP |
Vikas Sajjan | 0646caf | 2012-10-16 15:15:38 +0530 | [diff] [blame] | 217 | static int dwc3_exynos_suspend(struct device *dev) |
| 218 | { |
| 219 | struct dwc3_exynos *exynos = dev_get_drvdata(dev); |
| 220 | |
| 221 | clk_disable(exynos->clk); |
| 222 | |
Vivek Gautam | bd8ce54 | 2014-04-21 17:46:44 +0530 | [diff] [blame] | 223 | regulator_disable(exynos->vdd33); |
| 224 | regulator_disable(exynos->vdd10); |
| 225 | |
Vikas Sajjan | 0646caf | 2012-10-16 15:15:38 +0530 | [diff] [blame] | 226 | return 0; |
| 227 | } |
| 228 | |
| 229 | static int dwc3_exynos_resume(struct device *dev) |
| 230 | { |
| 231 | struct dwc3_exynos *exynos = dev_get_drvdata(dev); |
Vivek Gautam | bd8ce54 | 2014-04-21 17:46:44 +0530 | [diff] [blame] | 232 | int ret; |
| 233 | |
| 234 | ret = regulator_enable(exynos->vdd33); |
| 235 | if (ret) { |
| 236 | dev_err(dev, "Failed to enable VDD33 supply\n"); |
| 237 | return ret; |
| 238 | } |
| 239 | ret = regulator_enable(exynos->vdd10); |
| 240 | if (ret) { |
| 241 | dev_err(dev, "Failed to enable VDD10 supply\n"); |
| 242 | return ret; |
| 243 | } |
Vikas Sajjan | 0646caf | 2012-10-16 15:15:38 +0530 | [diff] [blame] | 244 | |
| 245 | clk_enable(exynos->clk); |
| 246 | |
| 247 | /* runtime set active to reflect active state. */ |
| 248 | pm_runtime_disable(dev); |
| 249 | pm_runtime_set_active(dev); |
| 250 | pm_runtime_enable(dev); |
| 251 | |
| 252 | return 0; |
| 253 | } |
| 254 | |
| 255 | static const struct dev_pm_ops dwc3_exynos_dev_pm_ops = { |
| 256 | SET_SYSTEM_SLEEP_PM_OPS(dwc3_exynos_suspend, dwc3_exynos_resume) |
| 257 | }; |
| 258 | |
| 259 | #define DEV_PM_OPS (&dwc3_exynos_dev_pm_ops) |
| 260 | #else |
| 261 | #define DEV_PM_OPS NULL |
Jingoo Han | 19fda7c | 2013-03-26 01:52:48 +0000 | [diff] [blame] | 262 | #endif /* CONFIG_PM_SLEEP */ |
Vikas Sajjan | 0646caf | 2012-10-16 15:15:38 +0530 | [diff] [blame] | 263 | |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 264 | static struct platform_driver dwc3_exynos_driver = { |
| 265 | .probe = dwc3_exynos_probe, |
Bill Pemberton | 7690417 | 2012-11-19 13:21:08 -0500 | [diff] [blame] | 266 | .remove = dwc3_exynos_remove, |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 267 | .driver = { |
| 268 | .name = "exynos-dwc3", |
Vivek Gautam | accefdd | 2012-11-03 18:00:27 +0530 | [diff] [blame] | 269 | .of_match_table = of_match_ptr(exynos_dwc3_match), |
Vikas Sajjan | 0646caf | 2012-10-16 15:15:38 +0530 | [diff] [blame] | 270 | .pm = DEV_PM_OPS, |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 271 | }, |
| 272 | }; |
| 273 | |
| 274 | module_platform_driver(dwc3_exynos_driver); |
| 275 | |
| 276 | MODULE_ALIAS("platform:exynos-dwc3"); |
| 277 | MODULE_AUTHOR("Anton Tikhomirov <av.tikhomirov@samsung.com>"); |
Felipe Balbi | 5945f78 | 2013-06-30 14:15:11 +0300 | [diff] [blame] | 278 | MODULE_LICENSE("GPL v2"); |
Anton Tikhomirov | d28a968 | 2012-02-15 17:04:56 +0900 | [diff] [blame] | 279 | MODULE_DESCRIPTION("DesignWare USB3 EXYNOS Glue Layer"); |