14#define USB_CLASS_PER_INTERFACE 0
15#define USB_CLASS_AUDIO 1
16#define USB_CLASS_COMM 2
17#define USB_CLASS_HID 3
18#define USB_CLASS_PRINTER 7
19#define USB_CLASS_MASS_STORAGE 8
20#define USB_CLASS_HUB 9
21#define USB_CLASS_DATA 10
22#define USB_CLASS_VENDOR_SPEC 0xff
25#define USB_SUB_HID_NONE 0
26#define USB_SUB_HID_BOOT 1
29#define USB_PROT_HID_NONE 0
30#define USB_PROT_HID_KEYBOARD 1
31#define USB_PROT_HID_MOUSE 2
41#define US_SC_MIN US_SC_RBC
42#define US_SC_MAX US_SC_SCSI
47#define US_PR_BULK 0x50
50#define USB_TYPE_STANDARD (0x00 << 5)
51#define USB_TYPE_CLASS (0x01 << 5)
52#define USB_TYPE_VENDOR (0x02 << 5)
53#define USB_TYPE_RESERVED (0x03 << 5)
56#define USB_RECIP_DEVICE 0x00
57#define USB_RECIP_INTERFACE 0x01
58#define USB_RECIP_ENDPOINT 0x02
59#define USB_RECIP_OTHER 0x03
63#define USB_DIR_IN 0x80
69#define DeviceRequest ((USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_DEVICE) << 8)
71#define DeviceOutRequest ((USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE) << 8)
73#define InterfaceRequest ((USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_INTERFACE) << 8)
75#define EndpointRequest ((USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_INTERFACE) << 8)
77#define EndpointOutRequest ((USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_INTERFACE) << 8)
80#define USB_DT_DEVICE 0x01
81#define USB_DT_CONFIG 0x02
82#define USB_DT_STRING 0x03
83#define USB_DT_INTERFACE 0x04
84#define USB_DT_ENDPOINT 0x05
86#define USB_DT_HID (USB_TYPE_CLASS | 0x01)
87#define USB_DT_REPORT (USB_TYPE_CLASS | 0x02)
88#define USB_DT_PHYSICAL (USB_TYPE_CLASS | 0x03)
89#define USB_DT_HUB (USB_TYPE_CLASS | 0x09)
90#define USB_DT_SS_HUB (USB_TYPE_CLASS | 0x0a)
93#define USB_DT_DEVICE_SIZE 18
94#define USB_DT_CONFIG_SIZE 9
95#define USB_DT_INTERFACE_SIZE 9
96#define USB_DT_ENDPOINT_SIZE 7
97#define USB_DT_ENDPOINT_AUDIO_SIZE 9
98#define USB_DT_HUB_NONVAR_SIZE 7
99#define USB_DT_HID_SIZE 9
102#define USB_ENDPOINT_NUMBER_MASK 0x0f
103#define USB_ENDPOINT_DIR_MASK 0x80
105#define USB_ENDPOINT_XFERTYPE_MASK 0x03
106#define USB_ENDPOINT_XFER_CONTROL 0
107#define USB_ENDPOINT_XFER_ISOC 1
108#define USB_ENDPOINT_XFER_BULK 2
109#define USB_ENDPOINT_XFER_INT 3
112#define USB_PID_UNDEF_0 0xf0
113#define USB_PID_OUT 0xe1
114#define USB_PID_ACK 0xd2
115#define USB_PID_DATA0 0xc3
116#define USB_PID_UNDEF_4 0xb4
117#define USB_PID_SOF 0xa5
118#define USB_PID_UNDEF_6 0x96
119#define USB_PID_UNDEF_7 0x87
120#define USB_PID_UNDEF_8 0x78
121#define USB_PID_IN 0x69
122#define USB_PID_NAK 0x5a
123#define USB_PID_DATA1 0x4b
124#define USB_PID_PREAMBLE 0x3c
125#define USB_PID_SETUP 0x2d
126#define USB_PID_STALL 0x1e
127#define USB_PID_UNDEF_F 0x0f
130#define USB_REQ_GET_STATUS 0x00
131#define USB_REQ_CLEAR_FEATURE 0x01
132#define USB_REQ_SET_FEATURE 0x03
133#define USB_REQ_SET_ADDRESS 0x05
134#define USB_REQ_GET_DESCRIPTOR 0x06
135#define USB_REQ_SET_DESCRIPTOR 0x07
136#define USB_REQ_GET_CONFIGURATION 0x08
137#define USB_REQ_SET_CONFIGURATION 0x09
138#define USB_REQ_GET_INTERFACE 0x0A
139#define USB_REQ_SET_INTERFACE 0x0B
140#define USB_REQ_SYNCH_FRAME 0x0C
143#define USB_REQ_GET_REPORT 0x01
144#define USB_REQ_GET_IDLE 0x02
145#define USB_REQ_GET_PROTOCOL 0x03
146#define USB_REQ_SET_REPORT 0x09
147#define USB_REQ_SET_IDLE 0x0A
148#define USB_REQ_SET_PROTOCOL 0x0B
151#define USB_FEAT_HALT 0x00
152#define USB_FEAT_WAKEUP 0x01
153#define USB_FEAT_TEST 0x02
156#define USB_TEST_MODE_J 0x01
157#define USB_TEST_MODE_K 0x02
158#define USB_TEST_MODE_SE0_NAK 0x03
159#define USB_TEST_MODE_PACKET 0x04
160#define USB_TEST_MODE_FORCE_ENABLE 0x05
167#define PIPE_ISOCHRONOUS 0U
168#define PIPE_INTERRUPT 1U
169#define PIPE_CONTROL 2U
171#define PIPE_DEVEP_MASK 0x0007ff00
173#define USB_ISOCHRONOUS 0
174#define USB_INTERRUPT 1
178#define USB_PIPE_TYPE_SHIFT 30
179#define USB_PIPE_TYPE_MASK (3 << USB_PIPE_TYPE_SHIFT)
181#define USB_PIPE_DEV_SHIFT 8
182#define USB_PIPE_DEV_MASK (0x7f << USB_PIPE_DEV_SHIFT)
184#define USB_PIPE_EP_SHIFT 15
185#define USB_PIPE_EP_MASK (0xf << USB_PIPE_EP_SHIFT)
188#define USB_ST_ACTIVE 0x1
189#define USB_ST_STALLED 0x2
190#define USB_ST_BUF_ERR 0x4
191#define USB_ST_BABBLE_DET 0x8
192#define USB_ST_NAK_REC 0x10
193#define USB_ST_CRC_ERR 0x20
194#define USB_ST_BIT_ERR 0x40
195#define USB_ST_NOT_PROC 0x80000000L
206#define USB_RT_HUB (USB_TYPE_CLASS | USB_RECIP_DEVICE)
207#define USB_RT_PORT (USB_TYPE_CLASS | USB_RECIP_OTHER)
212#define C_HUB_LOCAL_POWER 0
213#define C_HUB_OVER_CURRENT 1
218#define USB_PORT_FEAT_CONNECTION 0
219#define USB_PORT_FEAT_ENABLE 1
220#define USB_PORT_FEAT_SUSPEND 2
221#define USB_PORT_FEAT_OVER_CURRENT 3
222#define USB_PORT_FEAT_RESET 4
223#define USB_PORT_FEAT_POWER 8
224#define USB_PORT_FEAT_LOWSPEED 9
225#define USB_PORT_FEAT_HIGHSPEED 10
226#define USB_PORT_FEAT_C_CONNECTION 16
227#define USB_PORT_FEAT_C_ENABLE 17
228#define USB_PORT_FEAT_C_SUSPEND 18
229#define USB_PORT_FEAT_C_OVER_CURRENT 19
230#define USB_PORT_FEAT_C_RESET 20
231#define USB_PORT_FEAT_TEST 21
237#define USB_SS_PORT_FEAT_U1_TIMEOUT 23
238#define USB_SS_PORT_FEAT_U2_TIMEOUT 24
239#define USB_SS_PORT_FEAT_C_LINK_STATE 25
240#define USB_SS_PORT_FEAT_C_CONFIG_ERROR 26
241#define USB_SS_PORT_FEAT_BH_RESET 28
242#define USB_SS_PORT_FEAT_C_BH_RESET 29
245#define USB_PORT_STAT_CONNECTION 0x0001
246#define USB_PORT_STAT_ENABLE 0x0002
247#define USB_PORT_STAT_SUSPEND 0x0004
248#define USB_PORT_STAT_OVERCURRENT 0x0008
249#define USB_PORT_STAT_RESET 0x0010
250#define USB_PORT_STAT_POWER 0x0100
251#define USB_PORT_STAT_LOW_SPEED 0x0200
252#define USB_PORT_STAT_HIGH_SPEED 0x0400
253#define USB_PORT_STAT_SUPER_SPEED 0x0600
254#define USB_PORT_STAT_SPEED_MASK (USB_PORT_STAT_LOW_SPEED | USB_PORT_STAT_HIGH_SPEED)
260#define USB_SS_PORT_STAT_LINK_STATE 0x01e0
261#define USB_SS_PORT_STAT_POWER 0x0200
262#define USB_SS_PORT_STAT_SPEED 0x1c00
263#define USB_SS_PORT_STAT_SPEED_5GBPS 0x0000
265#define USB_SS_PORT_STAT_MASK (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | USB_PORT_STAT_OVERCURRENT | USB_PORT_STAT_RESET)
268#define USB_PORT_STAT_C_CONNECTION 0x0001
269#define USB_PORT_STAT_C_ENABLE 0x0002
270#define USB_PORT_STAT_C_SUSPEND 0x0004
271#define USB_PORT_STAT_C_OVERCURRENT 0x0008
272#define USB_PORT_STAT_C_RESET 0x0010
278#define USB_SS_PORT_STAT_C_BH_RESET 0x0020
279#define USB_SS_PORT_STAT_C_LINK_STATE 0x0040
280#define USB_SS_PORT_STAT_C_CONFIG_ERROR 0x0080
283#define HUB_CHAR_LPSM 0x0003
284#define HUB_CHAR_COMPOUND 0x0004
285#define HUB_CHAR_OCPM 0x0018
286#define HUB_CHAR_TTTT 0x0060
291#define HUB_STATUS_LOCAL_POWER 0x0001
292#define HUB_STATUS_OVERCURRENT 0x0002
294#define HUB_CHANGE_LOCAL_POWER 0x0001
295#define HUB_CHANGE_OVERCURRENT 0x0002
298#define USB_HUB_PORT_MASK 0xf
301#define USB_REQ_SET_HUB_DEPTH 0x0c
323#define CBWSIGNATURE 0x43425355
327#define CBWFLAGS_OUT 0x00
328#define CBWFLAGS_IN 0x80
329#define CBWFLAGS_SBZ 0x7f
332#define CBWCDBLENGTH 16
335#define UMASS_BBB_CBW_SIZE 31
340#define CSWSIGNATURE 0x53425355
344#define CSWSTATUS_GOOD 0x0
345#define CSWSTATUS_FAILED 0x1
346#define CSWSTATUS_PHASE 0x2
348#define UMASS_BBB_CSW_SIZE 13
353#define US_BBB_RESET 0xff
354#define US_BBB_GET_MAX_LUN 0xfe
unsigned int __u32
Definition types.h:21
unsigned char __u8
Definition types.h:15
Definition usb_defs.h:321
__u32 dCBWSignature
Definition usb_defs.h:322
__u32 dCBWDataTransferLength
Definition usb_defs.h:325
__u8 bCBWLUN
Definition usb_defs.h:330
__u8 bCBWFlags
Definition usb_defs.h:326
__u32 dCBWTag
Definition usb_defs.h:324
__u8 CBWCDB[CBWCDBLENGTH]
Definition usb_defs.h:333
__u8 bCDBLength
Definition usb_defs.h:331
Definition usb_defs.h:338
__u8 bCSWStatus
Definition usb_defs.h:343
__u32 dCSWSignature
Definition usb_defs.h:339
__u32 dCSWTag
Definition usb_defs.h:341
__u32 dCSWDataResidue
Definition usb_defs.h:342
#define CBWCDBLENGTH
Definition usb_defs.h:332