blob: aa6d37b3378ad65ff26e336031173a9ae52d2287 [file] [log] [blame]
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +05301/*
2 * drivers/usb/otg/nop-usb-xceiv.c
3 *
4 * NOP USB transceiver for all USB transceiver which are either built-in
5 * into USB IP or which are mostly autonomous.
6 *
7 * Copyright (C) 2009 Texas Instruments Inc
8 * Author: Ajay Kumar Gupta <ajay.gupta@ti.com>
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 as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 *
24 * Current status:
David Brownellcc835e32009-03-31 12:28:31 -070025 * This provides a "nop" transceiver for PHYs which are
26 * autonomous such as isp1504, isp1707, etc.
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053027 */
28
29#include <linux/module.h>
30#include <linux/platform_device.h>
31#include <linux/dma-mapping.h>
32#include <linux/usb/otg.h>
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020033#include <linux/usb/usb_phy_gen_xceiv.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090034#include <linux/slab.h>
Roger Quadros2319fb82013-03-12 13:24:21 +020035#include <linux/clk.h>
Roger Quadros58f735f2013-03-12 13:24:22 +020036#include <linux/regulator/consumer.h>
Roger Quadros0eba3872013-03-12 13:24:25 +020037#include <linux/of.h>
Roger Quadrosbd27fa42013-09-24 11:53:48 +030038#include <linux/of_gpio.h>
39#include <linux/gpio.h>
40#include <linux/delay.h>
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053041
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +020042#include "phy-generic.h"
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053043
David Brownellcc835e32009-03-31 12:28:31 -070044static struct platform_device *pd;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053045
46void usb_nop_xceiv_register(void)
47{
David Brownellcc835e32009-03-31 12:28:31 -070048 if (pd)
49 return;
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020050 pd = platform_device_register_simple("usb_phy_gen_xceiv", -1, NULL, 0);
Wei Yongjune8d68f82013-10-25 17:31:14 +080051 if (IS_ERR(pd)) {
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020052 pr_err("Unable to register generic usb transceiver\n");
Wei Yongjune8d68f82013-10-25 17:31:14 +080053 pd = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053054 return;
55 }
56}
David Brownellcc835e32009-03-31 12:28:31 -070057EXPORT_SYMBOL(usb_nop_xceiv_register);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053058
59void usb_nop_xceiv_unregister(void)
60{
David Brownellcc835e32009-03-31 12:28:31 -070061 platform_device_unregister(pd);
Ajay Kumar Guptadc7520c2009-07-03 13:18:45 +053062 pd = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053063}
David Brownellcc835e32009-03-31 12:28:31 -070064EXPORT_SYMBOL(usb_nop_xceiv_unregister);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053065
Heikki Krogerus86753812012-02-13 13:24:02 +020066static int nop_set_suspend(struct usb_phy *x, int suspend)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053067{
68 return 0;
69}
70
Roger Quadrosbd27fa42013-09-24 11:53:48 +030071static void nop_reset_set(struct usb_phy_gen_xceiv *nop, int asserted)
72{
73 int value;
74
75 if (!gpio_is_valid(nop->gpio_reset))
76 return;
77
78 value = asserted;
79 if (nop->reset_active_low)
80 value = !value;
81
82 gpio_set_value_cansleep(nop->gpio_reset, value);
83
84 if (!asserted)
85 usleep_range(10000, 20000);
86}
87
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +020088int usb_gen_phy_init(struct usb_phy *phy)
Roger Quadros2319fb82013-03-12 13:24:21 +020089{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020090 struct usb_phy_gen_xceiv *nop = dev_get_drvdata(phy->dev);
Roger Quadros2319fb82013-03-12 13:24:21 +020091
Roger Quadros58f735f2013-03-12 13:24:22 +020092 if (!IS_ERR(nop->vcc)) {
93 if (regulator_enable(nop->vcc))
94 dev_err(phy->dev, "Failed to enable power\n");
95 }
96
Roger Quadros2319fb82013-03-12 13:24:21 +020097 if (!IS_ERR(nop->clk))
Mark Brown4d175f32013-08-11 15:26:04 +010098 clk_prepare_enable(nop->clk);
Roger Quadros2319fb82013-03-12 13:24:21 +020099
Roger Quadrosbd27fa42013-09-24 11:53:48 +0300100 /* De-assert RESET */
101 nop_reset_set(nop, 0);
Roger Quadrosad63ebfc2013-03-12 13:24:23 +0200102
Roger Quadros2319fb82013-03-12 13:24:21 +0200103 return 0;
104}
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200105EXPORT_SYMBOL_GPL(usb_gen_phy_init);
Roger Quadros2319fb82013-03-12 13:24:21 +0200106
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200107void usb_gen_phy_shutdown(struct usb_phy *phy)
Roger Quadros2319fb82013-03-12 13:24:21 +0200108{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200109 struct usb_phy_gen_xceiv *nop = dev_get_drvdata(phy->dev);
Roger Quadros2319fb82013-03-12 13:24:21 +0200110
Roger Quadrosbd27fa42013-09-24 11:53:48 +0300111 /* Assert RESET */
112 nop_reset_set(nop, 1);
Roger Quadrosad63ebfc2013-03-12 13:24:23 +0200113
Roger Quadros2319fb82013-03-12 13:24:21 +0200114 if (!IS_ERR(nop->clk))
Mark Brown4d175f32013-08-11 15:26:04 +0100115 clk_disable_unprepare(nop->clk);
Roger Quadros58f735f2013-03-12 13:24:22 +0200116
117 if (!IS_ERR(nop->vcc)) {
118 if (regulator_disable(nop->vcc))
119 dev_err(phy->dev, "Failed to disable power\n");
120 }
Roger Quadros2319fb82013-03-12 13:24:21 +0200121}
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200122EXPORT_SYMBOL_GPL(usb_gen_phy_shutdown);
Roger Quadros2319fb82013-03-12 13:24:21 +0200123
Heikki Krogerus41adf102012-02-13 13:24:10 +0200124static int nop_set_peripheral(struct usb_otg *otg, struct usb_gadget *gadget)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530125{
Heikki Krogerus41adf102012-02-13 13:24:10 +0200126 if (!otg)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530127 return -ENODEV;
128
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530129 if (!gadget) {
Heikki Krogerus41adf102012-02-13 13:24:10 +0200130 otg->gadget = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530131 return -ENODEV;
132 }
133
Heikki Krogerus41adf102012-02-13 13:24:10 +0200134 otg->gadget = gadget;
135 otg->phy->state = OTG_STATE_B_IDLE;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530136 return 0;
137}
138
Heikki Krogerus41adf102012-02-13 13:24:10 +0200139static int nop_set_host(struct usb_otg *otg, struct usb_bus *host)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530140{
Heikki Krogerus41adf102012-02-13 13:24:10 +0200141 if (!otg)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530142 return -ENODEV;
143
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530144 if (!host) {
Heikki Krogerus41adf102012-02-13 13:24:10 +0200145 otg->host = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530146 return -ENODEV;
147 }
148
Heikki Krogerus41adf102012-02-13 13:24:10 +0200149 otg->host = host;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530150 return 0;
151}
152
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200153int usb_phy_gen_create_phy(struct device *dev, struct usb_phy_gen_xceiv *nop,
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500154 struct usb_phy_gen_xceiv_platform_data *pdata)
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200155{
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500156 enum usb_phy_type type = USB_PHY_TYPE_USB2;
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200157 int err;
158
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500159 u32 clk_rate = 0;
160 bool needs_vcc = false;
161
162 nop->reset_active_low = true; /* default behaviour */
163
164 if (dev->of_node) {
165 struct device_node *node = dev->of_node;
Heikki Krogerus37cfbc42013-11-15 10:35:12 +0200166 enum of_gpio_flags flags = 0;
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500167
168 if (of_property_read_u32(node, "clock-frequency", &clk_rate))
169 clk_rate = 0;
170
171 needs_vcc = of_property_read_bool(node, "vcc-supply");
172 nop->gpio_reset = of_get_named_gpio_flags(node, "reset-gpios",
173 0, &flags);
174 if (nop->gpio_reset == -EPROBE_DEFER)
175 return -EPROBE_DEFER;
176
177 nop->reset_active_low = flags & OF_GPIO_ACTIVE_LOW;
178
179 } else if (pdata) {
180 type = pdata->type;
181 clk_rate = pdata->clk_rate;
182 needs_vcc = pdata->needs_vcc;
183 nop->gpio_reset = pdata->gpio_reset;
Aaro Koskinendc52c572013-11-15 21:38:50 +0200184 } else {
185 nop->gpio_reset = -1;
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500186 }
187
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200188 nop->phy.otg = devm_kzalloc(dev, sizeof(*nop->phy.otg),
189 GFP_KERNEL);
190 if (!nop->phy.otg)
191 return -ENOMEM;
192
193 nop->clk = devm_clk_get(dev, "main_clk");
194 if (IS_ERR(nop->clk)) {
195 dev_dbg(dev, "Can't get phy clock: %ld\n",
196 PTR_ERR(nop->clk));
197 }
198
199 if (!IS_ERR(nop->clk) && clk_rate) {
200 err = clk_set_rate(nop->clk, clk_rate);
201 if (err) {
202 dev_err(dev, "Error setting clock rate\n");
203 return err;
204 }
205 }
206
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200207 nop->vcc = devm_regulator_get(dev, "vcc");
208 if (IS_ERR(nop->vcc)) {
209 dev_dbg(dev, "Error getting vcc regulator: %ld\n",
210 PTR_ERR(nop->vcc));
211 if (needs_vcc)
212 return -EPROBE_DEFER;
213 }
214
Roger Quadrosbd27fa42013-09-24 11:53:48 +0300215 if (gpio_is_valid(nop->gpio_reset)) {
216 unsigned long gpio_flags;
217
218 /* Assert RESET */
219 if (nop->reset_active_low)
220 gpio_flags = GPIOF_OUT_INIT_LOW;
221 else
222 gpio_flags = GPIOF_OUT_INIT_HIGH;
223
224 err = devm_gpio_request_one(dev, nop->gpio_reset,
225 gpio_flags, dev_name(dev));
226 if (err) {
227 dev_err(dev, "Error requesting RESET GPIO %d\n",
228 nop->gpio_reset);
229 return err;
230 }
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200231 }
232
233 nop->dev = dev;
234 nop->phy.dev = nop->dev;
235 nop->phy.label = "nop-xceiv";
236 nop->phy.set_suspend = nop_set_suspend;
237 nop->phy.state = OTG_STATE_UNDEFINED;
238 nop->phy.type = type;
239
240 nop->phy.otg->phy = &nop->phy;
241 nop->phy.otg->set_host = nop_set_host;
242 nop->phy.otg->set_peripheral = nop_set_peripheral;
243
244 ATOMIC_INIT_NOTIFIER_HEAD(&nop->phy.notifier);
245 return 0;
246}
247EXPORT_SYMBOL_GPL(usb_phy_gen_create_phy);
248
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200249static int usb_phy_gen_xceiv_probe(struct platform_device *pdev)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530250{
Roger Quadros0eba3872013-03-12 13:24:25 +0200251 struct device *dev = &pdev->dev;
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200252 struct usb_phy_gen_xceiv *nop;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530253 int err;
Felipe Balbic84d3642012-07-19 13:38:06 +0300254
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200255 nop = devm_kzalloc(dev, sizeof(*nop), GFP_KERNEL);
256 if (!nop)
257 return -ENOMEM;
Roger Quadros2319fb82013-03-12 13:24:21 +0200258
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500259 err = usb_phy_gen_create_phy(dev, nop, dev_get_platdata(&pdev->dev));
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200260 if (err)
261 return err;
Roger Quadros2319fb82013-03-12 13:24:21 +0200262
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200263 nop->phy.init = usb_gen_phy_init;
264 nop->phy.shutdown = usb_gen_phy_shutdown;
Heikki Krogerus41adf102012-02-13 13:24:10 +0200265
Roger Quadros90f42322013-03-12 13:24:24 +0200266 err = usb_add_phy_dev(&nop->phy);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530267 if (err) {
268 dev_err(&pdev->dev, "can't register transceiver, err: %d\n",
269 err);
Mark Brown4d175f32013-08-11 15:26:04 +0100270 return err;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530271 }
272
273 platform_set_drvdata(pdev, nop);
274
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530275 return 0;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530276}
277
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200278static int usb_phy_gen_xceiv_remove(struct platform_device *pdev)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530279{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200280 struct usb_phy_gen_xceiv *nop = platform_get_drvdata(pdev);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530281
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530282 usb_remove_phy(&nop->phy);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530283
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530284 return 0;
285}
286
Roger Quadros0eba3872013-03-12 13:24:25 +0200287static const struct of_device_id nop_xceiv_dt_ids[] = {
288 { .compatible = "usb-nop-xceiv" },
289 { }
290};
291
292MODULE_DEVICE_TABLE(of, nop_xceiv_dt_ids);
293
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200294static struct platform_driver usb_phy_gen_xceiv_driver = {
295 .probe = usb_phy_gen_xceiv_probe,
296 .remove = usb_phy_gen_xceiv_remove,
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530297 .driver = {
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200298 .name = "usb_phy_gen_xceiv",
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530299 .owner = THIS_MODULE,
Sachin Kamat5462b0d2013-05-21 17:17:22 +0530300 .of_match_table = nop_xceiv_dt_ids,
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530301 },
302};
303
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200304static int __init usb_phy_gen_xceiv_init(void)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530305{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200306 return platform_driver_register(&usb_phy_gen_xceiv_driver);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530307}
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200308subsys_initcall(usb_phy_gen_xceiv_init);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530309
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200310static void __exit usb_phy_gen_xceiv_exit(void)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530311{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200312 platform_driver_unregister(&usb_phy_gen_xceiv_driver);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530313}
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200314module_exit(usb_phy_gen_xceiv_exit);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530315
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200316MODULE_ALIAS("platform:usb_phy_gen_xceiv");
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530317MODULE_AUTHOR("Texas Instruments Inc");
318MODULE_DESCRIPTION("NOP USB Transceiver driver");
319MODULE_LICENSE("GPL");