Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cdc.h
Go to the documentation of this file.
1 /*
2  * USB Communications Device Class (CDC) definitions
3  *
4  * CDC says how to talk to lots of different types of network adapters,
5  * notably ethernet adapters and various modems. It's used mostly with
6  * firmware based USB peripherals.
7  */
8 
9 #ifndef __LINUX_USB_CDC_H
10 #define __LINUX_USB_CDC_H
11 
12 #include <linux/types.h>
13 
14 #define USB_CDC_SUBCLASS_ACM 0x02
15 #define USB_CDC_SUBCLASS_ETHERNET 0x06
16 #define USB_CDC_SUBCLASS_WHCM 0x08
17 #define USB_CDC_SUBCLASS_DMM 0x09
18 #define USB_CDC_SUBCLASS_MDLM 0x0a
19 #define USB_CDC_SUBCLASS_OBEX 0x0b
20 #define USB_CDC_SUBCLASS_EEM 0x0c
21 #define USB_CDC_SUBCLASS_NCM 0x0d
22 
23 #define USB_CDC_PROTO_NONE 0
24 
25 #define USB_CDC_ACM_PROTO_AT_V25TER 1
26 #define USB_CDC_ACM_PROTO_AT_PCCA101 2
27 #define USB_CDC_ACM_PROTO_AT_PCCA101_WAKE 3
28 #define USB_CDC_ACM_PROTO_AT_GSM 4
29 #define USB_CDC_ACM_PROTO_AT_3G 5
30 #define USB_CDC_ACM_PROTO_AT_CDMA 6
31 #define USB_CDC_ACM_PROTO_VENDOR 0xff
32 
33 #define USB_CDC_PROTO_EEM 7
34 
35 #define USB_CDC_NCM_PROTO_NTB 1
36 
37 /*-------------------------------------------------------------------------*/
38 
39 /*
40  * Class-Specific descriptors ... there are a couple dozen of them
41  */
42 
43 #define USB_CDC_HEADER_TYPE 0x00 /* header_desc */
44 #define USB_CDC_CALL_MANAGEMENT_TYPE 0x01 /* call_mgmt_descriptor */
45 #define USB_CDC_ACM_TYPE 0x02 /* acm_descriptor */
46 #define USB_CDC_UNION_TYPE 0x06 /* union_desc */
47 #define USB_CDC_COUNTRY_TYPE 0x07
48 #define USB_CDC_NETWORK_TERMINAL_TYPE 0x0a /* network_terminal_desc */
49 #define USB_CDC_ETHERNET_TYPE 0x0f /* ether_desc */
50 #define USB_CDC_WHCM_TYPE 0x11
51 #define USB_CDC_MDLM_TYPE 0x12 /* mdlm_desc */
52 #define USB_CDC_MDLM_DETAIL_TYPE 0x13 /* mdlm_detail_desc */
53 #define USB_CDC_DMM_TYPE 0x14
54 #define USB_CDC_OBEX_TYPE 0x15
55 #define USB_CDC_NCM_TYPE 0x1a
56 
57 /* "Header Functional Descriptor" from CDC spec 5.2.3.1 */
62 
64 } __attribute__ ((packed));
65 
66 /* "Call Management Descriptor" from CDC spec 5.2.3.2 */
71 
73 #define USB_CDC_CALL_MGMT_CAP_CALL_MGMT 0x01
74 #define USB_CDC_CALL_MGMT_CAP_DATA_INTF 0x02
75 
77 } __attribute__ ((packed));
78 
79 /* "Abstract Control Management Descriptor" from CDC spec 5.2.3.3 */
84 
86 } __attribute__ ((packed));
87 
88 /* capabilities from 5.2.3.3 */
89 
90 #define USB_CDC_COMM_FEATURE 0x01
91 #define USB_CDC_CAP_LINE 0x02
92 #define USB_CDC_CAP_BRK 0x04
93 #define USB_CDC_CAP_NOTIFY 0x08
94 
95 /* "Union Functional Descriptor" from CDC spec 5.2.3.8 */
100 
103  /* ... and there could be other slave interfaces */
104 } __attribute__ ((packed));
105 
106 /* "Country Selection Functional Descriptor" from CDC spec 5.2.3.9 */
111 
114  /* ... and there can be a lot of country codes */
115 } __attribute__ ((packed));
116 
117 /* "Network Channel Terminal Functional Descriptor" from CDC spec 5.2.3.11 */
122 
127 } __attribute__ ((packed));
128 
129 /* "Ethernet Networking Functional Descriptor" from CDC spec 5.2.3.16 */
140 } __attribute__ ((packed));
141 
142 /* "Telephone Control Model Functional Descriptor" from CDC WMC spec 6.3..3 */
149 } __attribute__ ((packed));
151 /* "MDLM Functional Descriptor" from CDC WMC spec 6.7.2.3 */
156 
158  __u8 bGUID[16];
159 } __attribute__ ((packed));
160 
161 /* "MDLM Detail Functional Descriptor" from CDC WMC spec 6.7.2.4 */
166 
167  /* type is associated with mdlm_desc.bGUID */
170 } __attribute__ ((packed));
171 
172 /* "OBEX Control Model Functional Descriptor" */
179 } __attribute__ ((packed));
180 
181 /* "NCM Control Model Functional Descriptor" */
186 
189 } __attribute__ ((packed));
190 /*-------------------------------------------------------------------------*/
191 
192 /*
193  * Class-Specific Control Requests (6.2)
194  *
195  * section 3.6.2.1 table 4 has the ACM profile, for modems.
196  * section 3.8.2 table 10 has the ethernet profile.
197  *
198  * Microsoft's RNDIS stack for Ethernet is a vendor-specific CDC ACM variant,
199  * heavily dependent on the encapsulated (proprietary) command mechanism.
200  */
201 
202 #define USB_CDC_SEND_ENCAPSULATED_COMMAND 0x00
203 #define USB_CDC_GET_ENCAPSULATED_RESPONSE 0x01
204 #define USB_CDC_REQ_SET_LINE_CODING 0x20
205 #define USB_CDC_REQ_GET_LINE_CODING 0x21
206 #define USB_CDC_REQ_SET_CONTROL_LINE_STATE 0x22
207 #define USB_CDC_REQ_SEND_BREAK 0x23
208 #define USB_CDC_SET_ETHERNET_MULTICAST_FILTERS 0x40
209 #define USB_CDC_SET_ETHERNET_PM_PATTERN_FILTER 0x41
210 #define USB_CDC_GET_ETHERNET_PM_PATTERN_FILTER 0x42
211 #define USB_CDC_SET_ETHERNET_PACKET_FILTER 0x43
212 #define USB_CDC_GET_ETHERNET_STATISTIC 0x44
213 #define USB_CDC_GET_NTB_PARAMETERS 0x80
214 #define USB_CDC_GET_NET_ADDRESS 0x81
215 #define USB_CDC_SET_NET_ADDRESS 0x82
216 #define USB_CDC_GET_NTB_FORMAT 0x83
217 #define USB_CDC_SET_NTB_FORMAT 0x84
218 #define USB_CDC_GET_NTB_INPUT_SIZE 0x85
219 #define USB_CDC_SET_NTB_INPUT_SIZE 0x86
220 #define USB_CDC_GET_MAX_DATAGRAM_SIZE 0x87
221 #define USB_CDC_SET_MAX_DATAGRAM_SIZE 0x88
222 #define USB_CDC_GET_CRC_MODE 0x89
223 #define USB_CDC_SET_CRC_MODE 0x8a
224 
225 /* Line Coding Structure from CDC spec 6.2.13 */
229 #define USB_CDC_1_STOP_BITS 0
230 #define USB_CDC_1_5_STOP_BITS 1
231 #define USB_CDC_2_STOP_BITS 2
232 
234 #define USB_CDC_NO_PARITY 0
235 #define USB_CDC_ODD_PARITY 1
236 #define USB_CDC_EVEN_PARITY 2
237 #define USB_CDC_MARK_PARITY 3
238 #define USB_CDC_SPACE_PARITY 4
239 
241 } __attribute__ ((packed));
243 /* table 62; bits in multicast filter */
244 #define USB_CDC_PACKET_TYPE_PROMISCUOUS (1 << 0)
245 #define USB_CDC_PACKET_TYPE_ALL_MULTICAST (1 << 1) /* no filter */
246 #define USB_CDC_PACKET_TYPE_DIRECTED (1 << 2)
247 #define USB_CDC_PACKET_TYPE_BROADCAST (1 << 3)
248 #define USB_CDC_PACKET_TYPE_MULTICAST (1 << 4) /* filtered */
251 /*-------------------------------------------------------------------------*/
253 /*
254  * Class-Specific Notifications (6.3) sent by interrupt transfers
255  *
256  * section 3.8.2 table 11 of the CDC spec lists Ethernet notifications
257  * section 3.6.2.1 table 5 specifies ACM notifications, accepted by RNDIS
258  * RNDIS also defines its own bit-incompatible notifications
259  */
260 
261 #define USB_CDC_NOTIFY_NETWORK_CONNECTION 0x00
262 #define USB_CDC_NOTIFY_RESPONSE_AVAILABLE 0x01
263 #define USB_CDC_NOTIFY_SERIAL_STATE 0x20
264 #define USB_CDC_NOTIFY_SPEED_CHANGE 0x2a
265 
272 } __attribute__ ((packed));
275  __le32 DLBitRRate; /* contains the downlink bit rate (IN pipe) */
276  __le32 ULBitRate; /* contains the uplink bit rate (OUT pipe) */
277 } __attribute__ ((packed));
279 /*-------------------------------------------------------------------------*/
280 
281 /*
282  * Class Specific structures and constants
283  *
284  * CDC NCM NTB parameters structure, CDC NCM subclass 6.2.1
285  *
286  */
287 
301 } __attribute__ ((packed));
302 
303 /*
304  * CDC NCM transfer headers, CDC NCM subclass 3.2
305  */
307 #define USB_CDC_NCM_NTH16_SIGN 0x484D434E /* NCMH */
308 #define USB_CDC_NCM_NTH32_SIGN 0x686D636E /* ncmh */
316 } __attribute__ ((packed));
324 } __attribute__ ((packed));
325 
326 /*
327  * CDC NCM datagram pointers, CDC NCM subclass 3.3
328  */
330 #define USB_CDC_NCM_NDP16_CRC_SIGN 0x314D434E /* NCM1 */
331 #define USB_CDC_NCM_NDP16_NOCRC_SIGN 0x304D434E /* NCM0 */
332 #define USB_CDC_NCM_NDP32_CRC_SIGN 0x316D636E /* ncm1 */
333 #define USB_CDC_NCM_NDP32_NOCRC_SIGN 0x306D636E /* ncm0 */
334 
335 /* 16-bit NCM Datagram Pointer Entry */
339 } __attribute__((__packed__));
341 /* 16-bit NCM Datagram Pointer Table */
347 } __attribute__ ((packed));
348 
349 /* 32-bit NCM Datagram Pointer Entry */
353 } __attribute__((__packed__));
355 /* 32-bit NCM Datagram Pointer Table */
363 } __attribute__ ((packed));
364 
365 /* CDC NCM subclass 3.2.1 and 3.2.2 */
366 #define USB_CDC_NCM_NDP16_INDEX_MIN 0x000C
367 #define USB_CDC_NCM_NDP32_INDEX_MIN 0x0010
369 /* CDC NCM subclass 3.3.3 Datagram Formatting */
370 #define USB_CDC_NCM_DATAGRAM_FORMAT_CRC 0x30
371 #define USB_CDC_NCM_DATAGRAM_FORMAT_NOCRC 0X31
372 
373 /* CDC NCM subclass 4.2 NCM Communications Interface Protocol Code */
374 #define USB_CDC_NCM_PROTO_CODE_NO_ENCAP_COMMANDS 0x00
375 #define USB_CDC_NCM_PROTO_CODE_EXTERN_PROTO 0xFE
376 
377 /* CDC NCM subclass 5.2.1 NCM Functional Descriptor, bmNetworkCapabilities */
378 #define USB_CDC_NCM_NCAP_ETH_FILTER (1 << 0)
379 #define USB_CDC_NCM_NCAP_NET_ADDRESS (1 << 1)
380 #define USB_CDC_NCM_NCAP_ENCAP_COMMAND (1 << 2)
381 #define USB_CDC_NCM_NCAP_MAX_DATAGRAM_SIZE (1 << 3)
382 #define USB_CDC_NCM_NCAP_CRC_MODE (1 << 4)
383 #define USB_CDC_NCM_NCAP_NTB_INPUT_SIZE (1 << 5)
384 
385 /* CDC NCM subclass Table 6-3: NTB Parameter Structure */
386 #define USB_CDC_NCM_NTB16_SUPPORTED (1 << 0)
387 #define USB_CDC_NCM_NTB32_SUPPORTED (1 << 1)
388 
389 /* CDC NCM subclass Table 6-3: NTB Parameter Structure */
390 #define USB_CDC_NCM_NDP_ALIGN_MIN_SIZE 0x04
391 #define USB_CDC_NCM_NTB_MAX_LENGTH 0x1C
392 
393 /* CDC NCM subclass 6.2.5 SetNtbFormat */
394 #define USB_CDC_NCM_NTB16_FORMAT 0x00
395 #define USB_CDC_NCM_NTB32_FORMAT 0x01
396 
397 /* CDC NCM subclass 6.2.7 SetNtbInputSize */
398 #define USB_CDC_NCM_NTB_MIN_IN_SIZE 2048
399 #define USB_CDC_NCM_NTB_MIN_OUT_SIZE 2048
400 
401 /* NTB Input Size Structure */
406 } __attribute__ ((packed));
407 
408 /* CDC NCM subclass 6.2.11 SetCrcMode */
409 #define USB_CDC_NCM_CRC_NOT_APPENDED 0x00
410 #define USB_CDC_NCM_CRC_APPENDED 0x01
411 
412 #endif /* __LINUX_USB_CDC_H */