This source file includes following definitions.
- us_to_host
- host_to_us
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 #ifndef _USB_H_
28 #define _USB_H_
29
30 #include <linux/usb.h>
31 #include <linux/usb_usual.h>
32 #include <linux/blkdev.h>
33 #include <linux/completion.h>
34 #include <linux/mutex.h>
35 #include <linux/workqueue.h>
36 #include <scsi/scsi_host.h>
37
38 struct us_data;
39 struct scsi_cmnd;
40
41
42
43
44
45 struct us_unusual_dev {
46 const char* vendorName;
47 const char* productName;
48 __u8 useProtocol;
49 __u8 useTransport;
50 int (*initFunction)(struct us_data *);
51 };
52
53
54
55 #define US_FLIDX_URB_ACTIVE 0
56 #define US_FLIDX_SG_ACTIVE 1
57 #define US_FLIDX_ABORTING 2
58 #define US_FLIDX_DISCONNECTING 3
59 #define US_FLIDX_RESETTING 4
60 #define US_FLIDX_TIMED_OUT 5
61 #define US_FLIDX_SCAN_PENDING 6
62 #define US_FLIDX_REDO_READ10 7
63 #define US_FLIDX_READ10_WORKED 8
64
65 #define USB_STOR_STRING_LEN 32
66
67
68
69
70
71
72
73
74 #define US_IOBUF_SIZE 64
75 #define US_SENSE_SIZE 18
76
77 typedef int (*trans_cmnd)(struct scsi_cmnd *, struct us_data*);
78 typedef int (*trans_reset)(struct us_data*);
79 typedef void (*proto_cmnd)(struct scsi_cmnd*, struct us_data*);
80 typedef void (*extra_data_destructor)(void *);
81 typedef void (*pm_hook)(struct us_data *, int);
82
83 #define US_SUSPEND 0
84 #define US_RESUME 1
85
86
87 struct us_data {
88
89
90
91
92
93 struct mutex dev_mutex;
94 struct usb_device *pusb_dev;
95 struct usb_interface *pusb_intf;
96 struct us_unusual_dev *unusual_dev;
97 unsigned long fflags;
98 unsigned long dflags;
99 unsigned int send_bulk_pipe;
100 unsigned int recv_bulk_pipe;
101 unsigned int send_ctrl_pipe;
102 unsigned int recv_ctrl_pipe;
103 unsigned int recv_intr_pipe;
104
105
106 char *transport_name;
107 char *protocol_name;
108 __le32 bcs_signature;
109 u8 subclass;
110 u8 protocol;
111 u8 max_lun;
112
113 u8 ifnum;
114 u8 ep_bInterval;
115
116
117 trans_cmnd transport;
118 trans_reset transport_reset;
119 proto_cmnd proto_handler;
120
121
122 struct scsi_cmnd *srb;
123 unsigned int tag;
124 char scsi_name[32];
125
126
127 struct urb *current_urb;
128 struct usb_ctrlrequest *cr;
129 struct usb_sg_request current_sg;
130 unsigned char *iobuf;
131 dma_addr_t iobuf_dma;
132 struct task_struct *ctl_thread;
133
134
135 struct completion cmnd_ready;
136 struct completion notify;
137 wait_queue_head_t delay_wait;
138 struct delayed_work scan_dwork;
139
140
141 void *extra;
142 extra_data_destructor extra_destructor;
143 #ifdef CONFIG_PM
144 pm_hook suspend_resume_hook;
145 #endif
146
147
148 int use_last_sector_hacks;
149 int last_sector_retries;
150 };
151
152
153 static inline struct Scsi_Host *us_to_host(struct us_data *us) {
154 return container_of((void *) us, struct Scsi_Host, hostdata);
155 }
156 static inline struct us_data *host_to_us(struct Scsi_Host *host) {
157 return (struct us_data *) host->hostdata;
158 }
159
160
161 extern void fill_inquiry_response(struct us_data *us,
162 unsigned char *data, unsigned int data_len);
163
164
165
166
167
168 #define scsi_unlock(host) spin_unlock_irq(host->host_lock)
169 #define scsi_lock(host) spin_lock_irq(host->host_lock)
170
171
172 #ifdef CONFIG_PM
173 extern int usb_stor_suspend(struct usb_interface *iface, pm_message_t message);
174 extern int usb_stor_resume(struct usb_interface *iface);
175 extern int usb_stor_reset_resume(struct usb_interface *iface);
176 #else
177 #define usb_stor_suspend NULL
178 #define usb_stor_resume NULL
179 #define usb_stor_reset_resume NULL
180 #endif
181
182 extern int usb_stor_pre_reset(struct usb_interface *iface);
183 extern int usb_stor_post_reset(struct usb_interface *iface);
184
185 extern int usb_stor_probe1(struct us_data **pus,
186 struct usb_interface *intf,
187 const struct usb_device_id *id,
188 struct us_unusual_dev *unusual_dev,
189 struct scsi_host_template *sht);
190 extern int usb_stor_probe2(struct us_data *us);
191 extern void usb_stor_disconnect(struct usb_interface *intf);
192
193 extern void usb_stor_adjust_quirks(struct usb_device *dev,
194 unsigned long *fflags);
195
196 #define module_usb_stor_driver(__driver, __sht, __name) \
197 static int __init __driver##_init(void) \
198 { \
199 usb_stor_host_template_init(&(__sht), __name, THIS_MODULE); \
200 return usb_register(&(__driver)); \
201 } \
202 module_init(__driver##_init); \
203 static void __exit __driver##_exit(void) \
204 { \
205 usb_deregister(&(__driver)); \
206 } \
207 module_exit(__driver##_exit)
208
209 #endif