blob: 2d135b09c05125ce5918521bae245575f0b8afb2 [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);
David Brownellcc835e32009-03-31 12:28:31 -070051 if (!pd) {
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020052 pr_err("Unable to register generic usb transceiver\n");
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053053 return;
54 }
55}
David Brownellcc835e32009-03-31 12:28:31 -070056EXPORT_SYMBOL(usb_nop_xceiv_register);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053057
58void usb_nop_xceiv_unregister(void)
59{
David Brownellcc835e32009-03-31 12:28:31 -070060 platform_device_unregister(pd);
Ajay Kumar Guptadc7520c2009-07-03 13:18:45 +053061 pd = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053062}
David Brownellcc835e32009-03-31 12:28:31 -070063EXPORT_SYMBOL(usb_nop_xceiv_unregister);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053064
Heikki Krogerus86753812012-02-13 13:24:02 +020065static int nop_set_suspend(struct usb_phy *x, int suspend)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053066{
67 return 0;
68}
69
Roger Quadrosbd27fa42013-09-24 11:53:48 +030070static void nop_reset_set(struct usb_phy_gen_xceiv *nop, int asserted)
71{
72 int value;
73
74 if (!gpio_is_valid(nop->gpio_reset))
75 return;
76
77 value = asserted;
78 if (nop->reset_active_low)
79 value = !value;
80
81 gpio_set_value_cansleep(nop->gpio_reset, value);
82
83 if (!asserted)
84 usleep_range(10000, 20000);
85}
86
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +020087int usb_gen_phy_init(struct usb_phy *phy)
Roger Quadros2319fb82013-03-12 13:24:21 +020088{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020089 struct usb_phy_gen_xceiv *nop = dev_get_drvdata(phy->dev);
Roger Quadros2319fb82013-03-12 13:24:21 +020090
Roger Quadros58f735f2013-03-12 13:24:22 +020091 if (!IS_ERR(nop->vcc)) {
92 if (regulator_enable(nop->vcc))
93 dev_err(phy->dev, "Failed to enable power\n");
94 }
95
Roger Quadros2319fb82013-03-12 13:24:21 +020096 if (!IS_ERR(nop->clk))
Mark Brown4d175f32013-08-11 15:26:04 +010097 clk_prepare_enable(nop->clk);
Roger Quadros2319fb82013-03-12 13:24:21 +020098
Roger Quadrosbd27fa42013-09-24 11:53:48 +030099 /* De-assert RESET */
100 nop_reset_set(nop, 0);
Roger Quadrosad63ebfc2013-03-12 13:24:23 +0200101
Roger Quadros2319fb82013-03-12 13:24:21 +0200102 return 0;
103}
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200104EXPORT_SYMBOL_GPL(usb_gen_phy_init);
Roger Quadros2319fb82013-03-12 13:24:21 +0200105
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200106void usb_gen_phy_shutdown(struct usb_phy *phy)
Roger Quadros2319fb82013-03-12 13:24:21 +0200107{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200108 struct usb_phy_gen_xceiv *nop = dev_get_drvdata(phy->dev);
Roger Quadros2319fb82013-03-12 13:24:21 +0200109
Roger Quadrosbd27fa42013-09-24 11:53:48 +0300110 /* Assert RESET */
111 nop_reset_set(nop, 1);
Roger Quadrosad63ebfc2013-03-12 13:24:23 +0200112
Roger Quadros2319fb82013-03-12 13:24:21 +0200113 if (!IS_ERR(nop->clk))
Mark Brown4d175f32013-08-11 15:26:04 +0100114 clk_disable_unprepare(nop->clk);
Roger Quadros58f735f2013-03-12 13:24:22 +0200115
116 if (!IS_ERR(nop->vcc)) {
117 if (regulator_disable(nop->vcc))
118 dev_err(phy->dev, "Failed to disable power\n");
119 }
Roger Quadros2319fb82013-03-12 13:24:21 +0200120}
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200121EXPORT_SYMBOL_GPL(usb_gen_phy_shutdown);
Roger Quadros2319fb82013-03-12 13:24:21 +0200122
Heikki Krogerus41adf102012-02-13 13:24:10 +0200123static int nop_set_peripheral(struct usb_otg *otg, struct usb_gadget *gadget)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530124{
Heikki Krogerus41adf102012-02-13 13:24:10 +0200125 if (!otg)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530126 return -ENODEV;
127
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530128 if (!gadget) {
Heikki Krogerus41adf102012-02-13 13:24:10 +0200129 otg->gadget = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530130 return -ENODEV;
131 }
132
Heikki Krogerus41adf102012-02-13 13:24:10 +0200133 otg->gadget = gadget;
134 otg->phy->state = OTG_STATE_B_IDLE;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530135 return 0;
136}
137
Heikki Krogerus41adf102012-02-13 13:24:10 +0200138static int nop_set_host(struct usb_otg *otg, struct usb_bus *host)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530139{
Heikki Krogerus41adf102012-02-13 13:24:10 +0200140 if (!otg)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530141 return -ENODEV;
142
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530143 if (!host) {
Heikki Krogerus41adf102012-02-13 13:24:10 +0200144 otg->host = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530145 return -ENODEV;
146 }
147
Heikki Krogerus41adf102012-02-13 13:24:10 +0200148 otg->host = host;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530149 return 0;
150}
151
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200152int usb_phy_gen_create_phy(struct device *dev, struct usb_phy_gen_xceiv *nop,
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500153 struct usb_phy_gen_xceiv_platform_data *pdata)
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200154{
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500155 enum usb_phy_type type = USB_PHY_TYPE_USB2;
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200156 int err;
157
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500158 u32 clk_rate = 0;
159 bool needs_vcc = false;
160
161 nop->reset_active_low = true; /* default behaviour */
162
163 if (dev->of_node) {
164 struct device_node *node = dev->of_node;
Heikki Krogerus37cfbc42013-11-15 10:35:12 +0200165 enum of_gpio_flags flags = 0;
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500166
167 if (of_property_read_u32(node, "clock-frequency", &clk_rate))
168 clk_rate = 0;
169
170 needs_vcc = of_property_read_bool(node, "vcc-supply");
171 nop->gpio_reset = of_get_named_gpio_flags(node, "reset-gpios",
172 0, &flags);
173 if (nop->gpio_reset == -EPROBE_DEFER)
174 return -EPROBE_DEFER;
175
176 nop->reset_active_low = flags & OF_GPIO_ACTIVE_LOW;
177
178 } else if (pdata) {
179 type = pdata->type;
180 clk_rate = pdata->clk_rate;
181 needs_vcc = pdata->needs_vcc;
182 nop->gpio_reset = pdata->gpio_reset;
Aaro Koskinendc52c572013-11-15 21:38:50 +0200183 } else {
184 nop->gpio_reset = -1;
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500185 }
186
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200187 nop->phy.otg = devm_kzalloc(dev, sizeof(*nop->phy.otg),
188 GFP_KERNEL);
189 if (!nop->phy.otg)
190 return -ENOMEM;
191
192 nop->clk = devm_clk_get(dev, "main_clk");
193 if (IS_ERR(nop->clk)) {
194 dev_dbg(dev, "Can't get phy clock: %ld\n",
195 PTR_ERR(nop->clk));
196 }
197
198 if (!IS_ERR(nop->clk) && clk_rate) {
199 err = clk_set_rate(nop->clk, clk_rate);
200 if (err) {
201 dev_err(dev, "Error setting clock rate\n");
202 return err;
203 }
204 }
205
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200206 nop->vcc = devm_regulator_get(dev, "vcc");
207 if (IS_ERR(nop->vcc)) {
208 dev_dbg(dev, "Error getting vcc regulator: %ld\n",
209 PTR_ERR(nop->vcc));
210 if (needs_vcc)
211 return -EPROBE_DEFER;
212 }
213
Roger Quadrosbd27fa42013-09-24 11:53:48 +0300214 if (gpio_is_valid(nop->gpio_reset)) {
215 unsigned long gpio_flags;
216
217 /* Assert RESET */
218 if (nop->reset_active_low)
219 gpio_flags = GPIOF_OUT_INIT_LOW;
220 else
221 gpio_flags = GPIOF_OUT_INIT_HIGH;
222
223 err = devm_gpio_request_one(dev, nop->gpio_reset,
224 gpio_flags, dev_name(dev));
225 if (err) {
226 dev_err(dev, "Error requesting RESET GPIO %d\n",
227 nop->gpio_reset);
228 return err;
229 }
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200230 }
231
232 nop->dev = dev;
233 nop->phy.dev = nop->dev;
234 nop->phy.label = "nop-xceiv";
235 nop->phy.set_suspend = nop_set_suspend;
236 nop->phy.state = OTG_STATE_UNDEFINED;
237 nop->phy.type = type;
238
239 nop->phy.otg->phy = &nop->phy;
240 nop->phy.otg->set_host = nop_set_host;
241 nop->phy.otg->set_peripheral = nop_set_peripheral;
242
243 ATOMIC_INIT_NOTIFIER_HEAD(&nop->phy.notifier);
244 return 0;
245}
246EXPORT_SYMBOL_GPL(usb_phy_gen_create_phy);
247
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200248static int usb_phy_gen_xceiv_probe(struct platform_device *pdev)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530249{
Roger Quadros0eba3872013-03-12 13:24:25 +0200250 struct device *dev = &pdev->dev;
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200251 struct usb_phy_gen_xceiv *nop;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530252 int err;
Felipe Balbic84d3642012-07-19 13:38:06 +0300253
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200254 nop = devm_kzalloc(dev, sizeof(*nop), GFP_KERNEL);
255 if (!nop)
256 return -ENOMEM;
Roger Quadros2319fb82013-03-12 13:24:21 +0200257
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500258 err = usb_phy_gen_create_phy(dev, nop, dev_get_platdata(&pdev->dev));
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200259 if (err)
260 return err;
Roger Quadros2319fb82013-03-12 13:24:21 +0200261
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200262 nop->phy.init = usb_gen_phy_init;
263 nop->phy.shutdown = usb_gen_phy_shutdown;
Heikki Krogerus41adf102012-02-13 13:24:10 +0200264
Roger Quadros90f42322013-03-12 13:24:24 +0200265 err = usb_add_phy_dev(&nop->phy);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530266 if (err) {
267 dev_err(&pdev->dev, "can't register transceiver, err: %d\n",
268 err);
Mark Brown4d175f32013-08-11 15:26:04 +0100269 return err;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530270 }
271
272 platform_set_drvdata(pdev, nop);
273
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530274 return 0;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530275}
276
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200277static int usb_phy_gen_xceiv_remove(struct platform_device *pdev)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530278{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200279 struct usb_phy_gen_xceiv *nop = platform_get_drvdata(pdev);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530280
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530281 usb_remove_phy(&nop->phy);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530282
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530283 return 0;
284}
285
Roger Quadros0eba3872013-03-12 13:24:25 +0200286static const struct of_device_id nop_xceiv_dt_ids[] = {
287 { .compatible = "usb-nop-xceiv" },
288 { }
289};
290
291MODULE_DEVICE_TABLE(of, nop_xceiv_dt_ids);
292
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200293static struct platform_driver usb_phy_gen_xceiv_driver = {
294 .probe = usb_phy_gen_xceiv_probe,
295 .remove = usb_phy_gen_xceiv_remove,
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530296 .driver = {
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200297 .name = "usb_phy_gen_xceiv",
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530298 .owner = THIS_MODULE,
Sachin Kamat5462b0d2013-05-21 17:17:22 +0530299 .of_match_table = nop_xceiv_dt_ids,
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530300 },
301};
302
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200303static int __init usb_phy_gen_xceiv_init(void)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530304{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200305 return platform_driver_register(&usb_phy_gen_xceiv_driver);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530306}
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200307subsys_initcall(usb_phy_gen_xceiv_init);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530308
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200309static void __exit usb_phy_gen_xceiv_exit(void)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530310{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200311 platform_driver_unregister(&usb_phy_gen_xceiv_driver);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530312}
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200313module_exit(usb_phy_gen_xceiv_exit);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530314
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200315MODULE_ALIAS("platform:usb_phy_gen_xceiv");
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530316MODULE_AUTHOR("Texas Instruments Inc");
317MODULE_DESCRIPTION("NOP USB Transceiver driver");
318MODULE_LICENSE("GPL");