wl1251: move module probe methods into spi.c
[linux-2.6/btrfs-unstable.git] / drivers / staging / usbip / stub_main.c
blob05e4c6064390ce226d5d74dccde64b403564335f
1 /*
2 * Copyright (C) 2003-2008 Takahiro Hirofuchi
4 * This is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17 * USA.
21 #include "usbip_common.h"
22 #include "stub.h"
24 /* Version Information */
25 #define DRIVER_VERSION "1.0"
26 #define DRIVER_AUTHOR "Takahiro Hirofuchi"
27 #define DRIVER_DESC "Stub Driver for USB/IP"
29 /* stub_priv is allocated from stub_priv_cache */
30 struct kmem_cache *stub_priv_cache;
32 /*-------------------------------------------------------------------------*/
34 /* Define sysfs entries for the usbip driver */
38 * busid_tables defines matching busids that usbip can grab. A user can change
39 * dynamically what device is locally used and what device is exported to a
40 * remote host.
42 #define MAX_BUSID 16
43 #define BUSID_SIZE 20
44 static char busid_table[MAX_BUSID][BUSID_SIZE];
45 static spinlock_t busid_table_lock;
48 int match_busid(const char *busid)
50 int i;
52 spin_lock(&busid_table_lock);
54 for (i = 0; i < MAX_BUSID; i++)
55 if (busid_table[i][0])
56 if (!strncmp(busid_table[i], busid, BUSID_SIZE)) {
57 /* already registerd */
58 spin_unlock(&busid_table_lock);
59 return 0;
62 spin_unlock(&busid_table_lock);
64 return 1;
67 static ssize_t show_match_busid(struct device_driver *drv, char *buf)
69 int i;
70 char *out = buf;
72 spin_lock(&busid_table_lock);
74 for (i = 0; i < MAX_BUSID; i++)
75 if (busid_table[i][0])
76 out += sprintf(out, "%s ", busid_table[i]);
78 spin_unlock(&busid_table_lock);
80 out += sprintf(out, "\n");
82 return out - buf;
85 static int add_match_busid(char *busid)
87 int i;
89 if (!match_busid(busid))
90 return 0;
92 spin_lock(&busid_table_lock);
94 for (i = 0; i < MAX_BUSID; i++)
95 if (!busid_table[i][0]) {
96 strncpy(busid_table[i], busid, BUSID_SIZE);
97 spin_unlock(&busid_table_lock);
98 return 0;
101 spin_unlock(&busid_table_lock);
103 return -1;
106 static int del_match_busid(char *busid)
108 int i;
110 spin_lock(&busid_table_lock);
112 for (i = 0; i < MAX_BUSID; i++)
113 if (!strncmp(busid_table[i], busid, BUSID_SIZE)) {
114 /* found */
115 memset(busid_table[i], 0, BUSID_SIZE);
116 spin_unlock(&busid_table_lock);
117 return 0;
120 spin_unlock(&busid_table_lock);
122 return -1;
125 static ssize_t store_match_busid(struct device_driver *dev, const char *buf,
126 size_t count)
128 int len;
129 char busid[BUSID_SIZE];
131 if (count < 5)
132 return -EINVAL;
134 /* strnlen() does not include \0 */
135 len = strnlen(buf + 4, BUSID_SIZE);
137 /* busid needs to include \0 termination */
138 if (!(len < BUSID_SIZE))
139 return -EINVAL;
141 strncpy(busid, buf + 4, BUSID_SIZE);
144 if (!strncmp(buf, "add ", 4)) {
145 if (add_match_busid(busid) < 0)
146 return -ENOMEM;
147 else {
148 udbg("add busid %s\n", busid);
149 return count;
151 } else if (!strncmp(buf, "del ", 4)) {
152 if (del_match_busid(busid) < 0)
153 return -ENODEV;
154 else {
155 udbg("del busid %s\n", busid);
156 return count;
158 } else
159 return -EINVAL;
162 static DRIVER_ATTR(match_busid, S_IRUSR|S_IWUSR, show_match_busid,
163 store_match_busid);
167 /*-------------------------------------------------------------------------*/
169 /* Cleanup functions used to free private data */
171 static struct stub_priv *stub_priv_pop_from_listhead(struct list_head *listhead)
173 struct stub_priv *priv, *tmp;
175 list_for_each_entry_safe(priv, tmp, listhead, list) {
176 list_del(&priv->list);
177 return priv;
180 return NULL;
183 static struct stub_priv *stub_priv_pop(struct stub_device *sdev)
185 unsigned long flags;
186 struct stub_priv *priv;
188 spin_lock_irqsave(&sdev->priv_lock, flags);
190 priv = stub_priv_pop_from_listhead(&sdev->priv_init);
191 if (priv) {
192 spin_unlock_irqrestore(&sdev->priv_lock, flags);
193 return priv;
196 priv = stub_priv_pop_from_listhead(&sdev->priv_tx);
197 if (priv) {
198 spin_unlock_irqrestore(&sdev->priv_lock, flags);
199 return priv;
202 priv = stub_priv_pop_from_listhead(&sdev->priv_free);
203 if (priv) {
204 spin_unlock_irqrestore(&sdev->priv_lock, flags);
205 return priv;
208 spin_unlock_irqrestore(&sdev->priv_lock, flags);
209 return NULL;
212 void stub_device_cleanup_urbs(struct stub_device *sdev)
214 struct stub_priv *priv;
216 udbg("free sdev %p\n", sdev);
218 while ((priv = stub_priv_pop(sdev))) {
219 struct urb *urb = priv->urb;
221 udbg(" free urb %p\n", urb);
222 usb_kill_urb(urb);
224 kmem_cache_free(stub_priv_cache, priv);
226 if (urb->transfer_buffer != NULL)
227 kfree(urb->transfer_buffer);
229 if (urb->setup_packet != NULL)
230 kfree(urb->setup_packet);
232 usb_free_urb(urb);
237 /*-------------------------------------------------------------------------*/
239 static int __init usb_stub_init(void)
241 int ret;
243 stub_priv_cache = kmem_cache_create("stub_priv",
244 sizeof(struct stub_priv), 0,
245 SLAB_HWCACHE_ALIGN, NULL);
247 if (!stub_priv_cache) {
248 printk(KERN_ERR KBUILD_MODNAME
249 ": create stub_priv_cache error\n");
250 return -ENOMEM;
253 ret = usb_register(&stub_driver);
254 if (ret) {
255 printk(KERN_ERR KBUILD_MODNAME ": usb_register failed %d\n",
256 ret);
257 goto error_usb_register;
260 printk(KERN_INFO KBUILD_MODNAME ":"
261 DRIVER_DESC ":" DRIVER_VERSION "\n");
263 memset(busid_table, 0, sizeof(busid_table));
264 spin_lock_init(&busid_table_lock);
266 ret = driver_create_file(&stub_driver.drvwrap.driver,
267 &driver_attr_match_busid);
269 if (ret) {
270 printk(KERN_ERR KBUILD_MODNAME ": create driver sysfs\n");
271 goto error_create_file;
274 return ret;
275 error_create_file:
276 usb_deregister(&stub_driver);
277 error_usb_register:
278 kmem_cache_destroy(stub_priv_cache);
279 return ret;
282 static void __exit usb_stub_exit(void)
284 driver_remove_file(&stub_driver.drvwrap.driver,
285 &driver_attr_match_busid);
288 * deregister() calls stub_disconnect() for all devices. Device
289 * specific data is cleared in stub_disconnect().
291 usb_deregister(&stub_driver);
293 kmem_cache_destroy(stub_priv_cache);
296 module_init(usb_stub_init);
297 module_exit(usb_stub_exit);
299 MODULE_AUTHOR(DRIVER_AUTHOR);
300 MODULE_DESCRIPTION(DRIVER_DESC);
301 MODULE_LICENSE("GPL");