Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 1 | /* |
| 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 Klauser | 306dac6 | 2011-08-22 08:53:28 +0200 | [diff] [blame] | 20 | #ifndef __USBIP_STUB_H |
| 21 | #define __USBIP_STUB_H |
| 22 | |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 23 | #include <linux/list.h> |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 24 | #include <linux/slab.h> |
matt mooney | 7aaacb4 | 2011-05-11 22:33:43 -0700 | [diff] [blame] | 25 | #include <linux/spinlock.h> |
| 26 | #include <linux/types.h> |
| 27 | #include <linux/usb.h> |
| 28 | #include <linux/wait.h> |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 29 | |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 30 | #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 Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 35 | struct stub_device { |
Max Vozeler | 2d8f459 | 2011-01-12 15:01:59 +0200 | [diff] [blame] | 36 | struct usb_device *udev; |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 37 | |
| 38 | struct usbip_device ud; |
| 39 | __u32 devid; |
| 40 | |
| 41 | /* |
| 42 | * stub_priv preserves private data of each urb. |
| 43 | * It is allocated as stub_priv_cache and assigned to urb->context. |
| 44 | * |
| 45 | * stub_priv is always linked to any one of 3 lists; |
| 46 | * priv_init: linked to this until the comletion of a urb. |
| 47 | * priv_tx : linked to this after the completion of a urb. |
| 48 | * priv_free: linked to this after the sending of the result. |
| 49 | * |
| 50 | * Any of these list operations should be locked by priv_lock. |
| 51 | */ |
| 52 | spinlock_t priv_lock; |
| 53 | struct list_head priv_init; |
| 54 | struct list_head priv_tx; |
| 55 | struct list_head priv_free; |
| 56 | |
| 57 | /* see comments for unlinking in stub_rx.c */ |
| 58 | struct list_head unlink_tx; |
| 59 | struct list_head unlink_free; |
| 60 | |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 61 | wait_queue_head_t tx_waitq; |
| 62 | }; |
| 63 | |
| 64 | /* private data into urb->priv */ |
| 65 | struct stub_priv { |
| 66 | unsigned long seqnum; |
| 67 | struct list_head list; |
| 68 | struct stub_device *sdev; |
| 69 | struct urb *urb; |
| 70 | |
| 71 | int unlinking; |
| 72 | }; |
| 73 | |
| 74 | struct stub_unlink { |
| 75 | unsigned long seqnum; |
| 76 | struct list_head list; |
| 77 | __u32 status; |
| 78 | }; |
| 79 | |
matt mooney | 3e4fda9 | 2011-05-27 01:44:12 -0700 | [diff] [blame] | 80 | /* same as SYSFS_BUS_ID_SIZE */ |
| 81 | #define BUSID_SIZE 32 |
matt mooney | 8735276 | 2011-05-19 21:36:56 -0700 | [diff] [blame] | 82 | |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 83 | struct bus_id_priv { |
| 84 | char name[BUSID_SIZE]; |
| 85 | char status; |
| 86 | int interf_count; |
| 87 | struct stub_device *sdev; |
Valentina Manea | a46034c | 2014-03-08 14:53:33 +0200 | [diff] [blame] | 88 | struct usb_device *udev; |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 89 | char shutdown_busid; |
| 90 | }; |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 91 | |
matt mooney | 499aaae | 2011-05-11 01:54:22 -0700 | [diff] [blame] | 92 | /* stub_priv is allocated from stub_priv_cache */ |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 93 | extern struct kmem_cache *stub_priv_cache; |
| 94 | |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 95 | /* stub_dev.c */ |
Valentina Manea | b7945b7 | 2014-01-23 23:12:29 +0200 | [diff] [blame] | 96 | extern struct usb_device_driver stub_driver; |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 97 | |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 98 | /* stub_main.c */ |
Endre Kollar | aa5873e | 2010-07-27 12:39:30 +0200 | [diff] [blame] | 99 | struct bus_id_priv *get_busid_priv(const char *busid); |
| 100 | int del_match_busid(char *busid); |
Takahiro Hirofuchi | 4d7b5c7 | 2008-07-09 14:56:51 -0600 | [diff] [blame] | 101 | void stub_device_cleanup_urbs(struct stub_device *sdev); |
matt mooney | 499aaae | 2011-05-11 01:54:22 -0700 | [diff] [blame] | 102 | |
| 103 | /* stub_rx.c */ |
| 104 | int stub_rx_loop(void *data); |
| 105 | |
| 106 | /* stub_tx.c */ |
| 107 | void stub_enqueue_ret_unlink(struct stub_device *sdev, __u32 seqnum, |
| 108 | __u32 status); |
| 109 | void stub_complete(struct urb *urb); |
| 110 | int stub_tx_loop(void *data); |
Tobias Klauser | 306dac6 | 2011-08-22 08:53:28 +0200 | [diff] [blame] | 111 | |
| 112 | #endif /* __USBIP_STUB_H */ |