blob: 266e2b0ce9a8436b5ae01576e098cc797f7adbd9 [file] [log] [blame]
Takahiro Hirofuchi4d7b5c72008-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 *
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.
13 *
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.
18 */
19
Tobias Klauser306dac62011-08-22 08:53:28 +020020#ifndef __USBIP_STUB_H
21#define __USBIP_STUB_H
22
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060023#include <linux/list.h>
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060024#include <linux/slab.h>
matt mooney7aaacb42011-05-11 22:33:43 -070025#include <linux/spinlock.h>
26#include <linux/types.h>
27#include <linux/usb.h>
28#include <linux/wait.h>
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060029
Endre Kollaraa5873e2010-07-27 12:39:30 +020030#define STUB_BUSID_OTHER 0
31#define STUB_BUSID_REMOV 1
32#define STUB_BUSID_ADDED 2
33#define STUB_BUSID_ALLOC 3
34
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060035struct stub_device {
36 struct usb_interface *interface;
Max Vozeler2d8f4592011-01-12 15:01:59 +020037 struct usb_device *udev;
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060038
39 struct usbip_device ud;
40 __u32 devid;
41
42 /*
43 * stub_priv preserves private data of each urb.
44 * It is allocated as stub_priv_cache and assigned to urb->context.
45 *
46 * stub_priv is always linked to any one of 3 lists;
47 * priv_init: linked to this until the comletion of a urb.
48 * priv_tx : linked to this after the completion of a urb.
49 * priv_free: linked to this after the sending of the result.
50 *
51 * Any of these list operations should be locked by priv_lock.
52 */
53 spinlock_t priv_lock;
54 struct list_head priv_init;
55 struct list_head priv_tx;
56 struct list_head priv_free;
57
58 /* see comments for unlinking in stub_rx.c */
59 struct list_head unlink_tx;
60 struct list_head unlink_free;
61
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060062 wait_queue_head_t tx_waitq;
63};
64
65/* private data into urb->priv */
66struct stub_priv {
67 unsigned long seqnum;
68 struct list_head list;
69 struct stub_device *sdev;
70 struct urb *urb;
71
72 int unlinking;
73};
74
75struct stub_unlink {
76 unsigned long seqnum;
77 struct list_head list;
78 __u32 status;
79};
80
matt mooney3e4fda92011-05-27 01:44:12 -070081/* same as SYSFS_BUS_ID_SIZE */
82#define BUSID_SIZE 32
matt mooney87352762011-05-19 21:36:56 -070083
Endre Kollaraa5873e2010-07-27 12:39:30 +020084struct bus_id_priv {
85 char name[BUSID_SIZE];
86 char status;
87 int interf_count;
88 struct stub_device *sdev;
Valentina Maneaa46034c2014-03-08 14:53:33 +020089 struct usb_device *udev;
Endre Kollaraa5873e2010-07-27 12:39:30 +020090 char shutdown_busid;
91};
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060092
matt mooney499aaae2011-05-11 01:54:22 -070093/* stub_priv is allocated from stub_priv_cache */
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060094extern struct kmem_cache *stub_priv_cache;
95
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060096/* stub_dev.c */
Valentina Maneab7945b72014-01-23 23:12:29 +020097extern struct usb_device_driver stub_driver;
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060098
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -060099/* stub_main.c */
Endre Kollaraa5873e2010-07-27 12:39:30 +0200100struct bus_id_priv *get_busid_priv(const char *busid);
101int del_match_busid(char *busid);
Takahiro Hirofuchi4d7b5c72008-07-09 14:56:51 -0600102void stub_device_cleanup_urbs(struct stub_device *sdev);
matt mooney499aaae2011-05-11 01:54:22 -0700103
104/* stub_rx.c */
105int stub_rx_loop(void *data);
106
107/* stub_tx.c */
108void stub_enqueue_ret_unlink(struct stub_device *sdev, __u32 seqnum,
109 __u32 status);
110void stub_complete(struct urb *urb);
111int stub_tx_loop(void *data);
Tobias Klauser306dac62011-08-22 08:53:28 +0200112
113#endif /* __USBIP_STUB_H */