blob: a863a98a91ce01afa0e12e8d86eec5b8c696e58d [file] [log] [blame]
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06001/*
2 * Copyright (C) 2003-2008 Takahiro Hirofuchi
3 *
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.
8 *
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -06009 */
10
Tobias Klauser306dac62011-08-22 08:53:28 +020011#ifndef __USBIP_VHCI_H
12#define __USBIP_VHCI_H
13
matt mooney7aaacb42011-05-11 22:33:43 -070014#include <linux/device.h>
15#include <linux/list.h>
16#include <linux/spinlock.h>
17#include <linux/sysfs.h>
18#include <linux/types.h>
19#include <linux/usb.h>
Eric Lescouet27729aa2010-04-24 23:21:52 +020020#include <linux/usb/hcd.h>
matt mooney7aaacb42011-05-11 22:33:43 -070021#include <linux/wait.h>
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060022
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060023struct vhci_device {
24 struct usb_device *udev;
25
26 /*
27 * devid specifies a remote usb device uniquely instead
28 * of combination of busnum and devnum.
29 */
30 __u32 devid;
31
32 /* speed of a remote device */
33 enum usb_device_speed speed;
34
matt mooneyddbc9bc2011-05-06 03:47:49 -070035 /* vhci root-hub port to which this device is attached */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060036 __u32 rhport;
37
38 struct usbip_device ud;
39
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060040 /* lock for the below link lists */
41 spinlock_t priv_lock;
42
43 /* vhci_priv is linked to one of them. */
44 struct list_head priv_tx;
45 struct list_head priv_rx;
46
47 /* vhci_unlink is linked to one of them */
48 struct list_head unlink_tx;
49 struct list_head unlink_rx;
50
51 /* vhci_tx thread sleeps for this queue */
52 wait_queue_head_t waitq_tx;
53};
54
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060055/* urb->hcpriv, use container_of() */
56struct vhci_priv {
57 unsigned long seqnum;
58 struct list_head list;
59
60 struct vhci_device *vdev;
61 struct urb *urb;
62};
63
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060064struct vhci_unlink {
65 /* seqnum of this request */
66 unsigned long seqnum;
67
68 struct list_head list;
69
70 /* seqnum of the unlink target */
71 unsigned long unlink_seqnum;
72};
73
Bart Westgeest1132b9a2012-06-11 16:57:30 -040074/* Number of supported ports. Value has an upperbound of USB_MAXCHILDREN */
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060075#define VHCI_NPORTS 8
76
77/* for usb_bus.hcpriv */
78struct vhci_hcd {
matt mooneyddbc9bc2011-05-06 03:47:49 -070079 spinlock_t lock;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060080
matt mooneyddbc9bc2011-05-06 03:47:49 -070081 u32 port_status[VHCI_NPORTS];
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060082
matt mooneyddbc9bc2011-05-06 03:47:49 -070083 unsigned resuming:1;
84 unsigned long re_timeout;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060085
86 atomic_t seqnum;
87
88 /*
89 * NOTE:
90 * wIndex shows the port number and begins from 1.
91 * But, the index of this array begins from 0.
92 */
93 struct vhci_device vdev[VHCI_NPORTS];
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060094};
95
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060096extern struct vhci_hcd *the_controller;
Márton Némethcf77acf2011-05-30 21:50:26 +020097extern const struct attribute_group dev_attr_group;
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060098
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -060099/* vhci_hcd.c */
100void rh_port_connect(int rhport, enum usb_device_speed speed);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600101
matt mooneyfc184a32011-05-11 01:54:23 -0700102/* vhci_rx.c */
matt mooneyddbc9bc2011-05-06 03:47:49 -0700103struct urb *pickup_urb_and_free_priv(struct vhci_device *vdev, __u32 seqnum);
matt mooneyfc184a32011-05-11 01:54:23 -0700104int vhci_rx_loop(void *data);
Max Vozelerb92a5e22011-01-12 15:02:01 +0200105
matt mooneyfc184a32011-05-11 01:54:23 -0700106/* vhci_tx.c */
107int vhci_tx_loop(void *data);
Takahiro Hirofuchi04679b32008-07-09 14:56:51 -0600108
109static inline struct vhci_device *port_to_vdev(__u32 port)
110{
111 return &the_controller->vdev[port];
112}
113
114static inline struct vhci_hcd *hcd_to_vhci(struct usb_hcd *hcd)
115{
116 return (struct vhci_hcd *) (hcd->hcd_priv);
117}
118
119static inline struct usb_hcd *vhci_to_hcd(struct vhci_hcd *vhci)
120{
121 return container_of((void *) vhci, struct usb_hcd, hcd_priv);
122}
123
124static inline struct device *vhci_dev(struct vhci_hcd *vhci)
125{
126 return vhci_to_hcd(vhci)->self.controller;
127}
Tobias Klauser306dac62011-08-22 08:53:28 +0200128
129#endif /* __USBIP_VHCI_H */