brcmfmac: remove use of unconditional access of struct wireless_dev::netdev
[deliverable/linux.git] / drivers / usb / otg / nop-usb-xceiv.c
CommitLineData
f6d92a05
AKG
1/*
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:
cc835e32
DB
25 * This provides a "nop" transceiver for PHYs which are
26 * autonomous such as isp1504, isp1707, etc.
f6d92a05
AKG
27 */
28
29#include <linux/module.h>
30#include <linux/platform_device.h>
31#include <linux/dma-mapping.h>
32#include <linux/usb/otg.h>
78c289f8 33#include <linux/usb/nop-usb-xceiv.h>
5a0e3ad6 34#include <linux/slab.h>
f6d92a05
AKG
35
36struct nop_usb_xceiv {
41adf109 37 struct usb_phy phy;
f6d92a05
AKG
38 struct device *dev;
39};
40
cc835e32 41static struct platform_device *pd;
f6d92a05
AKG
42
43void usb_nop_xceiv_register(void)
44{
cc835e32
DB
45 if (pd)
46 return;
47 pd = platform_device_register_simple("nop_usb_xceiv", -1, NULL, 0);
48 if (!pd) {
f6d92a05
AKG
49 printk(KERN_ERR "Unable to register usb nop transceiver\n");
50 return;
51 }
52}
cc835e32 53EXPORT_SYMBOL(usb_nop_xceiv_register);
f6d92a05
AKG
54
55void usb_nop_xceiv_unregister(void)
56{
cc835e32 57 platform_device_unregister(pd);
dc7520c1 58 pd = NULL;
f6d92a05 59}
cc835e32 60EXPORT_SYMBOL(usb_nop_xceiv_unregister);
f6d92a05 61
86753811 62static int nop_set_suspend(struct usb_phy *x, int suspend)
f6d92a05
AKG
63{
64 return 0;
65}
66
41adf109 67static int nop_set_peripheral(struct usb_otg *otg, struct usb_gadget *gadget)
f6d92a05 68{
41adf109 69 if (!otg)
f6d92a05
AKG
70 return -ENODEV;
71
f6d92a05 72 if (!gadget) {
41adf109 73 otg->gadget = NULL;
f6d92a05
AKG
74 return -ENODEV;
75 }
76
41adf109
HK
77 otg->gadget = gadget;
78 otg->phy->state = OTG_STATE_B_IDLE;
f6d92a05
AKG
79 return 0;
80}
81
41adf109 82static int nop_set_host(struct usb_otg *otg, struct usb_bus *host)
f6d92a05 83{
41adf109 84 if (!otg)
f6d92a05
AKG
85 return -ENODEV;
86
f6d92a05 87 if (!host) {
41adf109 88 otg->host = NULL;
f6d92a05
AKG
89 return -ENODEV;
90 }
91
41adf109 92 otg->host = host;
f6d92a05
AKG
93 return 0;
94}
95
41ac7b3a 96static int nop_usb_xceiv_probe(struct platform_device *pdev)
f6d92a05 97{
c84d364f 98 struct nop_usb_xceiv_platform_data *pdata = pdev->dev.platform_data;
f6d92a05 99 struct nop_usb_xceiv *nop;
c84d364f 100 enum usb_phy_type type = USB_PHY_TYPE_USB2;
f6d92a05
AKG
101 int err;
102
103 nop = kzalloc(sizeof *nop, GFP_KERNEL);
104 if (!nop)
105 return -ENOMEM;
106
41adf109
HK
107 nop->phy.otg = kzalloc(sizeof *nop->phy.otg, GFP_KERNEL);
108 if (!nop->phy.otg) {
109 kfree(nop);
110 return -ENOMEM;
111 }
112
c84d364f
FB
113 if (pdata)
114 type = pdata->type;
115
f6d92a05 116 nop->dev = &pdev->dev;
41adf109
HK
117 nop->phy.dev = nop->dev;
118 nop->phy.label = "nop-xceiv";
119 nop->phy.set_suspend = nop_set_suspend;
120 nop->phy.state = OTG_STATE_UNDEFINED;
121
122 nop->phy.otg->phy = &nop->phy;
123 nop->phy.otg->set_host = nop_set_host;
124 nop->phy.otg->set_peripheral = nop_set_peripheral;
125
c84d364f 126 err = usb_add_phy(&nop->phy, type);
f6d92a05
AKG
127 if (err) {
128 dev_err(&pdev->dev, "can't register transceiver, err: %d\n",
129 err);
130 goto exit;
131 }
132
133 platform_set_drvdata(pdev, nop);
134
41adf109 135 ATOMIC_INIT_NOTIFIER_HEAD(&nop->phy.notifier);
20831ad2 136
f6d92a05
AKG
137 return 0;
138exit:
41adf109 139 kfree(nop->phy.otg);
f6d92a05
AKG
140 kfree(nop);
141 return err;
142}
143
fb4e98ab 144static int nop_usb_xceiv_remove(struct platform_device *pdev)
f6d92a05
AKG
145{
146 struct nop_usb_xceiv *nop = platform_get_drvdata(pdev);
147
662dca54 148 usb_remove_phy(&nop->phy);
f6d92a05
AKG
149
150 platform_set_drvdata(pdev, NULL);
41adf109 151 kfree(nop->phy.otg);
f6d92a05
AKG
152 kfree(nop);
153
154 return 0;
155}
156
157static struct platform_driver nop_usb_xceiv_driver = {
158 .probe = nop_usb_xceiv_probe,
7690417d 159 .remove = nop_usb_xceiv_remove,
f6d92a05
AKG
160 .driver = {
161 .name = "nop_usb_xceiv",
162 .owner = THIS_MODULE,
163 },
164};
165
166static int __init nop_usb_xceiv_init(void)
167{
168 return platform_driver_register(&nop_usb_xceiv_driver);
169}
170subsys_initcall(nop_usb_xceiv_init);
171
172static void __exit nop_usb_xceiv_exit(void)
173{
174 platform_driver_unregister(&nop_usb_xceiv_driver);
175}
176module_exit(nop_usb_xceiv_exit);
177
178MODULE_ALIAS("platform:nop_usb_xceiv");
179MODULE_AUTHOR("Texas Instruments Inc");
180MODULE_DESCRIPTION("NOP USB Transceiver driver");
181MODULE_LICENSE("GPL");
This page took 0.312368 seconds and 5 git commands to generate.