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,
21 #include "usbip_common.h"
24 #define DRIVER_VERSION "1.0"
25 #define DRIVER_AUTHOR "Takahiro Hirofuchi"
26 #define DRIVER_DESC "Virtual Host Controller Interface Driver for USB/IP"
27 #define DRIVER_LICENCE "GPL"
28 MODULE_AUTHOR(DRIVER_AUTHOR
);
29 MODULE_DESCRIPTION(DRIVER_DESC
);
30 MODULE_LICENSE(DRIVER_LICENCE
);
36 * - update root hub emulation
37 * - move the emulation code to userland ?
38 * porting to other operating systems
39 * minimize kernel code
40 * - add suspend/resume code
41 * - clean up everything
45 /* See usb gadget dummy hcd */
48 static int vhci_hub_status(struct usb_hcd
*hcd
, char *buff
);
49 static int vhci_hub_control(struct usb_hcd
*hcd
, u16 typeReq
, u16 wValue
,
50 u16 wIndex
, char *buff
, u16 wLength
);
51 static int vhci_urb_enqueue(struct usb_hcd
*hcd
, struct urb
*urb
,
53 static int vhci_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
, int status
);
54 static int vhci_start(struct usb_hcd
*vhci_hcd
);
55 static void vhci_stop(struct usb_hcd
*hcd
);
56 static int vhci_get_frame_number(struct usb_hcd
*hcd
);
58 static const char driver_name
[] = "vhci_hcd";
59 static const char driver_desc
[] = "USB/IP Virtual Host Contoroller";
61 struct vhci_hcd
*the_controller
;
63 static const char *bit_desc
[] = {
80 "C_CONNECTION", /*16*/
83 "C_OVER_CURRENT", /*19*/
99 static void dump_port_status(u32 status
)
103 printk(KERN_DEBUG
"status %08x:", status
);
104 for (i
= 0; i
< 32; i
++) {
105 if (status
& (1 << i
))
106 printk(" %s", bit_desc
[i
]);
114 void rh_port_connect(int rhport
, enum usb_device_speed speed
)
118 usbip_dbg_vhci_rh("rh_port_connect %d\n", rhport
);
120 spin_lock_irqsave(&the_controller
->lock
, flags
);
122 the_controller
->port_status
[rhport
] |= USB_PORT_STAT_CONNECTION
123 | (1 << USB_PORT_FEAT_C_CONNECTION
);
127 the_controller
->port_status
[rhport
] |= USB_PORT_STAT_HIGH_SPEED
;
130 the_controller
->port_status
[rhport
] |= USB_PORT_STAT_LOW_SPEED
;
136 /* spin_lock(&the_controller->vdev[rhport].ud.lock);
137 * the_controller->vdev[rhport].ud.status = VDEV_CONNECT;
138 * spin_unlock(&the_controller->vdev[rhport].ud.lock); */
140 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
142 usb_hcd_poll_rh_status(vhci_to_hcd(the_controller
));
145 void rh_port_disconnect(int rhport
)
149 usbip_dbg_vhci_rh("rh_port_disconnect %d\n", rhport
);
151 spin_lock_irqsave(&the_controller
->lock
, flags
);
152 /* stop_activity(dum, driver); */
153 the_controller
->port_status
[rhport
] &= ~USB_PORT_STAT_CONNECTION
;
154 the_controller
->port_status
[rhport
] |=
155 (1 << USB_PORT_FEAT_C_CONNECTION
);
158 /* not yet complete the disconnection
159 * spin_lock(&vdev->ud.lock);
160 * vdev->ud.status = VHC_ST_DISCONNECT;
161 * spin_unlock(&vdev->ud.lock); */
163 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
165 usb_hcd_poll_rh_status(vhci_to_hcd(the_controller
));
170 /*----------------------------------------------------------------------*/
172 #define PORT_C_MASK \
173 ((USB_PORT_STAT_C_CONNECTION \
174 | USB_PORT_STAT_C_ENABLE \
175 | USB_PORT_STAT_C_SUSPEND \
176 | USB_PORT_STAT_C_OVERCURRENT \
177 | USB_PORT_STAT_C_RESET) << 16)
180 * This function is almostly the same as dummy_hcd.c:dummy_hub_status() without
181 * suspend/resume support. But, it is modified to provide multiple ports.
183 * @buf: a bitmap to show which port status has been changed.
184 * bit 0: reserved or used for another purpose?
185 * bit 1: the status of port 0 has been changed.
186 * bit 2: the status of port 1 has been changed.
188 * bit 7: the status of port 6 has been changed.
189 * bit 8: the status of port 7 has been changed.
191 * bit 15: the status of port 14 has been changed.
193 * So, the maximum number of ports is 31 ( port 0 to port 30) ?
195 * The return value is the actual transfered length in byte. If nothing has
196 * been changed, return 0. In the case that the number of ports is less than or
197 * equal to 6 (VHCI_NPORTS==7), return 1.
200 static int vhci_hub_status(struct usb_hcd
*hcd
, char *buf
)
202 struct vhci_hcd
*vhci
;
206 /* the enough buffer is allocated according to USB_MAXCHILDREN */
207 unsigned long *event_bits
= (unsigned long *) buf
;
214 vhci
= hcd_to_vhci(hcd
);
216 spin_lock_irqsave(&vhci
->lock
, flags
);
217 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
218 usbip_dbg_vhci_rh("hw accessible flag in on?\n");
222 /* check pseudo status register for each port */
223 for (rhport
= 0; rhport
< VHCI_NPORTS
; rhport
++) {
224 if ((vhci
->port_status
[rhport
] & PORT_C_MASK
)) {
225 /* The status of a port has been changed, */
226 usbip_dbg_vhci_rh("port %d is changed\n", rhport
);
228 *event_bits
|= 1 << (rhport
+ 1);
233 usbip_uinfo("changed %d\n", changed
);
235 if (hcd
->state
== HC_STATE_SUSPENDED
)
236 usb_hcd_resume_root_hub(hcd
);
239 retval
= 1 + (VHCI_NPORTS
/ 8);
244 spin_unlock_irqrestore(&vhci
->lock
, flags
);
248 /* See hub_configure in hub.c */
249 static inline void hub_descriptor(struct usb_hub_descriptor
*desc
)
251 memset(desc
, 0, sizeof(*desc
));
252 desc
->bDescriptorType
= 0x29;
253 desc
->bDescLength
= 9;
254 desc
->wHubCharacteristics
= (__force __u16
)
255 (__constant_cpu_to_le16(0x0001));
256 desc
->bNbrPorts
= VHCI_NPORTS
;
257 desc
->bitmap
[0] = 0xff;
258 desc
->bitmap
[1] = 0xff;
261 static int vhci_hub_control(struct usb_hcd
*hcd
, u16 typeReq
, u16 wValue
,
262 u16 wIndex
, char *buf
, u16 wLength
)
264 struct vhci_hcd
*dum
;
269 u32 prev_port_status
[VHCI_NPORTS
];
271 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
))
276 * wIndex shows the port number and begins from 1.
278 usbip_dbg_vhci_rh("typeReq %x wValue %x wIndex %x\n", typeReq
, wValue
,
280 if (wIndex
> VHCI_NPORTS
)
281 printk(KERN_ERR
"%s: invalid port number %d\n", __func__
,
283 rhport
= ((__u8
)(wIndex
& 0x00ff)) - 1;
285 dum
= hcd_to_vhci(hcd
);
287 spin_lock_irqsave(&dum
->lock
, flags
);
289 /* store old status and compare now and old later */
290 if (usbip_dbg_flag_vhci_rh
) {
292 for (i
= 0; i
< VHCI_NPORTS
; i
++)
293 prev_port_status
[i
] = dum
->port_status
[i
];
297 case ClearHubFeature
:
298 usbip_dbg_vhci_rh(" ClearHubFeature\n");
300 case ClearPortFeature
:
302 case USB_PORT_FEAT_SUSPEND
:
303 if (dum
->port_status
[rhport
] & USB_PORT_STAT_SUSPEND
) {
304 /* 20msec signaling */
307 jiffies
+ msecs_to_jiffies(20);
310 case USB_PORT_FEAT_POWER
:
311 usbip_dbg_vhci_rh(" ClearPortFeature: "
312 "USB_PORT_FEAT_POWER\n");
313 dum
->port_status
[rhport
] = 0;
314 /* dum->address = 0; */
318 case USB_PORT_FEAT_C_RESET
:
319 usbip_dbg_vhci_rh(" ClearPortFeature: "
320 "USB_PORT_FEAT_C_RESET\n");
321 switch (dum
->vdev
[rhport
].speed
) {
323 dum
->port_status
[rhport
] |=
324 USB_PORT_STAT_HIGH_SPEED
;
327 dum
->port_status
[rhport
] |=
328 USB_PORT_STAT_LOW_SPEED
;
334 usbip_dbg_vhci_rh(" ClearPortFeature: default %x\n",
336 dum
->port_status
[rhport
] &= ~(1 << wValue
);
339 case GetHubDescriptor
:
340 usbip_dbg_vhci_rh(" GetHubDescriptor\n");
341 hub_descriptor((struct usb_hub_descriptor
*) buf
);
344 usbip_dbg_vhci_rh(" GetHubStatus\n");
345 *(__le32
*) buf
= __constant_cpu_to_le32(0);
348 usbip_dbg_vhci_rh(" GetPortStatus port %x\n", wIndex
);
349 if (wIndex
> VHCI_NPORTS
|| wIndex
< 1) {
350 printk(KERN_ERR
"%s: invalid port number %d\n",
355 /* we do no care of resume. */
357 /* whoever resets or resumes must GetPortStatus to
360 if (dum
->resuming
&& time_after(jiffies
, dum
->re_timeout
)) {
361 printk(KERN_ERR
"%s: not yet\n", __func__
);
362 dum
->port_status
[rhport
] |=
363 (1 << USB_PORT_FEAT_C_SUSPEND
);
364 dum
->port_status
[rhport
] &=
365 ~(1 << USB_PORT_FEAT_SUSPEND
);
368 /* if (dum->driver && dum->driver->resume) {
369 * spin_unlock (&dum->lock);
370 * dum->driver->resume (&dum->gadget);
371 * spin_lock (&dum->lock);
375 if ((dum
->port_status
[rhport
] & (1 << USB_PORT_FEAT_RESET
)) !=
376 0 && time_after(jiffies
, dum
->re_timeout
)) {
377 dum
->port_status
[rhport
] |=
378 (1 << USB_PORT_FEAT_C_RESET
);
379 dum
->port_status
[rhport
] &=
380 ~(1 << USB_PORT_FEAT_RESET
);
383 if (dum
->vdev
[rhport
].ud
.status
==
384 VDEV_ST_NOTASSIGNED
) {
385 usbip_dbg_vhci_rh(" enable rhport %d "
388 dum
->vdev
[rhport
].ud
.status
);
389 dum
->port_status
[rhport
] |=
390 USB_PORT_STAT_ENABLE
;
395 dum
->port_status
[rhport
] |=
396 USB_PORT_STAT_ENABLE
;
397 /* give it the best speed we agree on */
398 dum
->gadget
.speed
= dum
->driver
->speed
;
399 dum
->gadget
.ep0
->maxpacket
= 64;
400 switch (dum
->gadget
.speed
) {
402 dum
->port_status
[rhport
] |=
403 USB_PORT_STAT_HIGH_SPEED
;
406 dum
->gadget
.ep0
->maxpacket
= 8;
407 dum
->port_status
[rhport
] |=
408 USB_PORT_STAT_LOW_SPEED
;
411 dum
->gadget
.speed
= USB_SPEED_FULL
;
418 ((u16
*) buf
)[0] = cpu_to_le16(dum
->port_status
[rhport
]);
420 cpu_to_le16(dum
->port_status
[rhport
] >> 16);
422 usbip_dbg_vhci_rh(" GetPortStatus bye %x %x\n", ((u16
*)buf
)[0],
426 usbip_dbg_vhci_rh(" SetHubFeature\n");
431 case USB_PORT_FEAT_SUSPEND
:
432 usbip_dbg_vhci_rh(" SetPortFeature: "
433 "USB_PORT_FEAT_SUSPEND\n");
434 printk(KERN_ERR
"%s: not yet\n", __func__
);
436 dum
->port_status
[rhport
] |=
437 (1 << USB_PORT_FEAT_SUSPEND
);
438 if (dum
->driver
->suspend
) {
439 spin_unlock(&dum
->lock
);
440 dum
->driver
->suspend(&dum
->gadget
);
441 spin_lock(&dum
->lock
);
445 case USB_PORT_FEAT_RESET
:
446 usbip_dbg_vhci_rh(" SetPortFeature: "
447 "USB_PORT_FEAT_RESET\n");
448 /* if it's already running, disconnect first */
449 if (dum
->port_status
[rhport
] & USB_PORT_STAT_ENABLE
) {
450 dum
->port_status
[rhport
] &=
451 ~(USB_PORT_STAT_ENABLE
|
452 USB_PORT_STAT_LOW_SPEED
|
453 USB_PORT_STAT_HIGH_SPEED
);
456 dev_dbg(hardware
, "disconnect\n");
457 stop_activity(dum
, dum
->driver
);
461 /* FIXME test that code path! */
463 /* 50msec reset signaling */
464 dum
->re_timeout
= jiffies
+ msecs_to_jiffies(50);
468 usbip_dbg_vhci_rh(" SetPortFeature: default %d\n",
470 dum
->port_status
[rhport
] |= (1 << wValue
);
475 printk(KERN_ERR
"%s: default: no such request\n", __func__
);
476 /* dev_dbg (hardware,
477 * "hub control req%04x v%04x i%04x l%d\n",
478 * typeReq, wValue, wIndex, wLength); */
480 /* "protocol stall" on error */
484 if (usbip_dbg_flag_vhci_rh
) {
485 printk(KERN_DEBUG
"port %d\n", rhport
);
486 dump_port_status(prev_port_status
[rhport
]);
487 dump_port_status(dum
->port_status
[rhport
]);
489 usbip_dbg_vhci_rh(" bye\n");
491 spin_unlock_irqrestore(&dum
->lock
, flags
);
498 /*----------------------------------------------------------------------*/
500 static struct vhci_device
*get_vdev(struct usb_device
*udev
)
507 for (i
= 0; i
< VHCI_NPORTS
; i
++)
508 if (the_controller
->vdev
[i
].udev
== udev
)
509 return port_to_vdev(i
);
514 static void vhci_tx_urb(struct urb
*urb
)
516 struct vhci_device
*vdev
= get_vdev(urb
->dev
);
517 struct vhci_priv
*priv
;
521 err("could not get virtual device");
526 priv
= kzalloc(sizeof(struct vhci_priv
), GFP_ATOMIC
);
528 spin_lock_irqsave(&vdev
->priv_lock
, flag
);
531 dev_err(&urb
->dev
->dev
, "malloc vhci_priv\n");
532 spin_unlock_irqrestore(&vdev
->priv_lock
, flag
);
533 usbip_event_add(&vdev
->ud
, VDEV_EVENT_ERROR_MALLOC
);
537 priv
->seqnum
= atomic_inc_return(&the_controller
->seqnum
);
538 if (priv
->seqnum
== 0xffff)
539 usbip_uinfo("seqnum max\n");
544 urb
->hcpriv
= (void *) priv
;
547 list_add_tail(&priv
->list
, &vdev
->priv_tx
);
549 wake_up(&vdev
->waitq_tx
);
550 spin_unlock_irqrestore(&vdev
->priv_lock
, flag
);
553 static int vhci_urb_enqueue(struct usb_hcd
*hcd
, struct urb
*urb
,
556 struct device
*dev
= &urb
->dev
->dev
;
559 struct vhci_device
*vdev
;
561 usbip_dbg_vhci_hc("enter, usb_hcd %p urb %p mem_flags %d\n",
562 hcd
, urb
, mem_flags
);
564 /* patch to usb_sg_init() is in 2.5.60 */
565 BUG_ON(!urb
->transfer_buffer
&& urb
->transfer_buffer_length
);
567 spin_lock_irqsave(&the_controller
->lock
, flags
);
569 if (urb
->status
!= -EINPROGRESS
) {
570 dev_err(dev
, "URB already unlinked!, status %d\n", urb
->status
);
571 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
575 vdev
= port_to_vdev(urb
->dev
->portnum
-1);
577 /* refuse enqueue for dead connection */
578 spin_lock(&vdev
->ud
.lock
);
579 if (vdev
->ud
.status
== VDEV_ST_NULL
|| vdev
->ud
.status
== VDEV_ST_ERROR
) {
580 usbip_uerr("enqueue for inactive port %d\n", vdev
->rhport
);
581 spin_unlock(&vdev
->ud
.lock
);
582 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
585 spin_unlock(&vdev
->ud
.lock
);
587 ret
= usb_hcd_link_urb_to_ep(hcd
, urb
);
592 * The enumeration process is as follows;
594 * 1. Get_Descriptor request to DevAddrs(0) EndPoint(0)
595 * to get max packet length of default pipe
597 * 2. Set_Address request to DevAddr(0) EndPoint(0)
601 if (usb_pipedevice(urb
->pipe
) == 0) {
602 __u8 type
= usb_pipetype(urb
->pipe
);
603 struct usb_ctrlrequest
*ctrlreq
=
604 (struct usb_ctrlrequest
*) urb
->setup_packet
;
606 if (type
!= PIPE_CONTROL
|| !ctrlreq
) {
607 dev_err(dev
, "invalid request to devnum 0\n");
612 switch (ctrlreq
->bRequest
) {
613 case USB_REQ_SET_ADDRESS
:
614 /* set_address may come when a device is reset */
615 dev_info(dev
, "SetAddress Request (%d) to port %d\n",
616 ctrlreq
->wValue
, vdev
->rhport
);
619 usb_put_dev(vdev
->udev
);
620 vdev
->udev
= usb_get_dev(urb
->dev
);
622 spin_lock(&vdev
->ud
.lock
);
623 vdev
->ud
.status
= VDEV_ST_USED
;
624 spin_unlock(&vdev
->ud
.lock
);
626 if (urb
->status
== -EINPROGRESS
) {
627 /* This request is successfully completed. */
628 /* If not -EINPROGRESS, possibly unlinked. */
634 case USB_REQ_GET_DESCRIPTOR
:
635 if (ctrlreq
->wValue
== (USB_DT_DEVICE
<< 8))
636 usbip_dbg_vhci_hc("Not yet?: "
637 "Get_Descriptor to device 0 "
638 "(get max pipe size)\n");
641 usb_put_dev(vdev
->udev
);
642 vdev
->udev
= usb_get_dev(urb
->dev
);
647 dev_err(dev
, "invalid request to devnum 0 bRequest %u, "
648 "wValue %u\n", ctrlreq
->bRequest
,
659 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
664 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
666 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
668 usb_hcd_giveback_urb(vhci_to_hcd(the_controller
), urb
, urb
->status
);
674 * vhci_rx gives back the urb after receiving the reply of the urb. If an
675 * unlink pdu is sent or not, vhci_rx receives a normal return pdu and gives
676 * back its urb. For the driver unlinking the urb, the content of the urb is
677 * not important, but the calling to its completion handler is important; the
678 * completion of unlinking is notified by the completion handler.
683 * - When vhci_hcd receives RET_SUBMIT,
685 * - case 1a). the urb of the pdu is not unlinking.
687 * => just give back the urb
689 * - case 1b). the urb of the pdu is unlinking.
690 * - usbip.ko will return a reply of the unlinking request.
691 * => give back the urb now and go to case 2b).
693 * - When vhci_hcd receives RET_UNLINK,
695 * - case 2a). a submit request is still pending in vhci_hcd.
696 * - urb was really pending in usbip.ko and urb_unlink_urb() was
698 * => free a pending submit request
699 * => notify unlink completeness by giving back the urb
701 * - case 2b). a submit request is *not* pending in vhci_hcd.
702 * - urb was already given back to the core driver.
703 * => do not give back the urb
708 * - When usbip receives CMD_UNLINK,
710 * - case 3a). the urb of the unlink request is now in submission.
711 * => do usb_unlink_urb().
712 * => after the unlink is completed, send RET_UNLINK.
714 * - case 3b). the urb of the unlink request is not in submission.
715 * - may be already completed or never be received
719 static int vhci_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
, int status
)
722 struct vhci_priv
*priv
;
723 struct vhci_device
*vdev
;
725 usbip_uinfo("vhci_hcd: dequeue a urb %p\n", urb
);
728 spin_lock_irqsave(&the_controller
->lock
, flags
);
732 /* URB was never linked! or will be soon given back by
734 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
740 ret
= usb_hcd_check_unlink_urb(hcd
, urb
, status
);
742 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
747 /* send unlink request here? */
750 if (!vdev
->ud
.tcp_socket
) {
751 /* tcp connection is closed */
752 unsigned long flags2
;
754 spin_lock_irqsave(&vdev
->priv_lock
, flags2
);
756 usbip_uinfo("vhci_hcd: device %p seems to be disconnected\n",
758 list_del(&priv
->list
);
762 spin_unlock_irqrestore(&vdev
->priv_lock
, flags2
);
765 * If tcp connection is alive, we have sent CMD_UNLINK.
766 * vhci_rx will receive RET_UNLINK and give back the URB.
767 * Otherwise, we give back it here.
769 usbip_uinfo("vhci_hcd: vhci_urb_dequeue() gives back urb %p\n",
772 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
774 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
775 usb_hcd_giveback_urb(vhci_to_hcd(the_controller
), urb
,
777 spin_lock_irqsave(&the_controller
->lock
, flags
);
780 /* tcp connection is alive */
781 unsigned long flags2
;
782 struct vhci_unlink
*unlink
;
784 spin_lock_irqsave(&vdev
->priv_lock
, flags2
);
786 /* setup CMD_UNLINK pdu */
787 unlink
= kzalloc(sizeof(struct vhci_unlink
), GFP_ATOMIC
);
789 usbip_uerr("malloc vhci_unlink\n");
790 spin_unlock_irqrestore(&vdev
->priv_lock
, flags2
);
791 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
792 usbip_event_add(&vdev
->ud
, VDEV_EVENT_ERROR_MALLOC
);
796 unlink
->seqnum
= atomic_inc_return(&the_controller
->seqnum
);
797 if (unlink
->seqnum
== 0xffff)
798 usbip_uinfo("seqnum max\n");
800 unlink
->unlink_seqnum
= priv
->seqnum
;
802 usbip_uinfo("vhci_hcd: device %p seems to be still connected\n",
805 /* send cmd_unlink and try to cancel the pending URB in the
807 list_add_tail(&unlink
->list
, &vdev
->unlink_tx
);
808 wake_up(&vdev
->waitq_tx
);
810 spin_unlock_irqrestore(&vdev
->priv_lock
, flags2
);
813 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
815 usbip_dbg_vhci_hc("leave\n");
819 static void vhci_device_unlink_cleanup(struct vhci_device
*vdev
)
821 struct vhci_unlink
*unlink
, *tmp
;
823 spin_lock(&vdev
->priv_lock
);
825 list_for_each_entry_safe(unlink
, tmp
, &vdev
->unlink_tx
, list
) {
826 usbip_uinfo("unlink cleanup tx %lu\n", unlink
->unlink_seqnum
);
827 list_del(&unlink
->list
);
831 list_for_each_entry_safe(unlink
, tmp
, &vdev
->unlink_rx
, list
) {
834 /* give back URB of unanswered unlink request */
835 usbip_uinfo("unlink cleanup rx %lu\n", unlink
->unlink_seqnum
);
837 urb
= pickup_urb_and_free_priv(vdev
, unlink
->unlink_seqnum
);
839 usbip_uinfo("the urb (seqnum %lu) was already given back\n",
840 unlink
->unlink_seqnum
);
841 list_del(&unlink
->list
);
846 urb
->status
= -ENODEV
;
848 spin_lock(&the_controller
->lock
);
849 usb_hcd_unlink_urb_from_ep(vhci_to_hcd(the_controller
), urb
);
850 spin_unlock(&the_controller
->lock
);
852 usb_hcd_giveback_urb(vhci_to_hcd(the_controller
), urb
, urb
->status
);
854 list_del(&unlink
->list
);
858 spin_unlock(&vdev
->priv_lock
);
862 * The important thing is that only one context begins cleanup.
863 * This is why error handling and cleanup become simple.
864 * We do not want to consider race condition as possible.
866 static void vhci_shutdown_connection(struct usbip_device
*ud
)
868 struct vhci_device
*vdev
= container_of(ud
, struct vhci_device
, ud
);
870 /* need this? see stub_dev.c */
871 if (ud
->tcp_socket
) {
872 usbip_udbg("shutdown tcp_socket %p\n", ud
->tcp_socket
);
873 kernel_sock_shutdown(ud
->tcp_socket
, SHUT_RDWR
);
876 usbip_stop_threads(&vdev
->ud
);
877 usbip_uinfo("stop threads\n");
879 /* active connection is closed */
880 if (vdev
->ud
.tcp_socket
!= NULL
) {
881 sock_release(vdev
->ud
.tcp_socket
);
882 vdev
->ud
.tcp_socket
= NULL
;
884 usbip_uinfo("release socket\n");
886 vhci_device_unlink_cleanup(vdev
);
889 * rh_port_disconnect() is a trigger of ...
890 * usb_disable_device():
891 * disable all the endpoints for a USB device.
892 * usb_disable_endpoint():
893 * disable endpoints. pending urbs are unlinked(dequeued).
895 * NOTE: After calling rh_port_disconnect(), the USB device drivers of a
896 * deteched device should release used urbs in a cleanup function(i.e.
897 * xxx_disconnect()). Therefore, vhci_hcd does not need to release
898 * pushed urbs and their private data in this function.
900 * NOTE: vhci_dequeue() must be considered carefully. When shutdowning
901 * a connection, vhci_shutdown_connection() expects vhci_dequeue()
902 * gives back pushed urbs and frees their private data by request of
903 * the cleanup function of a USB driver. When unlinking a urb with an
904 * active connection, vhci_dequeue() does not give back the urb which
905 * is actually given back by vhci_rx after receiving its return pdu.
908 rh_port_disconnect(vdev
->rhport
);
910 usbip_uinfo("disconnect device\n");
914 static void vhci_device_reset(struct usbip_device
*ud
)
916 struct vhci_device
*vdev
= container_of(ud
, struct vhci_device
, ud
);
918 spin_lock(&ud
->lock
);
924 usb_put_dev(vdev
->udev
);
927 ud
->tcp_socket
= NULL
;
929 ud
->status
= VDEV_ST_NULL
;
931 spin_unlock(&ud
->lock
);
934 static void vhci_device_unusable(struct usbip_device
*ud
)
936 spin_lock(&ud
->lock
);
938 ud
->status
= VDEV_ST_ERROR
;
940 spin_unlock(&ud
->lock
);
943 static void vhci_device_init(struct vhci_device
*vdev
)
945 memset(vdev
, 0, sizeof(*vdev
));
947 usbip_task_init(&vdev
->ud
.tcp_rx
, "vhci_rx", vhci_rx_loop
);
948 usbip_task_init(&vdev
->ud
.tcp_tx
, "vhci_tx", vhci_tx_loop
);
950 vdev
->ud
.side
= USBIP_VHCI
;
951 vdev
->ud
.status
= VDEV_ST_NULL
;
952 /* vdev->ud.lock = SPIN_LOCK_UNLOCKED; */
953 spin_lock_init(&vdev
->ud
.lock
);
955 INIT_LIST_HEAD(&vdev
->priv_rx
);
956 INIT_LIST_HEAD(&vdev
->priv_tx
);
957 INIT_LIST_HEAD(&vdev
->unlink_tx
);
958 INIT_LIST_HEAD(&vdev
->unlink_rx
);
959 /* vdev->priv_lock = SPIN_LOCK_UNLOCKED; */
960 spin_lock_init(&vdev
->priv_lock
);
962 init_waitqueue_head(&vdev
->waitq_tx
);
964 vdev
->ud
.eh_ops
.shutdown
= vhci_shutdown_connection
;
965 vdev
->ud
.eh_ops
.reset
= vhci_device_reset
;
966 vdev
->ud
.eh_ops
.unusable
= vhci_device_unusable
;
968 usbip_start_eh(&vdev
->ud
);
972 /*----------------------------------------------------------------------*/
974 static int vhci_start(struct usb_hcd
*hcd
)
976 struct vhci_hcd
*vhci
= hcd_to_vhci(hcd
);
980 usbip_dbg_vhci_hc("enter vhci_start\n");
983 /* initialize private data of usb_hcd */
985 for (rhport
= 0; rhport
< VHCI_NPORTS
; rhport
++) {
986 struct vhci_device
*vdev
= &vhci
->vdev
[rhport
];
987 vhci_device_init(vdev
);
988 vdev
->rhport
= rhport
;
991 atomic_set(&vhci
->seqnum
, 0);
992 spin_lock_init(&vhci
->lock
);
996 hcd
->power_budget
= 0; /* no limit */
997 hcd
->state
= HC_STATE_RUNNING
;
998 hcd
->uses_new_polling
= 1;
1001 /* vhci_hcd is now ready to be controlled through sysfs */
1002 err
= sysfs_create_group(&vhci_dev(vhci
)->kobj
, &dev_attr_group
);
1004 usbip_uerr("create sysfs files\n");
1011 static void vhci_stop(struct usb_hcd
*hcd
)
1013 struct vhci_hcd
*vhci
= hcd_to_vhci(hcd
);
1016 usbip_dbg_vhci_hc("stop VHCI controller\n");
1019 /* 1. remove the userland interface of vhci_hcd */
1020 sysfs_remove_group(&vhci_dev(vhci
)->kobj
, &dev_attr_group
);
1022 /* 2. shutdown all the ports of vhci_hcd */
1023 for (rhport
= 0 ; rhport
< VHCI_NPORTS
; rhport
++) {
1024 struct vhci_device
*vdev
= &vhci
->vdev
[rhport
];
1026 usbip_event_add(&vdev
->ud
, VDEV_EVENT_REMOVED
);
1027 usbip_stop_eh(&vdev
->ud
);
1031 usbip_uinfo("vhci_stop done\n");
1034 /*----------------------------------------------------------------------*/
1036 static int vhci_get_frame_number(struct usb_hcd
*hcd
)
1038 usbip_uerr("Not yet implemented\n");
1045 /* FIXME: suspend/resume */
1046 static int vhci_bus_suspend(struct usb_hcd
*hcd
)
1048 struct vhci_hcd
*vhci
= hcd_to_vhci(hcd
);
1050 dev_dbg(&hcd
->self
.root_hub
->dev
, "%s\n", __func__
);
1052 spin_lock_irq(&vhci
->lock
);
1053 /* vhci->rh_state = DUMMY_RH_SUSPENDED;
1054 * set_link_state(vhci); */
1055 hcd
->state
= HC_STATE_SUSPENDED
;
1056 spin_unlock_irq(&vhci
->lock
);
1061 static int vhci_bus_resume(struct usb_hcd
*hcd
)
1063 struct vhci_hcd
*vhci
= hcd_to_vhci(hcd
);
1066 dev_dbg(&hcd
->self
.root_hub
->dev
, "%s\n", __func__
);
1068 spin_lock_irq(&vhci
->lock
);
1069 if (!test_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
)) {
1072 /* vhci->rh_state = DUMMY_RH_RUNNING;
1073 * set_link_state(vhci);
1074 * if (!list_empty(&vhci->urbp_list))
1075 * mod_timer(&vhci->timer, jiffies); */
1076 hcd
->state
= HC_STATE_RUNNING
;
1078 spin_unlock_irq(&vhci
->lock
);
1086 #define vhci_bus_suspend NULL
1087 #define vhci_bus_resume NULL
1092 static struct hc_driver vhci_hc_driver
= {
1093 .description
= driver_name
,
1094 .product_desc
= driver_desc
,
1095 .hcd_priv_size
= sizeof(struct vhci_hcd
),
1099 .start
= vhci_start
,
1102 .urb_enqueue
= vhci_urb_enqueue
,
1103 .urb_dequeue
= vhci_urb_dequeue
,
1105 .get_frame_number
= vhci_get_frame_number
,
1107 .hub_status_data
= vhci_hub_status
,
1108 .hub_control
= vhci_hub_control
,
1109 .bus_suspend
= vhci_bus_suspend
,
1110 .bus_resume
= vhci_bus_resume
,
1113 static int vhci_hcd_probe(struct platform_device
*pdev
)
1115 struct usb_hcd
*hcd
;
1118 usbip_uinfo("proving...\n");
1120 usbip_dbg_vhci_hc("name %s id %d\n", pdev
->name
, pdev
->id
);
1122 /* will be removed */
1123 if (pdev
->dev
.dma_mask
) {
1124 dev_info(&pdev
->dev
, "vhci_hcd DMA not supported\n");
1129 * Allocate and initialize hcd.
1130 * Our private data is also allocated automatically.
1132 hcd
= usb_create_hcd(&vhci_hc_driver
, &pdev
->dev
, dev_name(&pdev
->dev
));
1134 usbip_uerr("create hcd failed\n");
1139 /* this is private data for vhci_hcd */
1140 the_controller
= hcd_to_vhci(hcd
);
1143 * Finish generic HCD structure initialization and register.
1144 * Call the driver's reset() and start() routines.
1146 ret
= usb_add_hcd(hcd
, 0, 0);
1148 usbip_uerr("usb_add_hcd failed %d\n", ret
);
1150 the_controller
= NULL
;
1155 usbip_dbg_vhci_hc("bye\n");
1160 static int vhci_hcd_remove(struct platform_device
*pdev
)
1162 struct usb_hcd
*hcd
;
1164 hcd
= platform_get_drvdata(pdev
);
1169 * Disconnects the root hub,
1170 * then reverses the effects of usb_add_hcd(),
1171 * invoking the HCD's stop() methods.
1173 usb_remove_hcd(hcd
);
1175 the_controller
= NULL
;
1185 /* what should happen for USB/IP under suspend/resume? */
1186 static int vhci_hcd_suspend(struct platform_device
*pdev
, pm_message_t state
)
1188 struct usb_hcd
*hcd
;
1193 dev_dbg(&pdev
->dev
, "%s\n", __func__
);
1195 hcd
= platform_get_drvdata(pdev
);
1197 spin_lock(&the_controller
->lock
);
1199 for (rhport
= 0; rhport
< VHCI_NPORTS
; rhport
++)
1200 if (the_controller
->port_status
[rhport
] &
1201 USB_PORT_STAT_CONNECTION
)
1204 spin_unlock(&the_controller
->lock
);
1206 if (connected
> 0) {
1207 usbip_uinfo("We have %d active connection%s. Do not suspend.\n",
1208 connected
, (connected
== 1 ? "" : "s"));
1211 usbip_uinfo("suspend vhci_hcd");
1212 clear_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
1218 static int vhci_hcd_resume(struct platform_device
*pdev
)
1220 struct usb_hcd
*hcd
;
1222 dev_dbg(&pdev
->dev
, "%s\n", __func__
);
1224 hcd
= platform_get_drvdata(pdev
);
1225 set_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
1226 usb_hcd_poll_rh_status(hcd
);
1233 #define vhci_hcd_suspend NULL
1234 #define vhci_hcd_resume NULL
1239 static struct platform_driver vhci_driver
= {
1240 .probe
= vhci_hcd_probe
,
1241 .remove
= __devexit_p(vhci_hcd_remove
),
1242 .suspend
= vhci_hcd_suspend
,
1243 .resume
= vhci_hcd_resume
,
1245 .name
= (char *) driver_name
,
1246 .owner
= THIS_MODULE
,
1250 /*----------------------------------------------------------------------*/
1253 * The VHCI 'device' is 'virtual'; not a real plug&play hardware.
1254 * We need to add this virtual device as a platform device arbitrarily:
1255 * 1. platform_device_register()
1257 static void the_pdev_release(struct device
*dev
)
1262 static struct platform_device the_pdev
= {
1263 /* should be the same name as driver_name */
1264 .name
= (char *) driver_name
,
1267 /* .driver = &vhci_driver, */
1268 .release
= the_pdev_release
,
1272 static int __init
vhci_init(void)
1276 usbip_dbg_vhci_hc("enter\n");
1280 printk(KERN_INFO KBUILD_MODNAME
": %s, %s\n", driver_name
,
1283 ret
= platform_driver_register(&vhci_driver
);
1285 goto err_driver_register
;
1287 ret
= platform_device_register(&the_pdev
);
1289 goto err_platform_device_register
;
1291 usbip_dbg_vhci_hc("bye\n");
1294 /* error occurred */
1295 err_platform_device_register
:
1296 platform_driver_unregister(&vhci_driver
);
1298 err_driver_register
:
1299 usbip_dbg_vhci_hc("bye\n");
1302 module_init(vhci_init
);
1304 static void __exit
vhci_cleanup(void)
1306 usbip_dbg_vhci_hc("enter\n");
1308 platform_device_unregister(&the_pdev
);
1309 platform_driver_unregister(&vhci_driver
);
1311 usbip_dbg_vhci_hc("bye\n");
1313 module_exit(vhci_cleanup
);