blob: 3a30a5edde98847db403d3e20e3fed9dc4cd9ca6 [file] [log] [blame]
Vivek Gautamb5276752013-03-14 15:59:11 +05301/* linux/drivers/usb/phy/phy-samsung-usb3.c
2 *
3 * Copyright (c) 2013 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
5 *
6 * Author: Vivek Gautam <gautam.vivek@samsung.com>
7 *
8 * Samsung USB 3.0 PHY transceiver; talks to DWC3 controller.
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 */
19
20#include <linux/module.h>
21#include <linux/platform_device.h>
22#include <linux/clk.h>
23#include <linux/delay.h>
24#include <linux/err.h>
25#include <linux/io.h>
26#include <linux/of.h>
27#include <linux/usb/samsung_usb_phy.h>
28#include <linux/platform_data/samsung-usbphy.h>
29
30#include "phy-samsung-usb.h"
31
32/*
33 * Sets the phy clk as EXTREFCLK (XXTI) which is internal clock from clock core.
34 */
35static u32 samsung_usb3phy_set_refclk(struct samsung_usbphy *sphy)
36{
37 u32 reg;
38 u32 refclk;
39
40 refclk = sphy->ref_clk_freq;
41
42 reg = PHYCLKRST_REFCLKSEL_EXT_REFCLK |
43 PHYCLKRST_FSEL(refclk);
44
45 switch (refclk) {
46 case FSEL_CLKSEL_50M:
47 reg |= (PHYCLKRST_MPLL_MULTIPLIER_50M_REF |
48 PHYCLKRST_SSC_REFCLKSEL(0x00));
49 break;
50 case FSEL_CLKSEL_20M:
51 reg |= (PHYCLKRST_MPLL_MULTIPLIER_20MHZ_REF |
52 PHYCLKRST_SSC_REFCLKSEL(0x00));
53 break;
54 case FSEL_CLKSEL_19200K:
55 reg |= (PHYCLKRST_MPLL_MULTIPLIER_19200KHZ_REF |
56 PHYCLKRST_SSC_REFCLKSEL(0x88));
57 break;
58 case FSEL_CLKSEL_24M:
59 default:
60 reg |= (PHYCLKRST_MPLL_MULTIPLIER_24MHZ_REF |
61 PHYCLKRST_SSC_REFCLKSEL(0x88));
62 break;
63 }
64
65 return reg;
66}
67
68static int samsung_exynos5_usb3phy_enable(struct samsung_usbphy *sphy)
69{
70 void __iomem *regs = sphy->regs;
71 u32 phyparam0;
72 u32 phyparam1;
73 u32 linksystem;
74 u32 phybatchg;
75 u32 phytest;
76 u32 phyclkrst;
77
78 /* Reset USB 3.0 PHY */
79 writel(0x0, regs + EXYNOS5_DRD_PHYREG0);
80
81 phyparam0 = readl(regs + EXYNOS5_DRD_PHYPARAM0);
82 /* Select PHY CLK source */
83 phyparam0 &= ~PHYPARAM0_REF_USE_PAD;
84 /* Set Loss-of-Signal Detector sensitivity */
85 phyparam0 &= ~PHYPARAM0_REF_LOSLEVEL_MASK;
86 phyparam0 |= PHYPARAM0_REF_LOSLEVEL;
87 writel(phyparam0, regs + EXYNOS5_DRD_PHYPARAM0);
88
89 writel(0x0, regs + EXYNOS5_DRD_PHYRESUME);
90
91 /*
92 * Setting the Frame length Adj value[6:1] to default 0x20
93 * See xHCI 1.0 spec, 5.2.4
94 */
95 linksystem = LINKSYSTEM_XHCI_VERSION_CONTROL |
96 LINKSYSTEM_FLADJ(0x20);
97 writel(linksystem, regs + EXYNOS5_DRD_LINKSYSTEM);
98
99 phyparam1 = readl(regs + EXYNOS5_DRD_PHYPARAM1);
100 /* Set Tx De-Emphasis level */
101 phyparam1 &= ~PHYPARAM1_PCS_TXDEEMPH_MASK;
102 phyparam1 |= PHYPARAM1_PCS_TXDEEMPH;
103 writel(phyparam1, regs + EXYNOS5_DRD_PHYPARAM1);
104
105 phybatchg = readl(regs + EXYNOS5_DRD_PHYBATCHG);
106 phybatchg |= PHYBATCHG_UTMI_CLKSEL;
107 writel(phybatchg, regs + EXYNOS5_DRD_PHYBATCHG);
108
109 /* PHYTEST POWERDOWN Control */
110 phytest = readl(regs + EXYNOS5_DRD_PHYTEST);
111 phytest &= ~(PHYTEST_POWERDOWN_SSP |
112 PHYTEST_POWERDOWN_HSP);
113 writel(phytest, regs + EXYNOS5_DRD_PHYTEST);
114
115 /* UTMI Power Control */
116 writel(PHYUTMI_OTGDISABLE, regs + EXYNOS5_DRD_PHYUTMI);
117
118 phyclkrst = samsung_usb3phy_set_refclk(sphy);
119
120 phyclkrst |= PHYCLKRST_PORTRESET |
121 /* Digital power supply in normal operating mode */
122 PHYCLKRST_RETENABLEN |
123 /* Enable ref clock for SS function */
124 PHYCLKRST_REF_SSP_EN |
125 /* Enable spread spectrum */
126 PHYCLKRST_SSC_EN |
127 /* Power down HS Bias and PLL blocks in suspend mode */
128 PHYCLKRST_COMMONONN;
129
130 writel(phyclkrst, regs + EXYNOS5_DRD_PHYCLKRST);
131
132 udelay(10);
133
134 phyclkrst &= ~(PHYCLKRST_PORTRESET);
135 writel(phyclkrst, regs + EXYNOS5_DRD_PHYCLKRST);
136
137 return 0;
138}
139
140static void samsung_exynos5_usb3phy_disable(struct samsung_usbphy *sphy)
141{
142 u32 phyutmi;
143 u32 phyclkrst;
144 u32 phytest;
145 void __iomem *regs = sphy->regs;
146
147 phyutmi = PHYUTMI_OTGDISABLE |
148 PHYUTMI_FORCESUSPEND |
149 PHYUTMI_FORCESLEEP;
150 writel(phyutmi, regs + EXYNOS5_DRD_PHYUTMI);
151
152 /* Resetting the PHYCLKRST enable bits to reduce leakage current */
153 phyclkrst = readl(regs + EXYNOS5_DRD_PHYCLKRST);
154 phyclkrst &= ~(PHYCLKRST_REF_SSP_EN |
155 PHYCLKRST_SSC_EN |
156 PHYCLKRST_COMMONONN);
157 writel(phyclkrst, regs + EXYNOS5_DRD_PHYCLKRST);
158
159 /* Control PHYTEST to remove leakage current */
160 phytest = readl(regs + EXYNOS5_DRD_PHYTEST);
161 phytest |= (PHYTEST_POWERDOWN_SSP |
162 PHYTEST_POWERDOWN_HSP);
163 writel(phytest, regs + EXYNOS5_DRD_PHYTEST);
164}
165
166static int samsung_usb3phy_init(struct usb_phy *phy)
167{
168 struct samsung_usbphy *sphy;
169 unsigned long flags;
170 int ret = 0;
171
172 sphy = phy_to_sphy(phy);
173
174 /* Enable the phy clock */
175 ret = clk_prepare_enable(sphy->clk);
176 if (ret) {
177 dev_err(sphy->dev, "%s: clk_prepare_enable failed\n", __func__);
178 return ret;
179 }
180
181 spin_lock_irqsave(&sphy->lock, flags);
182
183 /* setting default phy-type for USB 3.0 */
184 samsung_usbphy_set_type(&sphy->phy, USB_PHY_TYPE_DEVICE);
185
186 /* Disable phy isolation */
Tomasz Figa3f339072013-05-16 11:57:09 +0200187 if (sphy->drv_data->set_isolation)
188 sphy->drv_data->set_isolation(sphy, false);
Vivek Gautamb5276752013-03-14 15:59:11 +0530189
190 /* Initialize usb phy registers */
191 samsung_exynos5_usb3phy_enable(sphy);
192
193 spin_unlock_irqrestore(&sphy->lock, flags);
194
195 /* Disable the phy clock */
196 clk_disable_unprepare(sphy->clk);
197
198 return ret;
199}
200
201/*
202 * The function passed to the usb driver for phy shutdown
203 */
204static void samsung_usb3phy_shutdown(struct usb_phy *phy)
205{
206 struct samsung_usbphy *sphy;
207 unsigned long flags;
208
209 sphy = phy_to_sphy(phy);
210
211 if (clk_prepare_enable(sphy->clk)) {
212 dev_err(sphy->dev, "%s: clk_prepare_enable failed\n", __func__);
213 return;
214 }
215
216 spin_lock_irqsave(&sphy->lock, flags);
217
218 /* setting default phy-type for USB 3.0 */
219 samsung_usbphy_set_type(&sphy->phy, USB_PHY_TYPE_DEVICE);
220
221 /* De-initialize usb phy registers */
222 samsung_exynos5_usb3phy_disable(sphy);
223
224 /* Enable phy isolation */
Tomasz Figa3f339072013-05-16 11:57:09 +0200225 if (sphy->drv_data->set_isolation)
226 sphy->drv_data->set_isolation(sphy, true);
Vivek Gautamb5276752013-03-14 15:59:11 +0530227
228 spin_unlock_irqrestore(&sphy->lock, flags);
229
230 clk_disable_unprepare(sphy->clk);
231}
232
233static int samsung_usb3phy_probe(struct platform_device *pdev)
234{
235 struct samsung_usbphy *sphy;
236 struct samsung_usbphy_data *pdata = pdev->dev.platform_data;
237 struct device *dev = &pdev->dev;
238 struct resource *phy_mem;
239 void __iomem *phy_base;
240 struct clk *clk;
241 int ret;
242
243 phy_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Sachin Kamatf4362b12013-03-26 14:44:03 +0530244 phy_base = devm_ioremap_resource(dev, phy_mem);
245 if (IS_ERR(phy_base))
246 return PTR_ERR(phy_base);
Vivek Gautamb5276752013-03-14 15:59:11 +0530247
248 sphy = devm_kzalloc(dev, sizeof(*sphy), GFP_KERNEL);
249 if (!sphy)
250 return -ENOMEM;
251
252 clk = devm_clk_get(dev, "usbdrd30");
253 if (IS_ERR(clk)) {
254 dev_err(dev, "Failed to get device clock\n");
255 return PTR_ERR(clk);
256 }
257
258 sphy->dev = dev;
259
260 if (dev->of_node) {
261 ret = samsung_usbphy_parse_dt(sphy);
262 if (ret < 0)
263 return ret;
264 } else {
265 if (!pdata) {
266 dev_err(dev, "no platform data specified\n");
267 return -EINVAL;
268 }
269 }
270
271 sphy->plat = pdata;
272 sphy->regs = phy_base;
273 sphy->clk = clk;
274 sphy->phy.dev = sphy->dev;
275 sphy->phy.label = "samsung-usb3phy";
276 sphy->phy.init = samsung_usb3phy_init;
277 sphy->phy.shutdown = samsung_usb3phy_shutdown;
278 sphy->drv_data = samsung_usbphy_get_driver_data(pdev);
Tomasz Figa0aa823a2013-05-16 11:57:08 +0200279
280 sphy->ref_clk_freq = samsung_usbphy_get_refclk_freq(sphy);
281 if (sphy->ref_clk_freq < 0)
282 return -EINVAL;
Vivek Gautamb5276752013-03-14 15:59:11 +0530283
284 spin_lock_init(&sphy->lock);
285
286 platform_set_drvdata(pdev, sphy);
287
288 return usb_add_phy(&sphy->phy, USB_PHY_TYPE_USB3);
289}
290
291static int samsung_usb3phy_remove(struct platform_device *pdev)
292{
293 struct samsung_usbphy *sphy = platform_get_drvdata(pdev);
294
295 usb_remove_phy(&sphy->phy);
296
297 if (sphy->pmuregs)
298 iounmap(sphy->pmuregs);
299 if (sphy->sysreg)
300 iounmap(sphy->sysreg);
301
302 return 0;
303}
304
305static struct samsung_usbphy_drvdata usb3phy_exynos5 = {
306 .cpu_type = TYPE_EXYNOS5250,
307 .devphy_en_mask = EXYNOS_USBPHY_ENABLE,
Tomasz Figa0aa823a2013-05-16 11:57:08 +0200308 .rate_to_clksel = samsung_usbphy_rate_to_clksel_4x12,
Tomasz Figa3f339072013-05-16 11:57:09 +0200309 .set_isolation = samsung_usbphy_set_isolation_4210,
Vivek Gautamb5276752013-03-14 15:59:11 +0530310};
311
312#ifdef CONFIG_OF
313static const struct of_device_id samsung_usbphy_dt_match[] = {
314 {
315 .compatible = "samsung,exynos5250-usb3phy",
316 .data = &usb3phy_exynos5
317 },
318 {},
319};
320MODULE_DEVICE_TABLE(of, samsung_usbphy_dt_match);
321#endif
322
323static struct platform_device_id samsung_usbphy_driver_ids[] = {
324 {
325 .name = "exynos5250-usb3phy",
326 .driver_data = (unsigned long)&usb3phy_exynos5,
327 },
328 {},
329};
330
331MODULE_DEVICE_TABLE(platform, samsung_usbphy_driver_ids);
332
333static struct platform_driver samsung_usb3phy_driver = {
334 .probe = samsung_usb3phy_probe,
335 .remove = samsung_usb3phy_remove,
336 .id_table = samsung_usbphy_driver_ids,
337 .driver = {
338 .name = "samsung-usb3phy",
339 .owner = THIS_MODULE,
340 .of_match_table = of_match_ptr(samsung_usbphy_dt_match),
341 },
342};
343
344module_platform_driver(samsung_usb3phy_driver);
345
346MODULE_DESCRIPTION("Samsung USB 3.0 phy controller");
347MODULE_AUTHOR("Vivek Gautam <gautam.vivek@samsung.com>");
348MODULE_LICENSE("GPL");
349MODULE_ALIAS("platform:samsung-usb3phy");