blob: 0c3b24124063869b6e9ecfda202981f8cb651ce1 [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;
165 enum of_gpio_flags flags;
166
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;
183 }
184
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200185 nop->phy.otg = devm_kzalloc(dev, sizeof(*nop->phy.otg),
186 GFP_KERNEL);
187 if (!nop->phy.otg)
188 return -ENOMEM;
189
190 nop->clk = devm_clk_get(dev, "main_clk");
191 if (IS_ERR(nop->clk)) {
192 dev_dbg(dev, "Can't get phy clock: %ld\n",
193 PTR_ERR(nop->clk));
194 }
195
196 if (!IS_ERR(nop->clk) && clk_rate) {
197 err = clk_set_rate(nop->clk, clk_rate);
198 if (err) {
199 dev_err(dev, "Error setting clock rate\n");
200 return err;
201 }
202 }
203
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200204 nop->vcc = devm_regulator_get(dev, "vcc");
205 if (IS_ERR(nop->vcc)) {
206 dev_dbg(dev, "Error getting vcc regulator: %ld\n",
207 PTR_ERR(nop->vcc));
208 if (needs_vcc)
209 return -EPROBE_DEFER;
210 }
211
Roger Quadrosbd27fa42013-09-24 11:53:48 +0300212 if (gpio_is_valid(nop->gpio_reset)) {
213 unsigned long gpio_flags;
214
215 /* Assert RESET */
216 if (nop->reset_active_low)
217 gpio_flags = GPIOF_OUT_INIT_LOW;
218 else
219 gpio_flags = GPIOF_OUT_INIT_HIGH;
220
221 err = devm_gpio_request_one(dev, nop->gpio_reset,
222 gpio_flags, dev_name(dev));
223 if (err) {
224 dev_err(dev, "Error requesting RESET GPIO %d\n",
225 nop->gpio_reset);
226 return err;
227 }
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200228 }
229
230 nop->dev = dev;
231 nop->phy.dev = nop->dev;
232 nop->phy.label = "nop-xceiv";
233 nop->phy.set_suspend = nop_set_suspend;
234 nop->phy.state = OTG_STATE_UNDEFINED;
235 nop->phy.type = type;
236
237 nop->phy.otg->phy = &nop->phy;
238 nop->phy.otg->set_host = nop_set_host;
239 nop->phy.otg->set_peripheral = nop_set_peripheral;
240
241 ATOMIC_INIT_NOTIFIER_HEAD(&nop->phy.notifier);
242 return 0;
243}
244EXPORT_SYMBOL_GPL(usb_phy_gen_create_phy);
245
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200246static int usb_phy_gen_xceiv_probe(struct platform_device *pdev)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530247{
Roger Quadros0eba3872013-03-12 13:24:25 +0200248 struct device *dev = &pdev->dev;
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200249 struct usb_phy_gen_xceiv *nop;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530250 int err;
Felipe Balbic84d3642012-07-19 13:38:06 +0300251
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200252 nop = devm_kzalloc(dev, sizeof(*nop), GFP_KERNEL);
253 if (!nop)
254 return -ENOMEM;
Roger Quadros2319fb82013-03-12 13:24:21 +0200255
Felipe Balbiaf9f51c2013-10-24 09:45:29 -0500256 err = usb_phy_gen_create_phy(dev, nop, dev_get_platdata(&pdev->dev));
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200257 if (err)
258 return err;
Roger Quadros2319fb82013-03-12 13:24:21 +0200259
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200260 nop->phy.init = usb_gen_phy_init;
261 nop->phy.shutdown = usb_gen_phy_shutdown;
Heikki Krogerus41adf102012-02-13 13:24:10 +0200262
Roger Quadros90f42322013-03-12 13:24:24 +0200263 err = usb_add_phy_dev(&nop->phy);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530264 if (err) {
265 dev_err(&pdev->dev, "can't register transceiver, err: %d\n",
266 err);
Mark Brown4d175f32013-08-11 15:26:04 +0100267 return err;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530268 }
269
270 platform_set_drvdata(pdev, nop);
271
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530272 return 0;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530273}
274
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200275static int usb_phy_gen_xceiv_remove(struct platform_device *pdev)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530276{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200277 struct usb_phy_gen_xceiv *nop = platform_get_drvdata(pdev);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530278
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530279 usb_remove_phy(&nop->phy);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530280
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530281 return 0;
282}
283
Roger Quadros0eba3872013-03-12 13:24:25 +0200284static const struct of_device_id nop_xceiv_dt_ids[] = {
285 { .compatible = "usb-nop-xceiv" },
286 { }
287};
288
289MODULE_DEVICE_TABLE(of, nop_xceiv_dt_ids);
290
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200291static struct platform_driver usb_phy_gen_xceiv_driver = {
292 .probe = usb_phy_gen_xceiv_probe,
293 .remove = usb_phy_gen_xceiv_remove,
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530294 .driver = {
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200295 .name = "usb_phy_gen_xceiv",
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530296 .owner = THIS_MODULE,
Sachin Kamat5462b0d2013-05-21 17:17:22 +0530297 .of_match_table = nop_xceiv_dt_ids,
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530298 },
299};
300
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200301static int __init usb_phy_gen_xceiv_init(void)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530302{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200303 return platform_driver_register(&usb_phy_gen_xceiv_driver);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530304}
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200305subsys_initcall(usb_phy_gen_xceiv_init);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530306
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200307static void __exit usb_phy_gen_xceiv_exit(void)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530308{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200309 platform_driver_unregister(&usb_phy_gen_xceiv_driver);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530310}
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200311module_exit(usb_phy_gen_xceiv_exit);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530312
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200313MODULE_ALIAS("platform:usb_phy_gen_xceiv");
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530314MODULE_AUTHOR("Texas Instruments Inc");
315MODULE_DESCRIPTION("NOP USB Transceiver driver");
316MODULE_LICENSE("GPL");