blob: efe59f3f7fdae946f1d6b5c76b9e6f21a0143be1 [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>
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053038
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +020039#include "phy-generic.h"
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053040
David Brownellcc835e32009-03-31 12:28:31 -070041static struct platform_device *pd;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053042
43void usb_nop_xceiv_register(void)
44{
David Brownellcc835e32009-03-31 12:28:31 -070045 if (pd)
46 return;
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020047 pd = platform_device_register_simple("usb_phy_gen_xceiv", -1, NULL, 0);
David Brownellcc835e32009-03-31 12:28:31 -070048 if (!pd) {
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020049 pr_err("Unable to register generic usb transceiver\n");
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053050 return;
51 }
52}
David Brownellcc835e32009-03-31 12:28:31 -070053EXPORT_SYMBOL(usb_nop_xceiv_register);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053054
55void usb_nop_xceiv_unregister(void)
56{
David Brownellcc835e32009-03-31 12:28:31 -070057 platform_device_unregister(pd);
Ajay Kumar Guptadc7520c2009-07-03 13:18:45 +053058 pd = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053059}
David Brownellcc835e32009-03-31 12:28:31 -070060EXPORT_SYMBOL(usb_nop_xceiv_unregister);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053061
Heikki Krogerus86753812012-02-13 13:24:02 +020062static int nop_set_suspend(struct usb_phy *x, int suspend)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +053063{
64 return 0;
65}
66
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +020067int usb_gen_phy_init(struct usb_phy *phy)
Roger Quadros2319fb82013-03-12 13:24:21 +020068{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020069 struct usb_phy_gen_xceiv *nop = dev_get_drvdata(phy->dev);
Roger Quadros2319fb82013-03-12 13:24:21 +020070
Roger Quadros58f735f2013-03-12 13:24:22 +020071 if (!IS_ERR(nop->vcc)) {
72 if (regulator_enable(nop->vcc))
73 dev_err(phy->dev, "Failed to enable power\n");
74 }
75
Roger Quadros2319fb82013-03-12 13:24:21 +020076 if (!IS_ERR(nop->clk))
77 clk_enable(nop->clk);
78
Roger Quadrosad63ebfc2013-03-12 13:24:23 +020079 if (!IS_ERR(nop->reset)) {
80 /* De-assert RESET */
81 if (regulator_enable(nop->reset))
82 dev_err(phy->dev, "Failed to de-assert reset\n");
83 }
84
Roger Quadros2319fb82013-03-12 13:24:21 +020085 return 0;
86}
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +020087EXPORT_SYMBOL_GPL(usb_gen_phy_init);
Roger Quadros2319fb82013-03-12 13:24:21 +020088
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +020089void usb_gen_phy_shutdown(struct usb_phy *phy)
Roger Quadros2319fb82013-03-12 13:24:21 +020090{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +020091 struct usb_phy_gen_xceiv *nop = dev_get_drvdata(phy->dev);
Roger Quadros2319fb82013-03-12 13:24:21 +020092
Roger Quadrosad63ebfc2013-03-12 13:24:23 +020093 if (!IS_ERR(nop->reset)) {
94 /* Assert RESET */
95 if (regulator_disable(nop->reset))
96 dev_err(phy->dev, "Failed to assert reset\n");
97 }
98
Roger Quadros2319fb82013-03-12 13:24:21 +020099 if (!IS_ERR(nop->clk))
100 clk_disable(nop->clk);
Roger Quadros58f735f2013-03-12 13:24:22 +0200101
102 if (!IS_ERR(nop->vcc)) {
103 if (regulator_disable(nop->vcc))
104 dev_err(phy->dev, "Failed to disable power\n");
105 }
Roger Quadros2319fb82013-03-12 13:24:21 +0200106}
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200107EXPORT_SYMBOL_GPL(usb_gen_phy_shutdown);
Roger Quadros2319fb82013-03-12 13:24:21 +0200108
Heikki Krogerus41adf102012-02-13 13:24:10 +0200109static int nop_set_peripheral(struct usb_otg *otg, struct usb_gadget *gadget)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530110{
Heikki Krogerus41adf102012-02-13 13:24:10 +0200111 if (!otg)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530112 return -ENODEV;
113
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530114 if (!gadget) {
Heikki Krogerus41adf102012-02-13 13:24:10 +0200115 otg->gadget = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530116 return -ENODEV;
117 }
118
Heikki Krogerus41adf102012-02-13 13:24:10 +0200119 otg->gadget = gadget;
120 otg->phy->state = OTG_STATE_B_IDLE;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530121 return 0;
122}
123
Heikki Krogerus41adf102012-02-13 13:24:10 +0200124static int nop_set_host(struct usb_otg *otg, struct usb_bus *host)
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 (!host) {
Heikki Krogerus41adf102012-02-13 13:24:10 +0200130 otg->host = NULL;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530131 return -ENODEV;
132 }
133
Heikki Krogerus41adf102012-02-13 13:24:10 +0200134 otg->host = host;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530135 return 0;
136}
137
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200138int usb_phy_gen_create_phy(struct device *dev, struct usb_phy_gen_xceiv *nop,
139 enum usb_phy_type type, u32 clk_rate, bool needs_vcc,
140 bool needs_reset)
141{
142 int err;
143
144 nop->phy.otg = devm_kzalloc(dev, sizeof(*nop->phy.otg),
145 GFP_KERNEL);
146 if (!nop->phy.otg)
147 return -ENOMEM;
148
149 nop->clk = devm_clk_get(dev, "main_clk");
150 if (IS_ERR(nop->clk)) {
151 dev_dbg(dev, "Can't get phy clock: %ld\n",
152 PTR_ERR(nop->clk));
153 }
154
155 if (!IS_ERR(nop->clk) && clk_rate) {
156 err = clk_set_rate(nop->clk, clk_rate);
157 if (err) {
158 dev_err(dev, "Error setting clock rate\n");
159 return err;
160 }
161 }
162
163 if (!IS_ERR(nop->clk)) {
164 err = clk_prepare(nop->clk);
165 if (err) {
166 dev_err(dev, "Error preparing clock\n");
167 return err;
168 }
169 }
170
171 nop->vcc = devm_regulator_get(dev, "vcc");
172 if (IS_ERR(nop->vcc)) {
173 dev_dbg(dev, "Error getting vcc regulator: %ld\n",
174 PTR_ERR(nop->vcc));
175 if (needs_vcc)
176 return -EPROBE_DEFER;
177 }
178
179 nop->reset = devm_regulator_get(dev, "reset");
180 if (IS_ERR(nop->reset)) {
181 dev_dbg(dev, "Error getting reset regulator: %ld\n",
182 PTR_ERR(nop->reset));
183 if (needs_reset)
184 return -EPROBE_DEFER;
185 }
186
187 nop->dev = dev;
188 nop->phy.dev = nop->dev;
189 nop->phy.label = "nop-xceiv";
190 nop->phy.set_suspend = nop_set_suspend;
191 nop->phy.state = OTG_STATE_UNDEFINED;
192 nop->phy.type = type;
193
194 nop->phy.otg->phy = &nop->phy;
195 nop->phy.otg->set_host = nop_set_host;
196 nop->phy.otg->set_peripheral = nop_set_peripheral;
197
198 ATOMIC_INIT_NOTIFIER_HEAD(&nop->phy.notifier);
199 return 0;
200}
201EXPORT_SYMBOL_GPL(usb_phy_gen_create_phy);
202
203void usb_phy_gen_cleanup_phy(struct usb_phy_gen_xceiv *nop)
204{
205 if (!IS_ERR(nop->clk))
206 clk_unprepare(nop->clk);
207}
208EXPORT_SYMBOL_GPL(usb_phy_gen_cleanup_phy);
209
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200210static int usb_phy_gen_xceiv_probe(struct platform_device *pdev)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530211{
Roger Quadros0eba3872013-03-12 13:24:25 +0200212 struct device *dev = &pdev->dev;
Felipe Balbi9e5f9c82013-08-09 17:31:23 +0300213 struct usb_phy_gen_xceiv_platform_data *pdata =
Jingoo Han19f9e182013-07-30 17:02:13 +0900214 dev_get_platdata(&pdev->dev);
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200215 struct usb_phy_gen_xceiv *nop;
Felipe Balbic84d3642012-07-19 13:38:06 +0300216 enum usb_phy_type type = USB_PHY_TYPE_USB2;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530217 int err;
Roger Quadros0eba3872013-03-12 13:24:25 +0200218 u32 clk_rate = 0;
Roger Quadrosb54b5f52013-03-12 13:24:26 +0200219 bool needs_vcc = false;
220 bool needs_reset = false;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530221
Roger Quadros0eba3872013-03-12 13:24:25 +0200222 if (dev->of_node) {
223 struct device_node *node = dev->of_node;
224
225 if (of_property_read_u32(node, "clock-frequency", &clk_rate))
226 clk_rate = 0;
227
Roger Quadrosb54b5f52013-03-12 13:24:26 +0200228 needs_vcc = of_property_read_bool(node, "vcc-supply");
229 needs_reset = of_property_read_bool(node, "reset-supply");
230
Roger Quadros0eba3872013-03-12 13:24:25 +0200231 } else if (pdata) {
Felipe Balbic84d3642012-07-19 13:38:06 +0300232 type = pdata->type;
Roger Quadros0eba3872013-03-12 13:24:25 +0200233 clk_rate = pdata->clk_rate;
Roger Quadrosb54b5f52013-03-12 13:24:26 +0200234 needs_vcc = pdata->needs_vcc;
235 needs_reset = pdata->needs_reset;
Roger Quadros0eba3872013-03-12 13:24:25 +0200236 }
Felipe Balbic84d3642012-07-19 13:38:06 +0300237
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200238 nop = devm_kzalloc(dev, sizeof(*nop), GFP_KERNEL);
239 if (!nop)
240 return -ENOMEM;
Roger Quadros2319fb82013-03-12 13:24:21 +0200241
Roger Quadros2319fb82013-03-12 13:24:21 +0200242
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200243 err = usb_phy_gen_create_phy(dev, nop, type, clk_rate, needs_vcc,
244 needs_reset);
245 if (err)
246 return err;
Roger Quadros2319fb82013-03-12 13:24:21 +0200247
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200248 nop->phy.init = usb_gen_phy_init;
249 nop->phy.shutdown = usb_gen_phy_shutdown;
Heikki Krogerus41adf102012-02-13 13:24:10 +0200250
Roger Quadros90f42322013-03-12 13:24:24 +0200251 err = usb_add_phy_dev(&nop->phy);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530252 if (err) {
253 dev_err(&pdev->dev, "can't register transceiver, err: %d\n",
254 err);
Roger Quadros2319fb82013-03-12 13:24:21 +0200255 goto err_add;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530256 }
257
258 platform_set_drvdata(pdev, nop);
259
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530260 return 0;
Roger Quadros2319fb82013-03-12 13:24:21 +0200261
262err_add:
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200263 usb_phy_gen_cleanup_phy(nop);
Roger Quadros2319fb82013-03-12 13:24:21 +0200264 return err;
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530265}
266
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200267static int usb_phy_gen_xceiv_remove(struct platform_device *pdev)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530268{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200269 struct usb_phy_gen_xceiv *nop = platform_get_drvdata(pdev);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530270
Sebastian Andrzej Siewior53b6fc22013-07-30 17:20:06 +0200271 usb_phy_gen_cleanup_phy(nop);
Kishon Vijay Abraham I662dca52012-06-22 17:02:46 +0530272 usb_remove_phy(&nop->phy);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530273
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530274 return 0;
275}
276
Roger Quadros0eba3872013-03-12 13:24:25 +0200277static const struct of_device_id nop_xceiv_dt_ids[] = {
278 { .compatible = "usb-nop-xceiv" },
279 { }
280};
281
282MODULE_DEVICE_TABLE(of, nop_xceiv_dt_ids);
283
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200284static struct platform_driver usb_phy_gen_xceiv_driver = {
285 .probe = usb_phy_gen_xceiv_probe,
286 .remove = usb_phy_gen_xceiv_remove,
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530287 .driver = {
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200288 .name = "usb_phy_gen_xceiv",
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530289 .owner = THIS_MODULE,
Sachin Kamat5462b0d2013-05-21 17:17:22 +0530290 .of_match_table = nop_xceiv_dt_ids,
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530291 },
292};
293
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200294static int __init usb_phy_gen_xceiv_init(void)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530295{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200296 return platform_driver_register(&usb_phy_gen_xceiv_driver);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530297}
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200298subsys_initcall(usb_phy_gen_xceiv_init);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530299
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200300static void __exit usb_phy_gen_xceiv_exit(void)
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530301{
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200302 platform_driver_unregister(&usb_phy_gen_xceiv_driver);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530303}
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200304module_exit(usb_phy_gen_xceiv_exit);
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530305
Sebastian Andrzej Siewior3fa4d732013-07-26 12:16:42 +0200306MODULE_ALIAS("platform:usb_phy_gen_xceiv");
Ajay Kumar Guptaf6d92a02009-02-06 17:32:35 +0530307MODULE_AUTHOR("Texas Instruments Inc");
308MODULE_DESCRIPTION("NOP USB Transceiver driver");
309MODULE_LICENSE("GPL");