SyterKit 0.4.0.x
SyterKit is a bare-metal framework
Loading...
Searching...
No Matches
usb_defs.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * (C) Copyright 2001
4 * Denis Peter, MPL AG Switzerland
5 *
6 * Note: Part of this code has been derived from linux
7 */
8#ifndef _USB_DEFS_H_
9#define _USB_DEFS_H_
10
11/* USB constants */
12
13/* Device and/or Interface Class codes */
14#define USB_CLASS_PER_INTERFACE 0 /* for DeviceClass */
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
23
24/* some HID sub classes */
25#define USB_SUB_HID_NONE 0
26#define USB_SUB_HID_BOOT 1
27
28/* some UID Protocols */
29#define USB_PROT_HID_NONE 0
30#define USB_PROT_HID_KEYBOARD 1
31#define USB_PROT_HID_MOUSE 2
32
33
34/* Sub STORAGE Classes */
35#define US_SC_RBC 1 /* Typically, flash devices */
36#define US_SC_8020 2 /* CD-ROM */
37#define US_SC_QIC 3 /* QIC-157 Tapes */
38#define US_SC_UFI 4 /* Floppy */
39#define US_SC_8070 5 /* Removable media */
40#define US_SC_SCSI 6 /* Transparent */
41#define US_SC_MIN US_SC_RBC
42#define US_SC_MAX US_SC_SCSI
43
44/* STORAGE Protocols */
45#define US_PR_CB 1 /* Control/Bulk w/o interrupt */
46#define US_PR_CBI 0 /* Control/Bulk/Interrupt */
47#define US_PR_BULK 0x50 /* bulk only */
48
49/* USB types */
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)
54
55/* USB recipients */
56#define USB_RECIP_DEVICE 0x00
57#define USB_RECIP_INTERFACE 0x01
58#define USB_RECIP_ENDPOINT 0x02
59#define USB_RECIP_OTHER 0x03
60
61/* USB directions */
62#define USB_DIR_OUT 0
63#define USB_DIR_IN 0x80
64
65/*
66 * bmRequestType: USB Device Requests, table 9.2 USB 2.0 spec.
67 * (shifted) direction/type/recipient.
68 */
69#define DeviceRequest ((USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_DEVICE) << 8)
70
71#define DeviceOutRequest ((USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_DEVICE) << 8)
72
73#define InterfaceRequest ((USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_INTERFACE) << 8)
74
75#define EndpointRequest ((USB_DIR_IN | USB_TYPE_STANDARD | USB_RECIP_INTERFACE) << 8)
76
77#define EndpointOutRequest ((USB_DIR_OUT | USB_TYPE_STANDARD | USB_RECIP_INTERFACE) << 8)
78
79/* Descriptor types */
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
85
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)
91
92/* Descriptor sizes per descriptor type */
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 /* Audio extension */
98#define USB_DT_HUB_NONVAR_SIZE 7
99#define USB_DT_HID_SIZE 9
100
101/* Endpoints */
102#define USB_ENDPOINT_NUMBER_MASK 0x0f /* in bEndpointAddress */
103#define USB_ENDPOINT_DIR_MASK 0x80
104
105#define USB_ENDPOINT_XFERTYPE_MASK 0x03 /* in bmAttributes */
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
110
111/* USB Packet IDs (PIDs) */
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
128
129/* Standard requests */
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
141
142/* HID requests */
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
149
150/* Device features */
151#define USB_FEAT_HALT 0x00
152#define USB_FEAT_WAKEUP 0x01
153#define USB_FEAT_TEST 0x02
154
155/* Test modes */
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
161
162
163/*
164 * "pipe" definitions, use unsigned so we can compare reliably, since this
165 * value is shifted up to bits 30/31.
166 */
167#define PIPE_ISOCHRONOUS 0U
168#define PIPE_INTERRUPT 1U
169#define PIPE_CONTROL 2U
170#define PIPE_BULK 3U
171#define PIPE_DEVEP_MASK 0x0007ff00
172
173#define USB_ISOCHRONOUS 0
174#define USB_INTERRUPT 1
175#define USB_CONTROL 2
176#define USB_BULK 3
177
178#define USB_PIPE_TYPE_SHIFT 30
179#define USB_PIPE_TYPE_MASK (3 << USB_PIPE_TYPE_SHIFT)
180
181#define USB_PIPE_DEV_SHIFT 8
182#define USB_PIPE_DEV_MASK (0x7f << USB_PIPE_DEV_SHIFT)
183
184#define USB_PIPE_EP_SHIFT 15
185#define USB_PIPE_EP_MASK (0xf << USB_PIPE_EP_SHIFT)
186
187/* USB-status codes: */
188#define USB_ST_ACTIVE 0x1 /* TD is active */
189#define USB_ST_STALLED 0x2 /* TD is stalled */
190#define USB_ST_BUF_ERR 0x4 /* buffer error */
191#define USB_ST_BABBLE_DET 0x8 /* Babble detected */
192#define USB_ST_NAK_REC 0x10 /* NAK Received*/
193#define USB_ST_CRC_ERR 0x20 /* CRC/timeout Error */
194#define USB_ST_BIT_ERR 0x40 /* Bitstuff error */
195#define USB_ST_NOT_PROC 0x80000000L /* Not yet processed */
196
197
198
202/*
203 * Hub request types
204 */
205
206#define USB_RT_HUB (USB_TYPE_CLASS | USB_RECIP_DEVICE)
207#define USB_RT_PORT (USB_TYPE_CLASS | USB_RECIP_OTHER)
208
209/*
210 * Hub Class feature numbers
211 */
212#define C_HUB_LOCAL_POWER 0
213#define C_HUB_OVER_CURRENT 1
214
215/*
216 * Port feature numbers
217 */
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
232
233/*
234 * Changes to Port feature numbers for Super speed,
235 * from USB 3.0 spec Table 10-8
236 */
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
243
244/* wPortStatus bits */
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 /* support for EHCI */
253#define USB_PORT_STAT_SUPER_SPEED 0x0600 /* faking support to XHCI */
254#define USB_PORT_STAT_SPEED_MASK (USB_PORT_STAT_LOW_SPEED | USB_PORT_STAT_HIGH_SPEED)
255
256/*
257 * Changes to wPortStatus bit field in USB 3.0
258 * See USB 3.0 spec Table 10-10
259 */
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
264/* Bits that are the same from USB 2.0 */
265#define USB_SS_PORT_STAT_MASK (USB_PORT_STAT_CONNECTION | USB_PORT_STAT_ENABLE | USB_PORT_STAT_OVERCURRENT | USB_PORT_STAT_RESET)
266
267/* wPortChange bits */
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
273
274/*
275 * Changes to wPortChange bit fields in USB 3.0
276 * See USB 3.0 spec Table 10-12
277 */
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
281
282/* wHubCharacteristics (masks) */
283#define HUB_CHAR_LPSM 0x0003
284#define HUB_CHAR_COMPOUND 0x0004
285#define HUB_CHAR_OCPM 0x0018
286#define HUB_CHAR_TTTT 0x0060 /* TT Think Time mask */
287
288/*
289 * Hub Status & Hub Change bit masks
290 */
291#define HUB_STATUS_LOCAL_POWER 0x0001
292#define HUB_STATUS_OVERCURRENT 0x0002
293
294#define HUB_CHANGE_LOCAL_POWER 0x0001
295#define HUB_CHANGE_OVERCURRENT 0x0002
296
297/* Mask for wIndex in get/set port feature */
298#define USB_HUB_PORT_MASK 0xf
299
300/* Hub class request codes */
301#define USB_REQ_SET_HUB_DEPTH 0x0c
302
303/*
304 * As of USB 2.0, full/low speed devices are segregated into trees.
305 * One type grows from USB 1.1 host controllers (OHCI, UHCI etc).
306 * The other type grows from high speed hubs when they connect to
307 * full/low speed devices using "Transaction Translators" (TTs).
308 */
309//struct usb_tt {
310// bool multi; /* true means one TT per port */
311// unsigned think_time; /* think time in ns */
312//};
313
314/*
315 * CBI style
316 */
317
318#define US_CBI_ADSC 0
319
320/* Command Block Wrapper */
323#define CBWSIGNATURE 0x43425355
327#define CBWFLAGS_OUT 0x00
328#define CBWFLAGS_IN 0x80
329#define CBWFLAGS_SBZ 0x7f
332#define CBWCDBLENGTH 16
334};
335#define UMASS_BBB_CBW_SIZE 31
336
337/* Command Status Wrapper */
340#define CSWSIGNATURE 0x53425355
344#define CSWSTATUS_GOOD 0x0
345#define CSWSTATUS_FAILED 0x1
346#define CSWSTATUS_PHASE 0x2
347};
348#define UMASS_BBB_CSW_SIZE 13
349
350/*
351 * BULK only
352 */
353#define US_BBB_RESET 0xff
354#define US_BBB_GET_MAX_LUN 0xfe
355
356#endif /*_USB_DEFS_H_ */
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