blob: 9487bf112267bebdbb7c1c92c6cdb349ee3ccc51 [file] [log] [blame]
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +02001/*
2 * omap-control-phy.c - The PHY part of control module.
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/of.h>
23#include <linux/of_device.h>
24#include <linux/err.h>
25#include <linux/io.h>
26#include <linux/clk.h>
27#include <linux/phy/omap_control_phy.h>
28
29/**
Kishon Vijay Abraham If0e2cf72014-06-25 23:22:57 +053030 * omap_control_pcie_pcs - set the PCS delay count
31 * @dev: the control module device
32 * @id: index of the pcie PHY (should be 1 or 2)
33 * @delay: 8 bit delay value
34 */
35void omap_control_pcie_pcs(struct device *dev, u8 id, u8 delay)
36{
37 u32 val;
38 struct omap_control_phy *control_phy;
39
40 if (IS_ERR(dev) || !dev) {
41 pr_err("%s: invalid device\n", __func__);
42 return;
43 }
44
45 control_phy = dev_get_drvdata(dev);
46 if (!control_phy) {
47 dev_err(dev, "%s: invalid control phy device\n", __func__);
48 return;
49 }
50
51 if (control_phy->type != OMAP_CTRL_TYPE_PCIE) {
52 dev_err(dev, "%s: unsupported operation\n", __func__);
53 return;
54 }
55
56 val = readl(control_phy->pcie_pcs);
57 val &= ~(OMAP_CTRL_PCIE_PCS_MASK <<
58 (id * OMAP_CTRL_PCIE_PCS_DELAY_COUNT_SHIFT));
59 val |= delay << (id * OMAP_CTRL_PCIE_PCS_DELAY_COUNT_SHIFT);
60 writel(val, control_phy->pcie_pcs);
61}
62EXPORT_SYMBOL_GPL(omap_control_pcie_pcs);
63
64/**
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +020065 * omap_control_phy_power - power on/off the phy using control module reg
66 * @dev: the control module device
67 * @on: 0 or 1, based on powering on or off the PHY
68 */
69void omap_control_phy_power(struct device *dev, int on)
70{
71 u32 val;
72 unsigned long rate;
73 struct omap_control_phy *control_phy;
74
75 if (IS_ERR(dev) || !dev) {
76 pr_err("%s: invalid device\n", __func__);
77 return;
78 }
79
80 control_phy = dev_get_drvdata(dev);
81 if (!control_phy) {
82 dev_err(dev, "%s: invalid control phy device\n", __func__);
83 return;
84 }
85
86 if (control_phy->type == OMAP_CTRL_TYPE_OTGHS)
87 return;
88
89 val = readl(control_phy->power);
90
91 switch (control_phy->type) {
92 case OMAP_CTRL_TYPE_USB2:
93 if (on)
94 val &= ~OMAP_CTRL_DEV_PHY_PD;
95 else
96 val |= OMAP_CTRL_DEV_PHY_PD;
97 break;
98
Kishon Vijay Abraham If0e2cf72014-06-25 23:22:57 +053099 case OMAP_CTRL_TYPE_PCIE:
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200100 case OMAP_CTRL_TYPE_PIPE3:
101 rate = clk_get_rate(control_phy->sys_clk);
102 rate = rate/1000000;
103
104 if (on) {
105 val &= ~(OMAP_CTRL_PIPE3_PHY_PWRCTL_CLK_CMD_MASK |
106 OMAP_CTRL_PIPE3_PHY_PWRCTL_CLK_FREQ_MASK);
107 val |= OMAP_CTRL_PIPE3_PHY_TX_RX_POWERON <<
108 OMAP_CTRL_PIPE3_PHY_PWRCTL_CLK_CMD_SHIFT;
109 val |= rate <<
110 OMAP_CTRL_PIPE3_PHY_PWRCTL_CLK_FREQ_SHIFT;
111 } else {
112 val &= ~OMAP_CTRL_PIPE3_PHY_PWRCTL_CLK_CMD_MASK;
113 val |= OMAP_CTRL_PIPE3_PHY_TX_RX_POWEROFF <<
114 OMAP_CTRL_PIPE3_PHY_PWRCTL_CLK_CMD_SHIFT;
115 }
116 break;
117
118 case OMAP_CTRL_TYPE_DRA7USB2:
119 if (on)
120 val &= ~OMAP_CTRL_USB2_PHY_PD;
121 else
122 val |= OMAP_CTRL_USB2_PHY_PD;
123 break;
124
125 case OMAP_CTRL_TYPE_AM437USB2:
126 if (on) {
127 val &= ~(AM437X_CTRL_USB2_PHY_PD |
128 AM437X_CTRL_USB2_OTG_PD);
129 val |= (AM437X_CTRL_USB2_OTGVDET_EN |
130 AM437X_CTRL_USB2_OTGSESSEND_EN);
131 } else {
132 val &= ~(AM437X_CTRL_USB2_OTGVDET_EN |
133 AM437X_CTRL_USB2_OTGSESSEND_EN);
134 val |= (AM437X_CTRL_USB2_PHY_PD |
135 AM437X_CTRL_USB2_OTG_PD);
136 }
137 break;
138 default:
139 dev_err(dev, "%s: type %d not recognized\n",
140 __func__, control_phy->type);
141 break;
142 }
143
144 writel(val, control_phy->power);
145}
146EXPORT_SYMBOL_GPL(omap_control_phy_power);
147
148/**
149 * omap_control_usb_host_mode - set AVALID, VBUSVALID and ID pin in grounded
150 * @ctrl_phy: struct omap_control_phy *
151 *
152 * Writes to the mailbox register to notify the usb core that a usb
153 * device has been connected.
154 */
155static void omap_control_usb_host_mode(struct omap_control_phy *ctrl_phy)
156{
157 u32 val;
158
159 val = readl(ctrl_phy->otghs_control);
160 val &= ~(OMAP_CTRL_DEV_IDDIG | OMAP_CTRL_DEV_SESSEND);
161 val |= OMAP_CTRL_DEV_AVALID | OMAP_CTRL_DEV_VBUSVALID;
162 writel(val, ctrl_phy->otghs_control);
163}
164
165/**
166 * omap_control_usb_device_mode - set AVALID, VBUSVALID and ID pin in high
167 * impedance
168 * @ctrl_phy: struct omap_control_phy *
169 *
170 * Writes to the mailbox register to notify the usb core that it has been
171 * connected to a usb host.
172 */
173static void omap_control_usb_device_mode(struct omap_control_phy *ctrl_phy)
174{
175 u32 val;
176
177 val = readl(ctrl_phy->otghs_control);
178 val &= ~OMAP_CTRL_DEV_SESSEND;
179 val |= OMAP_CTRL_DEV_IDDIG | OMAP_CTRL_DEV_AVALID |
180 OMAP_CTRL_DEV_VBUSVALID;
181 writel(val, ctrl_phy->otghs_control);
182}
183
184/**
185 * omap_control_usb_set_sessionend - Enable SESSIONEND and IDIG to high
186 * impedance
187 * @ctrl_phy: struct omap_control_phy *
188 *
189 * Writes to the mailbox register to notify the usb core it's now in
190 * disconnected state.
191 */
192static void omap_control_usb_set_sessionend(struct omap_control_phy *ctrl_phy)
193{
194 u32 val;
195
196 val = readl(ctrl_phy->otghs_control);
197 val &= ~(OMAP_CTRL_DEV_AVALID | OMAP_CTRL_DEV_VBUSVALID);
198 val |= OMAP_CTRL_DEV_IDDIG | OMAP_CTRL_DEV_SESSEND;
199 writel(val, ctrl_phy->otghs_control);
200}
201
202/**
203 * omap_control_usb_set_mode - Calls to functions to set USB in one of host mode
204 * or device mode or to denote disconnected state
205 * @dev: the control module device
206 * @mode: The mode to which usb should be configured
207 *
208 * This is an API to write to the mailbox register to notify the usb core that
209 * a usb device has been connected.
210 */
211void omap_control_usb_set_mode(struct device *dev,
212 enum omap_control_usb_mode mode)
213{
214 struct omap_control_phy *ctrl_phy;
215
216 if (IS_ERR(dev) || !dev)
217 return;
218
219 ctrl_phy = dev_get_drvdata(dev);
220
221 if (!ctrl_phy) {
222 dev_err(dev, "Invalid control phy device\n");
223 return;
224 }
225
226 if (ctrl_phy->type != OMAP_CTRL_TYPE_OTGHS)
227 return;
228
229 switch (mode) {
230 case USB_MODE_HOST:
231 omap_control_usb_host_mode(ctrl_phy);
232 break;
233 case USB_MODE_DEVICE:
234 omap_control_usb_device_mode(ctrl_phy);
235 break;
236 case USB_MODE_DISCONNECT:
237 omap_control_usb_set_sessionend(ctrl_phy);
238 break;
239 default:
240 dev_vdbg(dev, "invalid omap control usb mode\n");
241 }
242}
243EXPORT_SYMBOL_GPL(omap_control_usb_set_mode);
244
245#ifdef CONFIG_OF
246
247static const enum omap_control_phy_type otghs_data = OMAP_CTRL_TYPE_OTGHS;
248static const enum omap_control_phy_type usb2_data = OMAP_CTRL_TYPE_USB2;
249static const enum omap_control_phy_type pipe3_data = OMAP_CTRL_TYPE_PIPE3;
Kishon Vijay Abraham If0e2cf72014-06-25 23:22:57 +0530250static const enum omap_control_phy_type pcie_data = OMAP_CTRL_TYPE_PCIE;
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200251static const enum omap_control_phy_type dra7usb2_data = OMAP_CTRL_TYPE_DRA7USB2;
252static const enum omap_control_phy_type am437usb2_data = OMAP_CTRL_TYPE_AM437USB2;
253
254static const struct of_device_id omap_control_phy_id_table[] = {
255 {
256 .compatible = "ti,control-phy-otghs",
257 .data = &otghs_data,
258 },
259 {
260 .compatible = "ti,control-phy-usb2",
261 .data = &usb2_data,
262 },
263 {
264 .compatible = "ti,control-phy-pipe3",
265 .data = &pipe3_data,
266 },
267 {
Kishon Vijay Abraham If0e2cf72014-06-25 23:22:57 +0530268 .compatible = "ti,control-phy-pcie",
269 .data = &pcie_data,
270 },
271 {
Roger Quadros51c9f4a2014-03-07 11:18:00 +0530272 .compatible = "ti,control-phy-usb2-dra7",
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200273 .data = &dra7usb2_data,
274 },
275 {
Roger Quadros51c9f4a2014-03-07 11:18:00 +0530276 .compatible = "ti,control-phy-usb2-am437",
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200277 .data = &am437usb2_data,
278 },
279 {},
280};
281MODULE_DEVICE_TABLE(of, omap_control_phy_id_table);
282#endif
283
284
285static int omap_control_phy_probe(struct platform_device *pdev)
286{
287 struct resource *res;
288 const struct of_device_id *of_id;
289 struct omap_control_phy *control_phy;
290
291 of_id = of_match_device(of_match_ptr(omap_control_phy_id_table),
292 &pdev->dev);
293 if (!of_id)
294 return -EINVAL;
295
296 control_phy = devm_kzalloc(&pdev->dev, sizeof(*control_phy),
297 GFP_KERNEL);
298 if (!control_phy) {
299 dev_err(&pdev->dev, "unable to alloc memory for control phy\n");
300 return -ENOMEM;
301 }
302
303 control_phy->dev = &pdev->dev;
304 control_phy->type = *(enum omap_control_phy_type *)of_id->data;
305
306 if (control_phy->type == OMAP_CTRL_TYPE_OTGHS) {
307 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
308 "otghs_control");
309 control_phy->otghs_control = devm_ioremap_resource(
310 &pdev->dev, res);
311 if (IS_ERR(control_phy->otghs_control))
312 return PTR_ERR(control_phy->otghs_control);
313 } else {
314 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
315 "power");
316 control_phy->power = devm_ioremap_resource(&pdev->dev, res);
317 if (IS_ERR(control_phy->power)) {
318 dev_err(&pdev->dev, "Couldn't get power register\n");
319 return PTR_ERR(control_phy->power);
320 }
321 }
322
Kishon Vijay Abraham If0e2cf72014-06-25 23:22:57 +0530323 if (control_phy->type == OMAP_CTRL_TYPE_PIPE3 ||
324 control_phy->type == OMAP_CTRL_TYPE_PCIE) {
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200325 control_phy->sys_clk = devm_clk_get(control_phy->dev,
326 "sys_clkin");
327 if (IS_ERR(control_phy->sys_clk)) {
328 pr_err("%s: unable to get sys_clkin\n", __func__);
329 return -EINVAL;
330 }
331 }
332
Kishon Vijay Abraham If0e2cf72014-06-25 23:22:57 +0530333 if (control_phy->type == OMAP_CTRL_TYPE_PCIE) {
334 res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
335 "pcie_pcs");
336 control_phy->pcie_pcs = devm_ioremap_resource(&pdev->dev, res);
337 if (IS_ERR(control_phy->pcie_pcs))
338 return PTR_ERR(control_phy->pcie_pcs);
339 }
340
Kishon Vijay Abraham I14da6992014-03-06 16:38:37 +0200341 dev_set_drvdata(control_phy->dev, control_phy);
342
343 return 0;
344}
345
346static struct platform_driver omap_control_phy_driver = {
347 .probe = omap_control_phy_probe,
348 .driver = {
349 .name = "omap-control-phy",
350 .owner = THIS_MODULE,
351 .of_match_table = of_match_ptr(omap_control_phy_id_table),
352 },
353};
354
355static int __init omap_control_phy_init(void)
356{
357 return platform_driver_register(&omap_control_phy_driver);
358}
359subsys_initcall(omap_control_phy_init);
360
361static void __exit omap_control_phy_exit(void)
362{
363 platform_driver_unregister(&omap_control_phy_driver);
364}
365module_exit(omap_control_phy_exit);
366
367MODULE_ALIAS("platform: omap_control_phy");
368MODULE_AUTHOR("Texas Instruments Inc.");
369MODULE_DESCRIPTION("OMAP Control Module PHY Driver");
370MODULE_LICENSE("GPL v2");