3 * Gerry Hamel, geh@ti.com, Texas Instruments
6 * linux/drivers/usbd/usb-function.h - USB Function
8 * Copyright (c) 2000, 2001, 2002 Lineo
9 * Copyright (c) 2001 Hewlett Packard
12 * Stuart Lynne <sl@lineo.com>,
13 * Tom Rushworth <tbr@lineo.com>,
14 * Bruce Balden <balden@lineo.com>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 * This program is distributed in the hope that it will be useful,
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 * GNU General Public License for more details.
26 * You should have received a copy of the GNU General Public License
27 * along with this program; if not, write to the Free Software
28 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
32 /* USB Descriptors - Create a complete description of all of the
33 * function driver capabilities. These map directly to the USB descriptors.
35 * This heirarchy is created by the functions drivers and is passed to the
36 * usb-device driver when the function driver is registered.
58 * The configuration structures refer to the USB Configurations that will be
59 * made available to a USB HOST during the enumeration process.
61 * The USB HOST will select a configuration and optionally an interface with
62 * the usb set configuration and set interface commands.
64 * The selected interface (or the default interface if not specifically
65 * selected) will define the list of endpoints that will be used.
67 * The configuration and interfaces are stored in an array that is indexed
68 * by the specified configuratin or interface number minus one.
70 * A configuration number of zero is used to specify a return to the unconfigured
76 #ifndef __USBDESCRIPTORS_H__
77 #define __USBDESCRIPTORS_H__
79 #include <asm/types.h>
82 * communications class types
84 * c.f. CDC USB Class Definitions for Communications Devices
85 * c.f. WMCD USB CDC Subclass Specification for Wireless Mobile Communications Devices
89 #define CLASS_BCD_VERSION 0x0110
91 /* c.f. CDC 4.1 Table 14 */
92 #define COMMUNICATIONS_DEVICE_CLASS 0x02
94 /* c.f. CDC 4.2 Table 15 */
95 #define COMMUNICATIONS_INTERFACE_CLASS_CONTROL 0x02
96 #define COMMUNICATIONS_INTERFACE_CLASS_DATA 0x0A
97 #define COMMUNICATIONS_INTERFACE_CLASS_VENDOR 0x0FF
99 /* c.f. CDC 4.3 Table 16 */
100 #define COMMUNICATIONS_NO_SUBCLASS 0x00
101 #define COMMUNICATIONS_DLCM_SUBCLASS 0x01
102 #define COMMUNICATIONS_ACM_SUBCLASS 0x02
103 #define COMMUNICATIONS_TCM_SUBCLASS 0x03
104 #define COMMUNICATIONS_MCCM_SUBCLASS 0x04
105 #define COMMUNICATIONS_CCM_SUBCLASS 0x05
106 #define COMMUNICATIONS_ENCM_SUBCLASS 0x06
107 #define COMMUNICATIONS_ANCM_SUBCLASS 0x07
110 #define COMMUNICATIONS_WHCM_SUBCLASS 0x08
111 #define COMMUNICATIONS_DMM_SUBCLASS 0x09
112 #define COMMUNICATIONS_MDLM_SUBCLASS 0x0a
113 #define COMMUNICATIONS_OBEX_SUBCLASS 0x0b
115 /* c.f. CDC 4.4 Table 17 */
116 #define COMMUNICATIONS_NO_PROTOCOL 0x00
117 #define COMMUNICATIONS_V25TER_PROTOCOL 0x01 /*Common AT Hayes compatible*/
119 /* c.f. CDC 4.5 Table 18 */
120 #define DATA_INTERFACE_CLASS 0x0a
122 /* c.f. CDC 4.6 No Table */
123 #define DATA_INTERFACE_SUBCLASS_NONE 0x00 /* No subclass pertinent */
125 /* c.f. CDC 4.7 Table 19 */
126 #define DATA_INTERFACE_PROTOCOL_NONE 0x00 /* No class protcol required */
129 /* c.f. CDC 5.2.3 Table 24 */
130 #define CS_INTERFACE 0x24
131 #define CS_ENDPOINT 0x25
134 * bDescriptorSubtypes
136 * c.f. CDC 5.2.3 Table 25
137 * c.f. WMCD 5.3 Table 5.3
140 #define USB_ST_HEADER 0x00
141 #define USB_ST_CMF 0x01
142 #define USB_ST_ACMF 0x02
143 #define USB_ST_DLMF 0x03
144 #define USB_ST_TRF 0x04
145 #define USB_ST_TCLF 0x05
146 #define USB_ST_UF 0x06
147 #define USB_ST_CSF 0x07
148 #define USB_ST_TOMF 0x08
149 #define USB_ST_USBTF 0x09
150 #define USB_ST_NCT 0x0a
151 #define USB_ST_PUF 0x0b
152 #define USB_ST_EUF 0x0c
153 #define USB_ST_MCMF 0x0d
154 #define USB_ST_CCMF 0x0e
155 #define USB_ST_ENF 0x0f
156 #define USB_ST_ATMNF 0x10
158 #define USB_ST_WHCM 0x11
159 #define USB_ST_MDLM 0x12
160 #define USB_ST_MDLMD 0x13
161 #define USB_ST_DMM 0x14
162 #define USB_ST_OBEX 0x15
163 #define USB_ST_CS 0x16
164 #define USB_ST_CSD 0x17
165 #define USB_ST_TCM 0x18
167 /* endpoint modifiers
168 * static struct usb_endpoint_description function_default_A_1[] = {
170 * {this_endpoint: 0, attributes: CONTROL, max_size: 8, polling_interval: 0 },
171 * {this_endpoint: 1, attributes: BULK, max_size: 64, polling_interval: 0, direction: IN},
172 * {this_endpoint: 2, attributes: BULK, max_size: 64, polling_interval: 0, direction: OUT},
173 * {this_endpoint: 3, attributes: INTERRUPT, max_size: 8, polling_interval: 0},
181 #define ISOCHRONOUS 0x01
183 #define INTERRUPT 0x03
186 /* configuration modifiers
188 #define BMATTRIBUTE_RESERVED 0x80
189 #define BMATTRIBUTE_SELF_POWERED 0x40
192 * standard usb descriptor structures
195 struct usb_endpoint_descriptor {
197 u8 bDescriptorType; /* 0x5 */
202 } __attribute__ ((packed));
204 struct usb_interface_descriptor {
206 u8 bDescriptorType; /* 0x04 */
208 u8 bAlternateSetting;
211 u8 bInterfaceSubClass;
212 u8 bInterfaceProtocol;
214 } __attribute__ ((packed));
216 struct usb_configuration_descriptor {
218 u8 bDescriptorType; /* 0x2 */
221 u8 bConfigurationValue;
225 } __attribute__ ((packed));
227 struct usb_device_descriptor {
229 u8 bDescriptorType; /* 0x01 */
241 u8 bNumConfigurations;
242 } __attribute__ ((packed));
244 #if defined(CONFIG_USBD_HS)
245 struct usb_qualifier_descriptor {
254 u8 bNumConfigurations;
256 } __attribute__ ((packed));
259 struct usb_string_descriptor {
261 u8 bDescriptorType; /* 0x03 */
263 } __attribute__ ((packed));
265 struct usb_generic_descriptor {
268 u8 bDescriptorSubtype;
269 } __attribute__ ((packed));
273 * communications class descriptor structures
275 * c.f. CDC 5.2 Table 25c
278 struct usb_class_function_descriptor {
281 u8 bDescriptorSubtype;
282 } __attribute__ ((packed));
284 struct usb_class_function_descriptor_generic {
287 u8 bDescriptorSubtype;
289 } __attribute__ ((packed));
291 struct usb_class_header_function_descriptor {
294 u8 bDescriptorSubtype; /* 0x00 */
296 } __attribute__ ((packed));
298 struct usb_class_call_management_descriptor {
301 u8 bDescriptorSubtype; /* 0x01 */
304 } __attribute__ ((packed));
306 struct usb_class_abstract_control_descriptor {
309 u8 bDescriptorSubtype; /* 0x02 */
311 } __attribute__ ((packed));
313 struct usb_class_direct_line_descriptor {
316 u8 bDescriptorSubtype; /* 0x03 */
317 } __attribute__ ((packed));
319 struct usb_class_telephone_ringer_descriptor {
322 u8 bDescriptorSubtype; /* 0x04 */
324 u8 bNumRingerPatterns;
325 } __attribute__ ((packed));
327 struct usb_class_telephone_call_descriptor {
330 u8 bDescriptorSubtype; /* 0x05 */
332 } __attribute__ ((packed));
334 struct usb_class_union_function_descriptor {
337 u8 bDescriptorSubtype; /* 0x06 */
339 /* u8 bSlaveInterface0[0]; */
341 } __attribute__ ((packed));
343 struct usb_class_country_selection_descriptor {
346 u8 bDescriptorSubtype; /* 0x07 */
347 u8 iCountryCodeRelDate;
348 u16 wCountryCode0[0];
349 } __attribute__ ((packed));
352 struct usb_class_telephone_operational_descriptor {
355 u8 bDescriptorSubtype; /* 0x08 */
357 } __attribute__ ((packed));
360 struct usb_class_usb_terminal_descriptor {
363 u8 bDescriptorSubtype; /* 0x09 */
369 } __attribute__ ((packed));
371 struct usb_class_network_channel_descriptor {
374 u8 bDescriptorSubtype; /* 0x0a */
378 u8 bPhysicalInterface;
379 } __attribute__ ((packed));
381 struct usb_class_protocol_unit_function_descriptor {
384 u8 bDescriptorSubtype; /* 0x0b */
388 } __attribute__ ((packed));
390 struct usb_class_extension_unit_descriptor {
393 u8 bDescriptorSubtype; /* 0x0c */
398 } __attribute__ ((packed));
400 struct usb_class_multi_channel_descriptor {
403 u8 bDescriptorSubtype; /* 0x0d */
405 } __attribute__ ((packed));
407 struct usb_class_capi_control_descriptor {
410 u8 bDescriptorSubtype; /* 0x0e */
412 } __attribute__ ((packed));
414 struct usb_class_ethernet_networking_descriptor {
417 u8 bDescriptorSubtype; /* 0x0f */
419 u32 bmEthernetStatistics;
421 u16 wNumberMCFilters;
422 u8 bNumberPowerFilters;
423 } __attribute__ ((packed));
425 struct usb_class_atm_networking_descriptor {
428 u8 bDescriptorSubtype; /* 0x10 */
429 u8 iEndSystermIdentifier;
430 u8 bmDataCapabilities;
431 u8 bmATMDeviceStatistics;
432 u16 wType2MaxSegmentSize;
433 u16 wType3MaxSegmentSize;
435 } __attribute__ ((packed));
438 struct usb_class_mdlm_descriptor {
441 u8 bDescriptorSubtype; /* 0x12 */
444 } __attribute__ ((packed));
446 struct usb_class_mdlmd_descriptor {
449 u8 bDescriptorSubtype; /* 0x13 */
450 u8 bGuidDescriptorType;
453 } __attribute__ ((packed));
456 * HID class descriptor structures
461 struct usb_class_hid_descriptor {
466 u8 bNumDescriptors; /* 0x01 */
468 u16 wDescriptorLength0;
469 /* optional descriptors are not supported. */
470 } __attribute__((packed));
472 struct usb_class_report_descriptor {
473 u8 bLength; /* dummy */
477 } __attribute__((packed));
480 * descriptor union structures
483 struct usb_descriptor {
485 struct usb_generic_descriptor generic;
486 struct usb_endpoint_descriptor endpoint;
487 struct usb_interface_descriptor interface;
488 struct usb_configuration_descriptor configuration;
489 struct usb_device_descriptor device;
490 struct usb_string_descriptor string;
493 } __attribute__ ((packed));
495 struct usb_class_descriptor {
497 struct usb_class_function_descriptor function;
498 struct usb_class_function_descriptor_generic generic;
499 struct usb_class_header_function_descriptor header_function;
500 struct usb_class_call_management_descriptor call_management;
501 struct usb_class_abstract_control_descriptor abstract_control;
502 struct usb_class_direct_line_descriptor direct_line;
503 struct usb_class_telephone_ringer_descriptor telephone_ringer;
504 struct usb_class_telephone_operational_descriptor telephone_operational;
505 struct usb_class_telephone_call_descriptor telephone_call;
506 struct usb_class_union_function_descriptor union_function;
507 struct usb_class_country_selection_descriptor country_selection;
508 struct usb_class_usb_terminal_descriptor usb_terminal;
509 struct usb_class_network_channel_descriptor network_channel;
510 struct usb_class_extension_unit_descriptor extension_unit;
511 struct usb_class_multi_channel_descriptor multi_channel;
512 struct usb_class_capi_control_descriptor capi_control;
513 struct usb_class_ethernet_networking_descriptor ethernet_networking;
514 struct usb_class_atm_networking_descriptor atm_networking;
515 struct usb_class_mdlm_descriptor mobile_direct;
516 struct usb_class_mdlmd_descriptor mobile_direct_detail;
517 struct usb_class_hid_descriptor hid;
520 } __attribute__ ((packed));
523 static inline void print_device_descriptor(struct usb_device_descriptor *d)
525 serial_printf("usb device descriptor \n");
526 serial_printf("\tbLength %2.2x\n", d->bLength);
527 serial_printf("\tbDescriptorType %2.2x\n", d->bDescriptorType);
528 serial_printf("\tbcdUSB %4.4x\n", d->bcdUSB);
529 serial_printf("\tbDeviceClass %2.2x\n", d->bDeviceClass);
530 serial_printf("\tbDeviceSubClass %2.2x\n", d->bDeviceSubClass);
531 serial_printf("\tbDeviceProtocol %2.2x\n", d->bDeviceProtocol);
532 serial_printf("\tbMaxPacketSize0 %2.2x\n", d->bMaxPacketSize0);
533 serial_printf("\tidVendor %4.4x\n", d->idVendor);
534 serial_printf("\tidProduct %4.4x\n", d->idProduct);
535 serial_printf("\tbcdDevice %4.4x\n", d->bcdDevice);
536 serial_printf("\tiManufacturer %2.2x\n", d->iManufacturer);
537 serial_printf("\tiProduct %2.2x\n", d->iProduct);
538 serial_printf("\tiSerialNumber %2.2x\n", d->iSerialNumber);
539 serial_printf("\tbNumConfigurations %2.2x\n", d->bNumConfigurations);
545 #define print_device_descriptor(d)