drm/i915: Add a module option to override the use of SSC
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / staging / usbip / stub_dev.c
blobb186b5fed2b96b7973388cd337dfce6f5cafc66d
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.
20 #include <linux/slab.h>
22 #include "usbip_common.h"
23 #include "stub.h"
27 static int stub_probe(struct usb_interface *interface,
28 const struct usb_device_id *id);
29 static void stub_disconnect(struct usb_interface *interface);
33 * Define device IDs here if you want to explicitly limit exportable devices.
34 * In the most cases, wild card matching will be ok because driver binding can
35 * be changed dynamically by a userland program.
37 static struct usb_device_id stub_table[] = {
38 #if 0
39 /* just an example */
40 { USB_DEVICE(0x05ac, 0x0301) }, /* Mac 1 button mouse */
41 { USB_DEVICE(0x0430, 0x0009) }, /* Plat Home Keyboard */
42 { USB_DEVICE(0x059b, 0x0001) }, /* Iomega USB Zip 100 */
43 { USB_DEVICE(0x04b3, 0x4427) }, /* IBM USB CD-ROM */
44 { USB_DEVICE(0x05a9, 0xa511) }, /* LifeView USB cam */
45 { USB_DEVICE(0x55aa, 0x0201) }, /* Imation card reader */
46 { USB_DEVICE(0x046d, 0x0870) }, /* Qcam Express(QV-30) */
47 { USB_DEVICE(0x04bb, 0x0101) }, /* IO-DATA HD 120GB */
48 { USB_DEVICE(0x04bb, 0x0904) }, /* IO-DATA USB-ET/TX */
49 { USB_DEVICE(0x04bb, 0x0201) }, /* IO-DATA USB-ET/TX */
50 { USB_DEVICE(0x08bb, 0x2702) }, /* ONKYO USB Speaker */
51 { USB_DEVICE(0x046d, 0x08b2) }, /* Logicool Qcam 4000 Pro */
52 #endif
53 /* magic for wild card */
54 { .driver_info = 1 },
55 { 0, } /* Terminating entry */
57 MODULE_DEVICE_TABLE(usb, stub_table);
59 struct usb_driver stub_driver = {
60 .name = "usbip",
61 .probe = stub_probe,
62 .disconnect = stub_disconnect,
63 .id_table = stub_table,
67 /*-------------------------------------------------------------------------*/
69 /* Define sysfs entries for a usbip-bound device */
73 * usbip_status shows status of usbip as long as this driver is bound to the
74 * target device.
76 static ssize_t show_status(struct device *dev, struct device_attribute *attr,
77 char *buf)
79 struct stub_device *sdev = dev_get_drvdata(dev);
80 int status;
82 if (!sdev) {
83 dev_err(dev, "sdev is null\n");
84 return -ENODEV;
87 spin_lock(&sdev->ud.lock);
88 status = sdev->ud.status;
89 spin_unlock(&sdev->ud.lock);
91 return snprintf(buf, PAGE_SIZE, "%d\n", status);
93 static DEVICE_ATTR(usbip_status, S_IRUGO, show_status, NULL);
96 * usbip_sockfd gets a socket descriptor of an established TCP connection that
97 * is used to transfer usbip requests by kernel threads. -1 is a magic number
98 * by which usbip connection is finished.
100 static ssize_t store_sockfd(struct device *dev, struct device_attribute *attr,
101 const char *buf, size_t count)
103 struct stub_device *sdev = dev_get_drvdata(dev);
104 int sockfd = 0;
105 struct socket *socket;
107 if (!sdev) {
108 dev_err(dev, "sdev is null\n");
109 return -ENODEV;
112 sscanf(buf, "%d", &sockfd);
114 if (sockfd != -1) {
115 dev_info(dev, "stub up\n");
117 spin_lock(&sdev->ud.lock);
119 if (sdev->ud.status != SDEV_ST_AVAILABLE) {
120 dev_err(dev, "not ready\n");
121 spin_unlock(&sdev->ud.lock);
122 return -EINVAL;
125 socket = sockfd_to_socket(sockfd);
126 if (!socket) {
127 spin_unlock(&sdev->ud.lock);
128 return -EINVAL;
131 #if 0
132 setnodelay(socket);
133 setkeepalive(socket);
134 setreuse(socket);
135 #endif
137 sdev->ud.tcp_socket = socket;
139 spin_unlock(&sdev->ud.lock);
141 usbip_start_threads(&sdev->ud);
143 spin_lock(&sdev->ud.lock);
144 sdev->ud.status = SDEV_ST_USED;
145 spin_unlock(&sdev->ud.lock);
147 } else {
148 dev_info(dev, "stub down\n");
150 spin_lock(&sdev->ud.lock);
151 if (sdev->ud.status != SDEV_ST_USED) {
152 spin_unlock(&sdev->ud.lock);
153 return -EINVAL;
155 spin_unlock(&sdev->ud.lock);
157 usbip_event_add(&sdev->ud, SDEV_EVENT_DOWN);
160 return count;
162 static DEVICE_ATTR(usbip_sockfd, S_IWUSR, NULL, store_sockfd);
164 static int stub_add_files(struct device *dev)
166 int err = 0;
168 err = device_create_file(dev, &dev_attr_usbip_status);
169 if (err)
170 goto err_status;
172 err = device_create_file(dev, &dev_attr_usbip_sockfd);
173 if (err)
174 goto err_sockfd;
176 err = device_create_file(dev, &dev_attr_usbip_debug);
177 if (err)
178 goto err_debug;
180 return 0;
182 err_debug:
183 device_remove_file(dev, &dev_attr_usbip_sockfd);
185 err_sockfd:
186 device_remove_file(dev, &dev_attr_usbip_status);
188 err_status:
189 return err;
192 static void stub_remove_files(struct device *dev)
194 device_remove_file(dev, &dev_attr_usbip_status);
195 device_remove_file(dev, &dev_attr_usbip_sockfd);
196 device_remove_file(dev, &dev_attr_usbip_debug);
201 /*-------------------------------------------------------------------------*/
203 /* Event handler functions called by an event handler thread */
205 static void stub_shutdown_connection(struct usbip_device *ud)
207 struct stub_device *sdev = container_of(ud, struct stub_device, ud);
210 * When removing an exported device, kernel panic sometimes occurred
211 * and then EIP was sk_wait_data of stub_rx thread. Is this because
212 * sk_wait_data returned though stub_rx thread was already finished by
213 * step 1?
215 if (ud->tcp_socket) {
216 usbip_udbg("shutdown tcp_socket %p\n", ud->tcp_socket);
217 kernel_sock_shutdown(ud->tcp_socket, SHUT_RDWR);
220 /* 1. stop threads */
221 usbip_stop_threads(ud);
223 /* 2. close the socket */
225 * tcp_socket is freed after threads are killed.
226 * So usbip_xmit do not touch NULL socket.
228 if (ud->tcp_socket) {
229 sock_release(ud->tcp_socket);
230 ud->tcp_socket = NULL;
233 /* 3. free used data */
234 stub_device_cleanup_urbs(sdev);
236 /* 4. free stub_unlink */
238 unsigned long flags;
239 struct stub_unlink *unlink, *tmp;
241 spin_lock_irqsave(&sdev->priv_lock, flags);
243 list_for_each_entry_safe(unlink, tmp, &sdev->unlink_tx, list) {
244 list_del(&unlink->list);
245 kfree(unlink);
248 list_for_each_entry_safe(unlink, tmp,
249 &sdev->unlink_free, list) {
250 list_del(&unlink->list);
251 kfree(unlink);
254 spin_unlock_irqrestore(&sdev->priv_lock, flags);
258 static void stub_device_reset(struct usbip_device *ud)
260 struct stub_device *sdev = container_of(ud, struct stub_device, ud);
261 struct usb_device *udev = interface_to_usbdev(sdev->interface);
262 int ret;
264 usbip_udbg("device reset");
265 ret = usb_lock_device_for_reset(udev, sdev->interface);
266 if (ret < 0) {
267 dev_err(&udev->dev, "lock for reset\n");
269 spin_lock(&ud->lock);
270 ud->status = SDEV_ST_ERROR;
271 spin_unlock(&ud->lock);
273 return;
276 /* try to reset the device */
277 ret = usb_reset_device(udev);
279 usb_unlock_device(udev);
281 spin_lock(&ud->lock);
282 if (ret) {
283 dev_err(&udev->dev, "device reset\n");
284 ud->status = SDEV_ST_ERROR;
286 } else {
287 dev_info(&udev->dev, "device reset\n");
288 ud->status = SDEV_ST_AVAILABLE;
291 spin_unlock(&ud->lock);
293 return;
296 static void stub_device_unusable(struct usbip_device *ud)
298 spin_lock(&ud->lock);
299 ud->status = SDEV_ST_ERROR;
300 spin_unlock(&ud->lock);
304 /*-------------------------------------------------------------------------*/
307 * stub_device_alloc - allocate a new stub_device struct
308 * @interface: usb_interface of a new device
310 * Allocates and initializes a new stub_device struct.
312 static struct stub_device *stub_device_alloc(struct usb_interface *interface)
314 struct stub_device *sdev;
315 int busnum = interface_to_busnum(interface);
316 int devnum = interface_to_devnum(interface);
318 dev_dbg(&interface->dev, "allocating stub device");
320 /* yes, it's a new device */
321 sdev = kzalloc(sizeof(struct stub_device), GFP_KERNEL);
322 if (!sdev) {
323 dev_err(&interface->dev, "no memory for stub_device\n");
324 return NULL;
327 sdev->interface = interface;
330 * devid is defined with devnum when this driver is first allocated.
331 * devnum may change later if a device is reset. However, devid never
332 * changes during a usbip connection.
334 sdev->devid = (busnum << 16) | devnum;
336 usbip_task_init(&sdev->ud.tcp_rx, "stub_rx", stub_rx_loop);
337 usbip_task_init(&sdev->ud.tcp_tx, "stub_tx", stub_tx_loop);
339 sdev->ud.side = USBIP_STUB;
340 sdev->ud.status = SDEV_ST_AVAILABLE;
341 /* sdev->ud.lock = SPIN_LOCK_UNLOCKED; */
342 spin_lock_init(&sdev->ud.lock);
343 sdev->ud.tcp_socket = NULL;
345 INIT_LIST_HEAD(&sdev->priv_init);
346 INIT_LIST_HEAD(&sdev->priv_tx);
347 INIT_LIST_HEAD(&sdev->priv_free);
348 INIT_LIST_HEAD(&sdev->unlink_free);
349 INIT_LIST_HEAD(&sdev->unlink_tx);
350 /* sdev->priv_lock = SPIN_LOCK_UNLOCKED; */
351 spin_lock_init(&sdev->priv_lock);
353 init_waitqueue_head(&sdev->tx_waitq);
355 sdev->ud.eh_ops.shutdown = stub_shutdown_connection;
356 sdev->ud.eh_ops.reset = stub_device_reset;
357 sdev->ud.eh_ops.unusable = stub_device_unusable;
359 usbip_start_eh(&sdev->ud);
361 usbip_udbg("register new interface\n");
362 return sdev;
365 static int stub_device_free(struct stub_device *sdev)
367 if (!sdev)
368 return -EINVAL;
370 kfree(sdev);
371 usbip_udbg("kfree udev ok\n");
373 return 0;
377 /*-------------------------------------------------------------------------*/
380 * If a usb device has multiple active interfaces, this driver is bound to all
381 * the active interfaces. However, usbip exports *a* usb device (i.e., not *an*
382 * active interface). Currently, a userland program must ensure that it
383 * looks at the usbip's sysfs entries of only the first active interface.
385 * TODO: use "struct usb_device_driver" to bind a usb device.
386 * However, it seems it is not fully supported in mainline kernel yet
387 * (2.6.19.2).
389 static int stub_probe(struct usb_interface *interface,
390 const struct usb_device_id *id)
392 struct usb_device *udev = interface_to_usbdev(interface);
393 struct stub_device *sdev = NULL;
394 const char *udev_busid = dev_name(interface->dev.parent);
395 int err = 0;
396 struct bus_id_priv *busid_priv;
398 dev_dbg(&interface->dev, "Enter\n");
400 /* check we should claim or not by busid_table */
401 busid_priv = get_busid_priv(udev_busid);
402 if (!busid_priv || (busid_priv->status == STUB_BUSID_REMOV) ||
403 (busid_priv->status == STUB_BUSID_OTHER)) {
404 dev_info(&interface->dev,
405 "this device %s is not in match_busid table. skip!\n",
406 udev_busid);
409 * Return value should be ENODEV or ENOXIO to continue trying
410 * other matched drivers by the driver core.
411 * See driver_probe_device() in driver/base/dd.c
413 return -ENODEV;
416 if (udev->descriptor.bDeviceClass == USB_CLASS_HUB) {
417 usbip_udbg("this device %s is a usb hub device. skip!\n",
418 udev_busid);
419 return -ENODEV;
422 if (!strcmp(udev->bus->bus_name, "vhci_hcd")) {
423 usbip_udbg("this device %s is attached on vhci_hcd. skip!\n",
424 udev_busid);
425 return -ENODEV;
429 if (busid_priv->status == STUB_BUSID_ALLOC) {
430 sdev = busid_priv->sdev;
431 if (!sdev)
432 return -ENODEV;
434 busid_priv->interf_count++;
435 dev_info(&interface->dev,
436 "USB/IP Stub: register a new interface "
437 "(bus %u dev %u ifn %u)\n", udev->bus->busnum, udev->devnum,
438 interface->cur_altsetting->desc.bInterfaceNumber);
440 /* set private data to usb_interface */
441 usb_set_intfdata(interface, sdev);
443 err = stub_add_files(&interface->dev);
444 if (err) {
445 dev_err(&interface->dev, "create sysfs files for %s\n",
446 udev_busid);
447 usb_set_intfdata(interface, NULL);
448 busid_priv->interf_count--;
450 return err;
453 return 0;
456 /* ok. this is my device. */
457 sdev = stub_device_alloc(interface);
458 if (!sdev)
459 return -ENOMEM;
461 dev_info(&interface->dev, "USB/IP Stub: register a new device "
462 "(bus %u dev %u ifn %u)\n", udev->bus->busnum, udev->devnum,
463 interface->cur_altsetting->desc.bInterfaceNumber);
465 busid_priv->interf_count = 0;
466 busid_priv->shutdown_busid = 0;
468 /* set private data to usb_interface */
469 usb_set_intfdata(interface, sdev);
470 busid_priv->interf_count++;
472 busid_priv->sdev = sdev;
474 err = stub_add_files(&interface->dev);
475 if (err) {
476 dev_err(&interface->dev, "create sysfs files for %s\n",
477 udev_busid);
478 usb_set_intfdata(interface, NULL);
479 busid_priv->interf_count = 0;
481 busid_priv->sdev = NULL;
482 stub_device_free(sdev);
483 return err;
485 busid_priv->status = STUB_BUSID_ALLOC;
487 return 0;
490 static void shutdown_busid(struct bus_id_priv *busid_priv)
492 if (busid_priv->sdev && !busid_priv->shutdown_busid) {
493 busid_priv->shutdown_busid = 1;
494 usbip_event_add(&busid_priv->sdev->ud, SDEV_EVENT_REMOVED);
496 /* 2. wait for the stop of the event handler */
497 usbip_stop_eh(&busid_priv->sdev->ud);
504 * called in usb_disconnect() or usb_deregister()
505 * but only if actconfig(active configuration) exists
507 static void stub_disconnect(struct usb_interface *interface)
509 struct stub_device *sdev;
510 const char *udev_busid = dev_name(interface->dev.parent);
511 struct bus_id_priv *busid_priv;
513 busid_priv = get_busid_priv(udev_busid);
515 usbip_udbg("Enter\n");
517 if (!busid_priv) {
518 BUG();
519 return;
522 sdev = usb_get_intfdata(interface);
524 /* get stub_device */
525 if (!sdev) {
526 err(" could not get device from inteface data");
527 /* BUG(); */
528 return;
531 usb_set_intfdata(interface, NULL);
534 * NOTE:
535 * rx/tx threads are invoked for each usb_device.
537 stub_remove_files(&interface->dev);
539 /*If usb reset called from event handler*/
540 if (busid_priv->sdev->ud.eh.thread == current) {
541 busid_priv->interf_count--;
542 return;
545 if (busid_priv->interf_count > 1) {
546 busid_priv->interf_count--;
547 shutdown_busid(busid_priv);
548 return;
551 busid_priv->interf_count = 0;
554 /* 1. shutdown the current connection */
555 shutdown_busid(busid_priv);
557 /* 3. free sdev */
558 busid_priv->sdev = NULL;
559 stub_device_free(sdev);
561 if (busid_priv->status == STUB_BUSID_ALLOC) {
562 busid_priv->status = STUB_BUSID_ADDED;
563 } else {
564 busid_priv->status = STUB_BUSID_OTHER;
565 del_match_busid((char *)udev_busid);
567 usbip_udbg("bye\n");