blob: 12cc900491a453a898774697d2915fc933873ec7 [file] [log] [blame]
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +05301/*
2 * phy-ti-pipe3 - PIPE3 PHY driver.
3 *
4 * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * Author: Kishon Vijay Abraham I <kishon@ti.com>
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 */
18
19#include <linux/module.h>
20#include <linux/platform_device.h>
21#include <linux/slab.h>
22#include <linux/phy/phy.h>
23#include <linux/of.h>
24#include <linux/clk.h>
25#include <linux/err.h>
26#include <linux/io.h>
27#include <linux/pm_runtime.h>
28#include <linux/delay.h>
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +020029#include <linux/phy/omap_control_phy.h>
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +053030#include <linux/of_platform.h>
31
32#define PLL_STATUS 0x00000004
33#define PLL_GO 0x00000008
34#define PLL_CONFIGURATION1 0x0000000C
35#define PLL_CONFIGURATION2 0x00000010
36#define PLL_CONFIGURATION3 0x00000014
37#define PLL_CONFIGURATION4 0x00000020
38
39#define PLL_REGM_MASK 0x001FFE00
40#define PLL_REGM_SHIFT 0x9
41#define PLL_REGM_F_MASK 0x0003FFFF
42#define PLL_REGM_F_SHIFT 0x0
43#define PLL_REGN_MASK 0x000001FE
44#define PLL_REGN_SHIFT 0x1
45#define PLL_SELFREQDCO_MASK 0x0000000E
46#define PLL_SELFREQDCO_SHIFT 0x1
47#define PLL_SD_MASK 0x0003FC00
Roger Quadros1562864f2014-03-07 11:27:09 +053048#define PLL_SD_SHIFT 10
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +053049#define SET_PLL_GO 0x1
Roger Quadros629138d2014-03-06 16:38:43 +020050#define PLL_LDOPWDN BIT(15)
51#define PLL_TICOPWDN BIT(16)
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +053052#define PLL_LOCK 0x2
53#define PLL_IDLE 0x1
54
55/*
56 * This is an Empirical value that works, need to confirm the actual
57 * value required for the PIPE3PHY_PLL_CONFIGURATION2.PLL_IDLE status
58 * to be correctly reflected in the PIPE3PHY_PLL_STATUS register.
59 */
Roger Quadros629138d2014-03-06 16:38:43 +020060#define PLL_IDLE_TIME 100 /* in milliseconds */
61#define PLL_LOCK_TIME 100 /* in milliseconds */
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +053062
63struct pipe3_dpll_params {
64 u16 m;
65 u8 n;
66 u8 freq:3;
67 u8 sd;
68 u32 mf;
69};
70
Roger Quadros61f54672014-03-07 11:43:39 +053071struct pipe3_dpll_map {
72 unsigned long rate;
73 struct pipe3_dpll_params params;
74};
75
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +053076struct ti_pipe3 {
77 void __iomem *pll_ctrl_base;
78 struct device *dev;
79 struct device *control_dev;
80 struct clk *wkupclk;
81 struct clk *sys_clk;
Roger Quadros1562864f2014-03-07 11:27:09 +053082 struct clk *refclk;
Roger Quadros61f54672014-03-07 11:43:39 +053083 struct pipe3_dpll_map *dpll_map;
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +053084};
85
Roger Quadros61f54672014-03-07 11:43:39 +053086static struct pipe3_dpll_map dpll_map_usb[] = {
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +053087 {12000000, {1250, 5, 4, 20, 0} }, /* 12 MHz */
88 {16800000, {3125, 20, 4, 20, 0} }, /* 16.8 MHz */
89 {19200000, {1172, 8, 4, 20, 65537} }, /* 19.2 MHz */
90 {20000000, {1000, 7, 4, 10, 0} }, /* 20 MHz */
91 {26000000, {1250, 12, 4, 20, 0} }, /* 26 MHz */
92 {38400000, {3125, 47, 4, 20, 92843} }, /* 38.4 MHz */
Roger Quadros61f54672014-03-07 11:43:39 +053093 { }, /* Terminator */
94};
95
96static struct pipe3_dpll_map dpll_map_sata[] = {
97 {12000000, {1000, 7, 4, 6, 0} }, /* 12 MHz */
98 {16800000, {714, 7, 4, 6, 0} }, /* 16.8 MHz */
99 {19200000, {625, 7, 4, 6, 0} }, /* 19.2 MHz */
100 {20000000, {600, 7, 4, 6, 0} }, /* 20 MHz */
101 {26000000, {461, 7, 4, 6, 0} }, /* 26 MHz */
102 {38400000, {312, 7, 4, 6, 0} }, /* 38.4 MHz */
103 { }, /* Terminator */
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530104};
105
106static inline u32 ti_pipe3_readl(void __iomem *addr, unsigned offset)
107{
108 return __raw_readl(addr + offset);
109}
110
111static inline void ti_pipe3_writel(void __iomem *addr, unsigned offset,
112 u32 data)
113{
114 __raw_writel(data, addr + offset);
115}
116
Roger Quadros61f54672014-03-07 11:43:39 +0530117static struct pipe3_dpll_params *ti_pipe3_get_dpll_params(struct ti_pipe3 *phy)
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530118{
Roger Quadros61f54672014-03-07 11:43:39 +0530119 unsigned long rate;
120 struct pipe3_dpll_map *dpll_map = phy->dpll_map;
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530121
Roger Quadros61f54672014-03-07 11:43:39 +0530122 rate = clk_get_rate(phy->sys_clk);
123
124 for (; dpll_map->rate; dpll_map++) {
125 if (rate == dpll_map->rate)
126 return &dpll_map->params;
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530127 }
128
Roger Quadros61f54672014-03-07 11:43:39 +0530129 dev_err(phy->dev, "No DPLL configuration for %lu Hz SYS CLK\n", rate);
130
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530131 return NULL;
132}
133
134static int ti_pipe3_power_off(struct phy *x)
135{
136 struct ti_pipe3 *phy = phy_get_drvdata(x);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530137
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200138 omap_control_phy_power(phy->control_dev, 0);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530139
140 return 0;
141}
142
143static int ti_pipe3_power_on(struct phy *x)
144{
145 struct ti_pipe3 *phy = phy_get_drvdata(x);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530146
Roger Quadros629138d2014-03-06 16:38:43 +0200147 omap_control_phy_power(phy->control_dev, 1);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530148
Roger Quadros629138d2014-03-06 16:38:43 +0200149 return 0;
150}
151
152static int ti_pipe3_dpll_wait_lock(struct ti_pipe3 *phy)
153{
154 u32 val;
155 unsigned long timeout;
156
157 timeout = jiffies + msecs_to_jiffies(PLL_LOCK_TIME);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530158 do {
Roger Quadros629138d2014-03-06 16:38:43 +0200159 cpu_relax();
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530160 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_STATUS);
Roger Quadros629138d2014-03-06 16:38:43 +0200161 if (val & PLL_LOCK)
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530162 break;
Roger Quadros629138d2014-03-06 16:38:43 +0200163 } while (!time_after(jiffies, timeout));
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530164
Roger Quadros629138d2014-03-06 16:38:43 +0200165 if (!(val & PLL_LOCK)) {
166 dev_err(phy->dev, "DPLL failed to lock\n");
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530167 return -EBUSY;
168 }
169
170 return 0;
171}
172
Roger Quadros629138d2014-03-06 16:38:43 +0200173static int ti_pipe3_dpll_program(struct ti_pipe3 *phy)
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530174{
175 u32 val;
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530176 struct pipe3_dpll_params *dpll_params;
177
Roger Quadros61f54672014-03-07 11:43:39 +0530178 dpll_params = ti_pipe3_get_dpll_params(phy);
179 if (!dpll_params)
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530180 return -EINVAL;
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530181
182 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION1);
183 val &= ~PLL_REGN_MASK;
184 val |= dpll_params->n << PLL_REGN_SHIFT;
185 ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION1, val);
186
187 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION2);
188 val &= ~PLL_SELFREQDCO_MASK;
189 val |= dpll_params->freq << PLL_SELFREQDCO_SHIFT;
190 ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION2, val);
191
192 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION1);
193 val &= ~PLL_REGM_MASK;
194 val |= dpll_params->m << PLL_REGM_SHIFT;
195 ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION1, val);
196
197 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION4);
198 val &= ~PLL_REGM_F_MASK;
199 val |= dpll_params->mf << PLL_REGM_F_SHIFT;
200 ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION4, val);
201
202 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION3);
203 val &= ~PLL_SD_MASK;
204 val |= dpll_params->sd << PLL_SD_SHIFT;
205 ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION3, val);
206
Roger Quadros629138d2014-03-06 16:38:43 +0200207 ti_pipe3_writel(phy->pll_ctrl_base, PLL_GO, SET_PLL_GO);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530208
Roger Quadros629138d2014-03-06 16:38:43 +0200209 return ti_pipe3_dpll_wait_lock(phy);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530210}
211
212static int ti_pipe3_init(struct phy *x)
213{
214 struct ti_pipe3 *phy = phy_get_drvdata(x);
Roger Quadros629138d2014-03-06 16:38:43 +0200215 u32 val;
216 int ret = 0;
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530217
Roger Quadros629138d2014-03-06 16:38:43 +0200218 /* Bring it out of IDLE if it is IDLE */
219 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION2);
220 if (val & PLL_IDLE) {
221 val &= ~PLL_IDLE;
222 ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION2, val);
223 ret = ti_pipe3_dpll_wait_lock(phy);
224 }
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530225
Roger Quadros629138d2014-03-06 16:38:43 +0200226 /* Program the DPLL only if not locked */
227 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_STATUS);
228 if (!(val & PLL_LOCK))
229 if (ti_pipe3_dpll_program(phy))
230 return -EINVAL;
231
232 return ret;
233}
234
235static int ti_pipe3_exit(struct phy *x)
236{
237 struct ti_pipe3 *phy = phy_get_drvdata(x);
238 u32 val;
239 unsigned long timeout;
240
241 /* Put DPLL in IDLE mode */
242 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_CONFIGURATION2);
243 val |= PLL_IDLE;
244 ti_pipe3_writel(phy->pll_ctrl_base, PLL_CONFIGURATION2, val);
245
246 /* wait for LDO and Oscillator to power down */
247 timeout = jiffies + msecs_to_jiffies(PLL_IDLE_TIME);
248 do {
249 cpu_relax();
250 val = ti_pipe3_readl(phy->pll_ctrl_base, PLL_STATUS);
251 if ((val & PLL_TICOPWDN) && (val & PLL_LDOPWDN))
252 break;
253 } while (!time_after(jiffies, timeout));
254
255 if (!(val & PLL_TICOPWDN) || !(val & PLL_LDOPWDN)) {
256 dev_err(phy->dev, "Failed to power down: PLL_STATUS 0x%x\n",
257 val);
258 return -EBUSY;
259 }
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530260
261 return 0;
262}
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530263static struct phy_ops ops = {
264 .init = ti_pipe3_init,
Roger Quadros629138d2014-03-06 16:38:43 +0200265 .exit = ti_pipe3_exit,
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530266 .power_on = ti_pipe3_power_on,
267 .power_off = ti_pipe3_power_off,
268 .owner = THIS_MODULE,
269};
270
Roger Quadros61f54672014-03-07 11:43:39 +0530271#ifdef CONFIG_OF
272static const struct of_device_id ti_pipe3_id_table[];
273#endif
274
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530275static int ti_pipe3_probe(struct platform_device *pdev)
276{
277 struct ti_pipe3 *phy;
278 struct phy *generic_phy;
279 struct phy_provider *phy_provider;
280 struct resource *res;
281 struct device_node *node = pdev->dev.of_node;
282 struct device_node *control_node;
283 struct platform_device *control_pdev;
Roger Quadros61f54672014-03-07 11:43:39 +0530284 const struct of_device_id *match;
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530285
Roger Quadros61f54672014-03-07 11:43:39 +0530286 match = of_match_device(of_match_ptr(ti_pipe3_id_table), &pdev->dev);
287 if (!match)
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530288 return -EINVAL;
289
290 phy = devm_kzalloc(&pdev->dev, sizeof(*phy), GFP_KERNEL);
291 if (!phy) {
292 dev_err(&pdev->dev, "unable to alloc mem for TI PIPE3 PHY\n");
293 return -ENOMEM;
294 }
295
Roger Quadros61f54672014-03-07 11:43:39 +0530296 phy->dpll_map = (struct pipe3_dpll_map *)match->data;
297 if (!phy->dpll_map) {
298 dev_err(&pdev->dev, "no DPLL data\n");
299 return -EINVAL;
300 }
301
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530302 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "pll_ctrl");
303 phy->pll_ctrl_base = devm_ioremap_resource(&pdev->dev, res);
304 if (IS_ERR(phy->pll_ctrl_base))
305 return PTR_ERR(phy->pll_ctrl_base);
306
307 phy->dev = &pdev->dev;
308
Roger Quadros9c7f0442014-03-06 16:38:42 +0200309 if (!of_device_is_compatible(node, "ti,phy-pipe3-sata")) {
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530310
Roger Quadros9c7f0442014-03-06 16:38:42 +0200311 phy->wkupclk = devm_clk_get(phy->dev, "wkupclk");
312 if (IS_ERR(phy->wkupclk)) {
313 dev_err(&pdev->dev, "unable to get wkupclk\n");
314 return PTR_ERR(phy->wkupclk);
315 }
316
317 phy->refclk = devm_clk_get(phy->dev, "refclk");
318 if (IS_ERR(phy->refclk)) {
319 dev_err(&pdev->dev, "unable to get refclk\n");
320 return PTR_ERR(phy->refclk);
321 }
322 } else {
323 phy->wkupclk = ERR_PTR(-ENODEV);
324 phy->refclk = ERR_PTR(-ENODEV);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530325 }
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530326
Roger Quadros1562864f2014-03-07 11:27:09 +0530327 phy->sys_clk = devm_clk_get(phy->dev, "sysclk");
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530328 if (IS_ERR(phy->sys_clk)) {
Roger Quadros1562864f2014-03-07 11:27:09 +0530329 dev_err(&pdev->dev, "unable to get sysclk\n");
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530330 return -EINVAL;
331 }
332
333 control_node = of_parse_phandle(node, "ctrl-module", 0);
334 if (!control_node) {
335 dev_err(&pdev->dev, "Failed to get control device phandle\n");
336 return -EINVAL;
337 }
338
339 control_pdev = of_find_device_by_node(control_node);
340 if (!control_pdev) {
341 dev_err(&pdev->dev, "Failed to get control device\n");
342 return -EINVAL;
343 }
344
345 phy->control_dev = &control_pdev->dev;
346
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200347 omap_control_phy_power(phy->control_dev, 0);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530348
349 platform_set_drvdata(pdev, phy);
350 pm_runtime_enable(phy->dev);
351
352 generic_phy = devm_phy_create(phy->dev, &ops, NULL);
353 if (IS_ERR(generic_phy))
354 return PTR_ERR(generic_phy);
355
356 phy_set_drvdata(generic_phy, phy);
357 phy_provider = devm_of_phy_provider_register(phy->dev,
358 of_phy_simple_xlate);
359 if (IS_ERR(phy_provider))
360 return PTR_ERR(phy_provider);
361
362 pm_runtime_get(&pdev->dev);
363
364 return 0;
365}
366
367static int ti_pipe3_remove(struct platform_device *pdev)
368{
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530369 if (!pm_runtime_suspended(&pdev->dev))
370 pm_runtime_put(&pdev->dev);
371 pm_runtime_disable(&pdev->dev);
372
373 return 0;
374}
375
376#ifdef CONFIG_PM_RUNTIME
377
378static int ti_pipe3_runtime_suspend(struct device *dev)
379{
380 struct ti_pipe3 *phy = dev_get_drvdata(dev);
381
Roger Quadros1562864f2014-03-07 11:27:09 +0530382 if (!IS_ERR(phy->wkupclk))
383 clk_disable_unprepare(phy->wkupclk);
384 if (!IS_ERR(phy->refclk))
385 clk_disable_unprepare(phy->refclk);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530386
387 return 0;
388}
389
390static int ti_pipe3_runtime_resume(struct device *dev)
391{
392 u32 ret = 0;
393 struct ti_pipe3 *phy = dev_get_drvdata(dev);
394
Roger Quadros1562864f2014-03-07 11:27:09 +0530395 if (!IS_ERR(phy->refclk)) {
396 ret = clk_prepare_enable(phy->refclk);
397 if (ret) {
398 dev_err(phy->dev, "Failed to enable refclk %d\n", ret);
399 goto err1;
400 }
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530401 }
402
Roger Quadros1562864f2014-03-07 11:27:09 +0530403 if (!IS_ERR(phy->wkupclk)) {
404 ret = clk_prepare_enable(phy->wkupclk);
405 if (ret) {
406 dev_err(phy->dev, "Failed to enable wkupclk %d\n", ret);
407 goto err2;
408 }
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530409 }
410
411 return 0;
412
413err2:
Roger Quadros1562864f2014-03-07 11:27:09 +0530414 if (!IS_ERR(phy->refclk))
415 clk_disable_unprepare(phy->refclk);
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530416
417err1:
418 return ret;
419}
420
421static const struct dev_pm_ops ti_pipe3_pm_ops = {
422 SET_RUNTIME_PM_OPS(ti_pipe3_runtime_suspend,
423 ti_pipe3_runtime_resume, NULL)
424};
425
426#define DEV_PM_OPS (&ti_pipe3_pm_ops)
427#else
428#define DEV_PM_OPS NULL
429#endif
430
431#ifdef CONFIG_OF
432static const struct of_device_id ti_pipe3_id_table[] = {
Roger Quadros61f54672014-03-07 11:43:39 +0530433 {
434 .compatible = "ti,phy-usb3",
435 .data = dpll_map_usb,
436 },
437 {
438 .compatible = "ti,omap-usb3",
439 .data = dpll_map_usb,
440 },
441 {
442 .compatible = "ti,phy-pipe3-sata",
443 .data = dpll_map_sata,
444 },
Kishon Vijay Abraham Ia70143b2014-03-03 17:08:12 +0530445 {}
446};
447MODULE_DEVICE_TABLE(of, ti_pipe3_id_table);
448#endif
449
450static struct platform_driver ti_pipe3_driver = {
451 .probe = ti_pipe3_probe,
452 .remove = ti_pipe3_remove,
453 .driver = {
454 .name = "ti-pipe3",
455 .owner = THIS_MODULE,
456 .pm = DEV_PM_OPS,
457 .of_match_table = of_match_ptr(ti_pipe3_id_table),
458 },
459};
460
461module_platform_driver(ti_pipe3_driver);
462
463MODULE_ALIAS("platform: ti_pipe3");
464MODULE_AUTHOR("Texas Instruments Inc.");
465MODULE_DESCRIPTION("TI PIPE3 phy driver");
466MODULE_LICENSE("GPL v2");