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,
20 #include <linux/init.h>
21 #include <linux/file.h>
22 #include <linux/kernel.h>
23 #include <linux/kthread.h>
24 #include <linux/module.h>
25 #include <linux/platform_device.h>
26 #include <linux/slab.h>
28 #include "usbip_common.h"
31 #define DRIVER_AUTHOR "Takahiro Hirofuchi"
32 #define DRIVER_DESC "USB/IP 'Virtual' Host Controller (VHCI) Driver"
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
44 /* See usb gadget dummy hcd */
46 static int vhci_hub_status(struct usb_hcd
*hcd
, char *buff
);
47 static int vhci_hub_control(struct usb_hcd
*hcd
, u16 typeReq
, u16 wValue
,
48 u16 wIndex
, char *buff
, u16 wLength
);
49 static int vhci_urb_enqueue(struct usb_hcd
*hcd
, struct urb
*urb
,
51 static int vhci_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
, int status
);
52 static int vhci_start(struct usb_hcd
*vhci_hcd
);
53 static void vhci_stop(struct usb_hcd
*hcd
);
54 static int vhci_get_frame_number(struct usb_hcd
*hcd
);
56 static const char driver_name
[] = "vhci_hcd";
57 static const char driver_desc
[] = "USB/IP Virtual Host Controller";
59 struct vhci_hcd
*the_controller
;
61 static const char * const bit_desc
[] = {
78 "C_CONNECTION", /*16*/
81 "C_OVER_CURRENT", /*19*/
96 static void dump_port_status_diff(u32 prev_status
, u32 new_status
)
101 pr_debug("status prev -> new: %08x -> %08x\n", prev_status
, new_status
);
103 u32 prev
= prev_status
& bit
;
104 u32
new = new_status
& bit
;
109 else if (prev
&& !new)
115 pr_debug(" %c%s\n", change
, bit_desc
[i
]);
122 void rh_port_connect(int rhport
, enum usb_device_speed speed
)
126 usbip_dbg_vhci_rh("rh_port_connect %d\n", rhport
);
128 spin_lock_irqsave(&the_controller
->lock
, flags
);
130 the_controller
->port_status
[rhport
] |= USB_PORT_STAT_CONNECTION
131 | (1 << USB_PORT_FEAT_C_CONNECTION
);
135 the_controller
->port_status
[rhport
] |= USB_PORT_STAT_HIGH_SPEED
;
138 the_controller
->port_status
[rhport
] |= USB_PORT_STAT_LOW_SPEED
;
144 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
146 usb_hcd_poll_rh_status(vhci_to_hcd(the_controller
));
149 static void rh_port_disconnect(int rhport
)
153 usbip_dbg_vhci_rh("rh_port_disconnect %d\n", rhport
);
155 spin_lock_irqsave(&the_controller
->lock
, flags
);
157 the_controller
->port_status
[rhport
] &= ~USB_PORT_STAT_CONNECTION
;
158 the_controller
->port_status
[rhport
] |=
159 (1 << USB_PORT_FEAT_C_CONNECTION
);
161 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
162 usb_hcd_poll_rh_status(vhci_to_hcd(the_controller
));
165 #define PORT_C_MASK \
166 ((USB_PORT_STAT_C_CONNECTION \
167 | USB_PORT_STAT_C_ENABLE \
168 | USB_PORT_STAT_C_SUSPEND \
169 | USB_PORT_STAT_C_OVERCURRENT \
170 | USB_PORT_STAT_C_RESET) << 16)
173 * Returns 0 if the status hasn't changed, or the number of bytes in buf.
174 * Ports are 0-indexed from the HCD point of view,
175 * and 1-indexed from the USB core pointer of view.
177 * @buf: a bitmap to show which port status has been changed.
179 * bit 1: the status of port 0 has been changed.
180 * bit 2: the status of port 1 has been changed.
183 static int vhci_hub_status(struct usb_hcd
*hcd
, char *buf
)
185 struct vhci_hcd
*vhci
;
191 retval
= DIV_ROUND_UP(VHCI_NPORTS
+ 1, 8);
192 memset(buf
, 0, retval
);
194 vhci
= hcd_to_vhci(hcd
);
196 spin_lock_irqsave(&vhci
->lock
, flags
);
197 if (!HCD_HW_ACCESSIBLE(hcd
)) {
198 usbip_dbg_vhci_rh("hw accessible flag not on?\n");
202 /* check pseudo status register for each port */
203 for (rhport
= 0; rhport
< VHCI_NPORTS
; rhport
++) {
204 if ((vhci
->port_status
[rhport
] & PORT_C_MASK
)) {
205 /* The status of a port has been changed, */
206 usbip_dbg_vhci_rh("port %d status changed\n", rhport
);
208 buf
[(rhport
+ 1) / 8] |= 1 << (rhport
+ 1) % 8;
213 if ((hcd
->state
== HC_STATE_SUSPENDED
) && (changed
== 1))
214 usb_hcd_resume_root_hub(hcd
);
217 spin_unlock_irqrestore(&vhci
->lock
, flags
);
218 return changed
? retval
: 0;
221 static inline void hub_descriptor(struct usb_hub_descriptor
*desc
)
223 memset(desc
, 0, sizeof(*desc
));
224 desc
->bDescriptorType
= USB_DT_HUB
;
225 desc
->bDescLength
= 9;
226 desc
->wHubCharacteristics
= cpu_to_le16(
227 HUB_CHAR_INDV_PORT_LPSM
| HUB_CHAR_COMMON_OCPM
);
228 desc
->bNbrPorts
= VHCI_NPORTS
;
229 desc
->u
.hs
.DeviceRemovable
[0] = 0xff;
230 desc
->u
.hs
.DeviceRemovable
[1] = 0xff;
233 static int vhci_hub_control(struct usb_hcd
*hcd
, u16 typeReq
, u16 wValue
,
234 u16 wIndex
, char *buf
, u16 wLength
)
236 struct vhci_hcd
*dum
;
241 u32 prev_port_status
[VHCI_NPORTS
];
243 if (!HCD_HW_ACCESSIBLE(hcd
))
248 * wIndex shows the port number and begins from 1.
250 usbip_dbg_vhci_rh("typeReq %x wValue %x wIndex %x\n", typeReq
, wValue
,
252 if (wIndex
> VHCI_NPORTS
)
253 pr_err("invalid port number %d\n", wIndex
);
254 rhport
= ((__u8
)(wIndex
& 0x00ff)) - 1;
256 dum
= hcd_to_vhci(hcd
);
258 spin_lock_irqsave(&dum
->lock
, flags
);
260 /* store old status and compare now and old later */
261 if (usbip_dbg_flag_vhci_rh
) {
262 memcpy(prev_port_status
, dum
->port_status
,
263 sizeof(prev_port_status
));
267 case ClearHubFeature
:
268 usbip_dbg_vhci_rh(" ClearHubFeature\n");
270 case ClearPortFeature
:
272 case USB_PORT_FEAT_SUSPEND
:
273 if (dum
->port_status
[rhport
] & USB_PORT_STAT_SUSPEND
) {
274 /* 20msec signaling */
277 jiffies
+ msecs_to_jiffies(20);
280 case USB_PORT_FEAT_POWER
:
282 " ClearPortFeature: USB_PORT_FEAT_POWER\n");
283 dum
->port_status
[rhport
] = 0;
286 case USB_PORT_FEAT_C_RESET
:
288 " ClearPortFeature: USB_PORT_FEAT_C_RESET\n");
289 switch (dum
->vdev
[rhport
].speed
) {
291 dum
->port_status
[rhport
] |=
292 USB_PORT_STAT_HIGH_SPEED
;
295 dum
->port_status
[rhport
] |=
296 USB_PORT_STAT_LOW_SPEED
;
302 usbip_dbg_vhci_rh(" ClearPortFeature: default %x\n",
304 dum
->port_status
[rhport
] &= ~(1 << wValue
);
308 case GetHubDescriptor
:
309 usbip_dbg_vhci_rh(" GetHubDescriptor\n");
310 hub_descriptor((struct usb_hub_descriptor
*) buf
);
313 usbip_dbg_vhci_rh(" GetHubStatus\n");
314 *(__le32
*) buf
= cpu_to_le32(0);
317 usbip_dbg_vhci_rh(" GetPortStatus port %x\n", wIndex
);
318 if (wIndex
> VHCI_NPORTS
|| wIndex
< 1) {
319 pr_err("invalid port number %d\n", wIndex
);
323 /* we do not care about resume. */
325 /* whoever resets or resumes must GetPortStatus to
328 if (dum
->resuming
&& time_after(jiffies
, dum
->re_timeout
)) {
329 dum
->port_status
[rhport
] |=
330 (1 << USB_PORT_FEAT_C_SUSPEND
);
331 dum
->port_status
[rhport
] &=
332 ~(1 << USB_PORT_FEAT_SUSPEND
);
337 if ((dum
->port_status
[rhport
] & (1 << USB_PORT_FEAT_RESET
)) !=
338 0 && time_after(jiffies
, dum
->re_timeout
)) {
339 dum
->port_status
[rhport
] |=
340 (1 << USB_PORT_FEAT_C_RESET
);
341 dum
->port_status
[rhport
] &=
342 ~(1 << USB_PORT_FEAT_RESET
);
345 if (dum
->vdev
[rhport
].ud
.status
==
346 VDEV_ST_NOTASSIGNED
) {
348 " enable rhport %d (status %u)\n",
350 dum
->vdev
[rhport
].ud
.status
);
351 dum
->port_status
[rhport
] |=
352 USB_PORT_STAT_ENABLE
;
355 ((__le16
*) buf
)[0] = cpu_to_le16(dum
->port_status
[rhport
]);
356 ((__le16
*) buf
)[1] =
357 cpu_to_le16(dum
->port_status
[rhport
] >> 16);
359 usbip_dbg_vhci_rh(" GetPortStatus bye %x %x\n", ((u16
*)buf
)[0],
363 usbip_dbg_vhci_rh(" SetHubFeature\n");
368 case USB_PORT_FEAT_SUSPEND
:
370 " SetPortFeature: USB_PORT_FEAT_SUSPEND\n");
372 case USB_PORT_FEAT_RESET
:
374 " SetPortFeature: USB_PORT_FEAT_RESET\n");
375 /* if it's already running, disconnect first */
376 if (dum
->port_status
[rhport
] & USB_PORT_STAT_ENABLE
) {
377 dum
->port_status
[rhport
] &=
378 ~(USB_PORT_STAT_ENABLE
|
379 USB_PORT_STAT_LOW_SPEED
|
380 USB_PORT_STAT_HIGH_SPEED
);
381 /* FIXME test that code path! */
383 /* 50msec reset signaling */
384 dum
->re_timeout
= jiffies
+ msecs_to_jiffies(50);
388 usbip_dbg_vhci_rh(" SetPortFeature: default %d\n",
390 dum
->port_status
[rhport
] |= (1 << wValue
);
396 pr_err("default: no such request\n");
398 /* "protocol stall" on error */
402 if (usbip_dbg_flag_vhci_rh
) {
403 pr_debug("port %d\n", rhport
);
404 /* Only dump valid port status */
406 dump_port_status_diff(prev_port_status
[rhport
],
407 dum
->port_status
[rhport
]);
410 usbip_dbg_vhci_rh(" bye\n");
412 spin_unlock_irqrestore(&dum
->lock
, flags
);
417 static struct vhci_device
*get_vdev(struct usb_device
*udev
)
424 for (i
= 0; i
< VHCI_NPORTS
; i
++)
425 if (the_controller
->vdev
[i
].udev
== udev
)
426 return port_to_vdev(i
);
431 static void vhci_tx_urb(struct urb
*urb
)
433 struct vhci_device
*vdev
= get_vdev(urb
->dev
);
434 struct vhci_priv
*priv
;
438 pr_err("could not get virtual device");
442 priv
= kzalloc(sizeof(struct vhci_priv
), GFP_ATOMIC
);
444 usbip_event_add(&vdev
->ud
, VDEV_EVENT_ERROR_MALLOC
);
448 spin_lock_irqsave(&vdev
->priv_lock
, flags
);
450 priv
->seqnum
= atomic_inc_return(&the_controller
->seqnum
);
451 if (priv
->seqnum
== 0xffff)
452 dev_info(&urb
->dev
->dev
, "seqnum max\n");
457 urb
->hcpriv
= (void *) priv
;
459 list_add_tail(&priv
->list
, &vdev
->priv_tx
);
461 wake_up(&vdev
->waitq_tx
);
462 spin_unlock_irqrestore(&vdev
->priv_lock
, flags
);
465 static int vhci_urb_enqueue(struct usb_hcd
*hcd
, struct urb
*urb
,
468 struct device
*dev
= &urb
->dev
->dev
;
470 struct vhci_device
*vdev
;
473 usbip_dbg_vhci_hc("enter, usb_hcd %p urb %p mem_flags %d\n",
474 hcd
, urb
, mem_flags
);
476 /* patch to usb_sg_init() is in 2.5.60 */
477 BUG_ON(!urb
->transfer_buffer
&& urb
->transfer_buffer_length
);
479 spin_lock_irqsave(&the_controller
->lock
, flags
);
481 if (urb
->status
!= -EINPROGRESS
) {
482 dev_err(dev
, "URB already unlinked!, status %d\n", urb
->status
);
483 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
487 vdev
= port_to_vdev(urb
->dev
->portnum
-1);
489 /* refuse enqueue for dead connection */
490 spin_lock(&vdev
->ud
.lock
);
491 if (vdev
->ud
.status
== VDEV_ST_NULL
||
492 vdev
->ud
.status
== VDEV_ST_ERROR
) {
493 dev_err(dev
, "enqueue for inactive port %d\n", vdev
->rhport
);
494 spin_unlock(&vdev
->ud
.lock
);
495 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
498 spin_unlock(&vdev
->ud
.lock
);
500 ret
= usb_hcd_link_urb_to_ep(hcd
, urb
);
505 * The enumeration process is as follows;
507 * 1. Get_Descriptor request to DevAddrs(0) EndPoint(0)
508 * to get max packet length of default pipe
510 * 2. Set_Address request to DevAddr(0) EndPoint(0)
513 if (usb_pipedevice(urb
->pipe
) == 0) {
514 __u8 type
= usb_pipetype(urb
->pipe
);
515 struct usb_ctrlrequest
*ctrlreq
=
516 (struct usb_ctrlrequest
*) urb
->setup_packet
;
518 if (type
!= PIPE_CONTROL
|| !ctrlreq
) {
519 dev_err(dev
, "invalid request to devnum 0\n");
524 switch (ctrlreq
->bRequest
) {
525 case USB_REQ_SET_ADDRESS
:
526 /* set_address may come when a device is reset */
527 dev_info(dev
, "SetAddress Request (%d) to port %d\n",
528 ctrlreq
->wValue
, vdev
->rhport
);
530 usb_put_dev(vdev
->udev
);
531 vdev
->udev
= usb_get_dev(urb
->dev
);
533 spin_lock(&vdev
->ud
.lock
);
534 vdev
->ud
.status
= VDEV_ST_USED
;
535 spin_unlock(&vdev
->ud
.lock
);
537 if (urb
->status
== -EINPROGRESS
) {
538 /* This request is successfully completed. */
539 /* If not -EINPROGRESS, possibly unlinked. */
545 case USB_REQ_GET_DESCRIPTOR
:
546 if (ctrlreq
->wValue
== cpu_to_le16(USB_DT_DEVICE
<< 8))
548 "Not yet?:Get_Descriptor to device 0 (get max pipe size)\n");
550 usb_put_dev(vdev
->udev
);
551 vdev
->udev
= usb_get_dev(urb
->dev
);
557 "invalid request to devnum 0 bRequest %u, wValue %u\n",
568 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
573 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
575 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
577 usb_hcd_giveback_urb(vhci_to_hcd(the_controller
),
583 * vhci_rx gives back the urb after receiving the reply of the urb. If an
584 * unlink pdu is sent or not, vhci_rx receives a normal return pdu and gives
585 * back its urb. For the driver unlinking the urb, the content of the urb is
586 * not important, but the calling to its completion handler is important; the
587 * completion of unlinking is notified by the completion handler.
592 * - When vhci_hcd receives RET_SUBMIT,
594 * - case 1a). the urb of the pdu is not unlinking.
596 * => just give back the urb
598 * - case 1b). the urb of the pdu is unlinking.
599 * - usbip.ko will return a reply of the unlinking request.
600 * => give back the urb now and go to case 2b).
602 * - When vhci_hcd receives RET_UNLINK,
604 * - case 2a). a submit request is still pending in vhci_hcd.
605 * - urb was really pending in usbip.ko and urb_unlink_urb() was
607 * => free a pending submit request
608 * => notify unlink completeness by giving back the urb
610 * - case 2b). a submit request is *not* pending in vhci_hcd.
611 * - urb was already given back to the core driver.
612 * => do not give back the urb
617 * - When usbip receives CMD_UNLINK,
619 * - case 3a). the urb of the unlink request is now in submission.
620 * => do usb_unlink_urb().
621 * => after the unlink is completed, send RET_UNLINK.
623 * - case 3b). the urb of the unlink request is not in submission.
624 * - may be already completed or never be received
628 static int vhci_urb_dequeue(struct usb_hcd
*hcd
, struct urb
*urb
, int status
)
630 struct vhci_priv
*priv
;
631 struct vhci_device
*vdev
;
634 pr_info("dequeue a urb %p\n", urb
);
636 spin_lock_irqsave(&the_controller
->lock
, flags
);
640 /* URB was never linked! or will be soon given back by
642 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
649 ret
= usb_hcd_check_unlink_urb(hcd
, urb
, status
);
651 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
656 /* send unlink request here? */
659 if (!vdev
->ud
.tcp_socket
) {
660 /* tcp connection is closed */
661 spin_lock(&vdev
->priv_lock
);
663 pr_info("device %p seems to be disconnected\n", vdev
);
664 list_del(&priv
->list
);
668 spin_unlock(&vdev
->priv_lock
);
671 * If tcp connection is alive, we have sent CMD_UNLINK.
672 * vhci_rx will receive RET_UNLINK and give back the URB.
673 * Otherwise, we give back it here.
675 pr_info("gives back urb %p\n", urb
);
677 usb_hcd_unlink_urb_from_ep(hcd
, urb
);
679 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
680 usb_hcd_giveback_urb(vhci_to_hcd(the_controller
), urb
,
682 spin_lock_irqsave(&the_controller
->lock
, flags
);
685 /* tcp connection is alive */
686 struct vhci_unlink
*unlink
;
688 spin_lock(&vdev
->priv_lock
);
690 /* setup CMD_UNLINK pdu */
691 unlink
= kzalloc(sizeof(struct vhci_unlink
), GFP_ATOMIC
);
693 spin_unlock(&vdev
->priv_lock
);
694 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
695 usbip_event_add(&vdev
->ud
, VDEV_EVENT_ERROR_MALLOC
);
699 unlink
->seqnum
= atomic_inc_return(&the_controller
->seqnum
);
700 if (unlink
->seqnum
== 0xffff)
701 pr_info("seqnum max\n");
703 unlink
->unlink_seqnum
= priv
->seqnum
;
705 pr_info("device %p seems to be still connected\n", vdev
);
707 /* send cmd_unlink and try to cancel the pending URB in the
709 list_add_tail(&unlink
->list
, &vdev
->unlink_tx
);
710 wake_up(&vdev
->waitq_tx
);
712 spin_unlock(&vdev
->priv_lock
);
715 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
717 usbip_dbg_vhci_hc("leave\n");
721 static void vhci_device_unlink_cleanup(struct vhci_device
*vdev
)
723 struct vhci_unlink
*unlink
, *tmp
;
726 spin_lock_irqsave(&the_controller
->lock
, flags
);
727 spin_lock(&vdev
->priv_lock
);
729 list_for_each_entry_safe(unlink
, tmp
, &vdev
->unlink_tx
, list
) {
730 pr_info("unlink cleanup tx %lu\n", unlink
->unlink_seqnum
);
731 list_del(&unlink
->list
);
735 while (!list_empty(&vdev
->unlink_rx
)) {
738 unlink
= list_first_entry(&vdev
->unlink_rx
, struct vhci_unlink
,
741 /* give back URB of unanswered unlink request */
742 pr_info("unlink cleanup rx %lu\n", unlink
->unlink_seqnum
);
744 urb
= pickup_urb_and_free_priv(vdev
, unlink
->unlink_seqnum
);
746 pr_info("the urb (seqnum %lu) was already given back\n",
747 unlink
->unlink_seqnum
);
748 list_del(&unlink
->list
);
753 urb
->status
= -ENODEV
;
755 usb_hcd_unlink_urb_from_ep(vhci_to_hcd(the_controller
), urb
);
757 list_del(&unlink
->list
);
759 spin_unlock(&vdev
->priv_lock
);
760 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
762 usb_hcd_giveback_urb(vhci_to_hcd(the_controller
), urb
,
765 spin_lock_irqsave(&the_controller
->lock
, flags
);
766 spin_lock(&vdev
->priv_lock
);
771 spin_unlock(&vdev
->priv_lock
);
772 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
776 * The important thing is that only one context begins cleanup.
777 * This is why error handling and cleanup become simple.
778 * We do not want to consider race condition as possible.
780 static void vhci_shutdown_connection(struct usbip_device
*ud
)
782 struct vhci_device
*vdev
= container_of(ud
, struct vhci_device
, ud
);
784 /* need this? see stub_dev.c */
785 if (ud
->tcp_socket
) {
786 pr_debug("shutdown tcp_socket %p\n", ud
->tcp_socket
);
787 kernel_sock_shutdown(ud
->tcp_socket
, SHUT_RDWR
);
790 /* kill threads related to this sdev */
791 if (vdev
->ud
.tcp_rx
) {
792 kthread_stop_put(vdev
->ud
.tcp_rx
);
793 vdev
->ud
.tcp_rx
= NULL
;
795 if (vdev
->ud
.tcp_tx
) {
796 kthread_stop_put(vdev
->ud
.tcp_tx
);
797 vdev
->ud
.tcp_tx
= NULL
;
799 pr_info("stop threads\n");
801 /* active connection is closed */
802 if (vdev
->ud
.tcp_socket
) {
803 sockfd_put(vdev
->ud
.tcp_socket
);
804 vdev
->ud
.tcp_socket
= NULL
;
806 pr_info("release socket\n");
808 vhci_device_unlink_cleanup(vdev
);
811 * rh_port_disconnect() is a trigger of ...
812 * usb_disable_device():
813 * disable all the endpoints for a USB device.
814 * usb_disable_endpoint():
815 * disable endpoints. pending urbs are unlinked(dequeued).
817 * NOTE: After calling rh_port_disconnect(), the USB device drivers of a
818 * detached device should release used urbs in a cleanup function (i.e.
819 * xxx_disconnect()). Therefore, vhci_hcd does not need to release
820 * pushed urbs and their private data in this function.
822 * NOTE: vhci_dequeue() must be considered carefully. When shutting down
823 * a connection, vhci_shutdown_connection() expects vhci_dequeue()
824 * gives back pushed urbs and frees their private data by request of
825 * the cleanup function of a USB driver. When unlinking a urb with an
826 * active connection, vhci_dequeue() does not give back the urb which
827 * is actually given back by vhci_rx after receiving its return pdu.
830 rh_port_disconnect(vdev
->rhport
);
832 pr_info("disconnect device\n");
836 static void vhci_device_reset(struct usbip_device
*ud
)
838 struct vhci_device
*vdev
= container_of(ud
, struct vhci_device
, ud
);
841 spin_lock_irqsave(&ud
->lock
, flags
);
846 usb_put_dev(vdev
->udev
);
849 if (ud
->tcp_socket
) {
850 sockfd_put(ud
->tcp_socket
);
851 ud
->tcp_socket
= NULL
;
853 ud
->status
= VDEV_ST_NULL
;
855 spin_unlock_irqrestore(&ud
->lock
, flags
);
858 static void vhci_device_unusable(struct usbip_device
*ud
)
862 spin_lock_irqsave(&ud
->lock
, flags
);
863 ud
->status
= VDEV_ST_ERROR
;
864 spin_unlock_irqrestore(&ud
->lock
, flags
);
867 static void vhci_device_init(struct vhci_device
*vdev
)
869 memset(vdev
, 0, sizeof(*vdev
));
871 vdev
->ud
.side
= USBIP_VHCI
;
872 vdev
->ud
.status
= VDEV_ST_NULL
;
873 spin_lock_init(&vdev
->ud
.lock
);
875 INIT_LIST_HEAD(&vdev
->priv_rx
);
876 INIT_LIST_HEAD(&vdev
->priv_tx
);
877 INIT_LIST_HEAD(&vdev
->unlink_tx
);
878 INIT_LIST_HEAD(&vdev
->unlink_rx
);
879 spin_lock_init(&vdev
->priv_lock
);
881 init_waitqueue_head(&vdev
->waitq_tx
);
883 vdev
->ud
.eh_ops
.shutdown
= vhci_shutdown_connection
;
884 vdev
->ud
.eh_ops
.reset
= vhci_device_reset
;
885 vdev
->ud
.eh_ops
.unusable
= vhci_device_unusable
;
887 usbip_start_eh(&vdev
->ud
);
890 static int vhci_start(struct usb_hcd
*hcd
)
892 struct vhci_hcd
*vhci
= hcd_to_vhci(hcd
);
896 usbip_dbg_vhci_hc("enter vhci_start\n");
898 /* initialize private data of usb_hcd */
900 for (rhport
= 0; rhport
< VHCI_NPORTS
; rhport
++) {
901 struct vhci_device
*vdev
= &vhci
->vdev
[rhport
];
903 vhci_device_init(vdev
);
904 vdev
->rhport
= rhport
;
907 atomic_set(&vhci
->seqnum
, 0);
908 spin_lock_init(&vhci
->lock
);
910 hcd
->power_budget
= 0; /* no limit */
911 hcd
->uses_new_polling
= 1;
913 /* vhci_hcd is now ready to be controlled through sysfs */
914 err
= sysfs_create_group(&vhci_dev(vhci
)->kobj
, &dev_attr_group
);
916 pr_err("create sysfs files\n");
923 static void vhci_stop(struct usb_hcd
*hcd
)
925 struct vhci_hcd
*vhci
= hcd_to_vhci(hcd
);
928 usbip_dbg_vhci_hc("stop VHCI controller\n");
930 /* 1. remove the userland interface of vhci_hcd */
931 sysfs_remove_group(&vhci_dev(vhci
)->kobj
, &dev_attr_group
);
933 /* 2. shutdown all the ports of vhci_hcd */
934 for (rhport
= 0; rhport
< VHCI_NPORTS
; rhport
++) {
935 struct vhci_device
*vdev
= &vhci
->vdev
[rhport
];
937 usbip_event_add(&vdev
->ud
, VDEV_EVENT_REMOVED
);
938 usbip_stop_eh(&vdev
->ud
);
942 static int vhci_get_frame_number(struct usb_hcd
*hcd
)
944 dev_err_ratelimited(&hcd
->self
.root_hub
->dev
, "Not yet implemented\n");
950 /* FIXME: suspend/resume */
951 static int vhci_bus_suspend(struct usb_hcd
*hcd
)
953 struct vhci_hcd
*vhci
= hcd_to_vhci(hcd
);
956 dev_dbg(&hcd
->self
.root_hub
->dev
, "%s\n", __func__
);
958 spin_lock_irqsave(&vhci
->lock
, flags
);
959 hcd
->state
= HC_STATE_SUSPENDED
;
960 spin_unlock_irqrestore(&vhci
->lock
, flags
);
965 static int vhci_bus_resume(struct usb_hcd
*hcd
)
967 struct vhci_hcd
*vhci
= hcd_to_vhci(hcd
);
971 dev_dbg(&hcd
->self
.root_hub
->dev
, "%s\n", __func__
);
973 spin_lock_irqsave(&vhci
->lock
, flags
);
974 if (!HCD_HW_ACCESSIBLE(hcd
))
977 hcd
->state
= HC_STATE_RUNNING
;
978 spin_unlock_irqrestore(&vhci
->lock
, flags
);
985 #define vhci_bus_suspend NULL
986 #define vhci_bus_resume NULL
989 static struct hc_driver vhci_hc_driver
= {
990 .description
= driver_name
,
991 .product_desc
= driver_desc
,
992 .hcd_priv_size
= sizeof(struct vhci_hcd
),
999 .urb_enqueue
= vhci_urb_enqueue
,
1000 .urb_dequeue
= vhci_urb_dequeue
,
1002 .get_frame_number
= vhci_get_frame_number
,
1004 .hub_status_data
= vhci_hub_status
,
1005 .hub_control
= vhci_hub_control
,
1006 .bus_suspend
= vhci_bus_suspend
,
1007 .bus_resume
= vhci_bus_resume
,
1010 static int vhci_hcd_probe(struct platform_device
*pdev
)
1012 struct usb_hcd
*hcd
;
1015 usbip_dbg_vhci_hc("name %s id %d\n", pdev
->name
, pdev
->id
);
1018 * Allocate and initialize hcd.
1019 * Our private data is also allocated automatically.
1021 hcd
= usb_create_hcd(&vhci_hc_driver
, &pdev
->dev
, dev_name(&pdev
->dev
));
1023 pr_err("create hcd failed\n");
1028 /* this is private data for vhci_hcd */
1029 the_controller
= hcd_to_vhci(hcd
);
1032 * Finish generic HCD structure initialization and register.
1033 * Call the driver's reset() and start() routines.
1035 ret
= usb_add_hcd(hcd
, 0, 0);
1037 pr_err("usb_add_hcd failed %d\n", ret
);
1039 the_controller
= NULL
;
1043 usbip_dbg_vhci_hc("bye\n");
1047 static int vhci_hcd_remove(struct platform_device
*pdev
)
1049 struct usb_hcd
*hcd
;
1051 hcd
= platform_get_drvdata(pdev
);
1056 * Disconnects the root hub,
1057 * then reverses the effects of usb_add_hcd(),
1058 * invoking the HCD's stop() methods.
1060 usb_remove_hcd(hcd
);
1062 the_controller
= NULL
;
1069 /* what should happen for USB/IP under suspend/resume? */
1070 static int vhci_hcd_suspend(struct platform_device
*pdev
, pm_message_t state
)
1072 struct usb_hcd
*hcd
;
1076 unsigned long flags
;
1078 hcd
= platform_get_drvdata(pdev
);
1080 spin_lock_irqsave(&the_controller
->lock
, flags
);
1082 for (rhport
= 0; rhport
< VHCI_NPORTS
; rhport
++)
1083 if (the_controller
->port_status
[rhport
] &
1084 USB_PORT_STAT_CONNECTION
)
1087 spin_unlock_irqrestore(&the_controller
->lock
, flags
);
1089 if (connected
> 0) {
1090 dev_info(&pdev
->dev
,
1091 "We have %d active connection%s. Do not suspend.\n",
1092 connected
, (connected
== 1 ? "" : "s"));
1095 dev_info(&pdev
->dev
, "suspend vhci_hcd");
1096 clear_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
1102 static int vhci_hcd_resume(struct platform_device
*pdev
)
1104 struct usb_hcd
*hcd
;
1106 dev_dbg(&pdev
->dev
, "%s\n", __func__
);
1108 hcd
= platform_get_drvdata(pdev
);
1109 set_bit(HCD_FLAG_HW_ACCESSIBLE
, &hcd
->flags
);
1110 usb_hcd_poll_rh_status(hcd
);
1117 #define vhci_hcd_suspend NULL
1118 #define vhci_hcd_resume NULL
1122 static struct platform_driver vhci_driver
= {
1123 .probe
= vhci_hcd_probe
,
1124 .remove
= vhci_hcd_remove
,
1125 .suspend
= vhci_hcd_suspend
,
1126 .resume
= vhci_hcd_resume
,
1128 .name
= driver_name
,
1133 * The VHCI 'device' is 'virtual'; not a real plug&play hardware.
1134 * We need to add this virtual device as a platform device arbitrarily:
1135 * 1. platform_device_register()
1137 static void the_pdev_release(struct device
*dev
)
1141 static struct platform_device the_pdev
= {
1142 /* should be the same name as driver_name */
1143 .name
= driver_name
,
1146 .release
= the_pdev_release
,
1150 static int __init
vhci_hcd_init(void)
1157 ret
= platform_driver_register(&vhci_driver
);
1159 goto err_driver_register
;
1161 ret
= platform_device_register(&the_pdev
);
1163 goto err_platform_device_register
;
1165 pr_info(DRIVER_DESC
" v" USBIP_VERSION
"\n");
1168 err_platform_device_register
:
1169 platform_driver_unregister(&vhci_driver
);
1170 err_driver_register
:
1174 static void __exit
vhci_hcd_exit(void)
1176 platform_device_unregister(&the_pdev
);
1177 platform_driver_unregister(&vhci_driver
);
1180 module_init(vhci_hcd_init
);
1181 module_exit(vhci_hcd_exit
);
1183 MODULE_AUTHOR(DRIVER_AUTHOR
);
1184 MODULE_DESCRIPTION(DRIVER_DESC
);
1185 MODULE_LICENSE("GPL");
1186 MODULE_VERSION(USBIP_VERSION
);