123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535 |
- #ifndef __USBDESCRIPTORS_H__
- #define __USBDESCRIPTORS_H__
- #include <asm/types.h>
- #define CLASS_BCD_VERSION 0x0110
- #define COMMUNICATIONS_DEVICE_CLASS 0x02
- #define COMMUNICATIONS_INTERFACE_CLASS_CONTROL 0x02
- #define COMMUNICATIONS_INTERFACE_CLASS_DATA 0x0A
- #define COMMUNICATIONS_INTERFACE_CLASS_VENDOR 0x0FF
- #define COMMUNICATIONS_NO_SUBCLASS 0x00
- #define COMMUNICATIONS_DLCM_SUBCLASS 0x01
- #define COMMUNICATIONS_ACM_SUBCLASS 0x02
- #define COMMUNICATIONS_TCM_SUBCLASS 0x03
- #define COMMUNICATIONS_MCCM_SUBCLASS 0x04
- #define COMMUNICATIONS_CCM_SUBCLASS 0x05
- #define COMMUNICATIONS_ENCM_SUBCLASS 0x06
- #define COMMUNICATIONS_ANCM_SUBCLASS 0x07
- #define COMMUNICATIONS_WHCM_SUBCLASS 0x08
- #define COMMUNICATIONS_DMM_SUBCLASS 0x09
- #define COMMUNICATIONS_MDLM_SUBCLASS 0x0a
- #define COMMUNICATIONS_OBEX_SUBCLASS 0x0b
- #define COMMUNICATIONS_NO_PROTOCOL 0x00
- #define COMMUNICATIONS_V25TER_PROTOCOL 0x01
- #define DATA_INTERFACE_CLASS 0x0a
- #define DATA_INTERFACE_SUBCLASS_NONE 0x00
- #define DATA_INTERFACE_PROTOCOL_NONE 0x00
- #define CS_INTERFACE 0x24
- #define CS_ENDPOINT 0x25
- #define USB_ST_HEADER 0x00
- #define USB_ST_CMF 0x01
- #define USB_ST_ACMF 0x02
- #define USB_ST_DLMF 0x03
- #define USB_ST_TRF 0x04
- #define USB_ST_TCLF 0x05
- #define USB_ST_UF 0x06
- #define USB_ST_CSF 0x07
- #define USB_ST_TOMF 0x08
- #define USB_ST_USBTF 0x09
- #define USB_ST_NCT 0x0a
- #define USB_ST_PUF 0x0b
- #define USB_ST_EUF 0x0c
- #define USB_ST_MCMF 0x0d
- #define USB_ST_CCMF 0x0e
- #define USB_ST_ENF 0x0f
- #define USB_ST_ATMNF 0x10
- #define USB_ST_WHCM 0x11
- #define USB_ST_MDLM 0x12
- #define USB_ST_MDLMD 0x13
- #define USB_ST_DMM 0x14
- #define USB_ST_OBEX 0x15
- #define USB_ST_CS 0x16
- #define USB_ST_CSD 0x17
- #define USB_ST_TCM 0x18
- #define OUT 0x00
- #define IN 0x80
- #define CONTROL 0x00
- #define ISOCHRONOUS 0x01
- #define BULK 0x02
- #define INTERRUPT 0x03
- #define BMATTRIBUTE_RESERVED 0x80
- #define BMATTRIBUTE_SELF_POWERED 0x40
- struct usb_endpoint_descriptor {
- u8 bLength;
- u8 bDescriptorType;
- u8 bEndpointAddress;
- u8 bmAttributes;
- u16 wMaxPacketSize;
- u8 bInterval;
- } __attribute__ ((packed));
- struct usb_interface_descriptor {
- u8 bLength;
- u8 bDescriptorType;
- u8 bInterfaceNumber;
- u8 bAlternateSetting;
- u8 bNumEndpoints;
- u8 bInterfaceClass;
- u8 bInterfaceSubClass;
- u8 bInterfaceProtocol;
- u8 iInterface;
- } __attribute__ ((packed));
- struct usb_configuration_descriptor {
- u8 bLength;
- u8 bDescriptorType;
- u16 wTotalLength;
- u8 bNumInterfaces;
- u8 bConfigurationValue;
- u8 iConfiguration;
- u8 bmAttributes;
- u8 bMaxPower;
- } __attribute__ ((packed));
- struct usb_device_descriptor {
- u8 bLength;
- u8 bDescriptorType;
- u16 bcdUSB;
- u8 bDeviceClass;
- u8 bDeviceSubClass;
- u8 bDeviceProtocol;
- u8 bMaxPacketSize0;
- u16 idVendor;
- u16 idProduct;
- u16 bcdDevice;
- u8 iManufacturer;
- u8 iProduct;
- u8 iSerialNumber;
- u8 bNumConfigurations;
- } __attribute__ ((packed));
- #if defined(CONFIG_USBD_HS)
- struct usb_qualifier_descriptor {
- u8 bLength;
- u8 bDescriptorType;
- u16 bcdUSB;
- u8 bDeviceClass;
- u8 bDeviceSubClass;
- u8 bDeviceProtocol;
- u8 bMaxPacketSize0;
- u8 bNumConfigurations;
- u8 breserved;
- } __attribute__ ((packed));
- #endif
- struct usb_string_descriptor {
- u8 bLength;
- u8 bDescriptorType;
- u16 wData[0];
- } __attribute__ ((packed));
- struct usb_generic_descriptor {
- u8 bLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- } __attribute__ ((packed));
- struct usb_class_function_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- } __attribute__ ((packed));
- struct usb_class_function_descriptor_generic {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bmCapabilities;
- } __attribute__ ((packed));
- struct usb_class_header_function_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u16 bcdCDC;
- } __attribute__ ((packed));
- struct usb_class_call_management_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bmCapabilities;
- u8 bDataInterface;
- } __attribute__ ((packed));
- struct usb_class_abstract_control_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bmCapabilities;
- } __attribute__ ((packed));
- struct usb_class_direct_line_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- } __attribute__ ((packed));
- struct usb_class_telephone_ringer_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bRingerVolSeps;
- u8 bNumRingerPatterns;
- } __attribute__ ((packed));
- struct usb_class_telephone_call_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bmCapabilities;
- } __attribute__ ((packed));
- struct usb_class_union_function_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bMasterInterface;
-
- u8 bSlaveInterface0;
- } __attribute__ ((packed));
- struct usb_class_country_selection_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 iCountryCodeRelDate;
- u16 wCountryCode0[0];
- } __attribute__ ((packed));
- struct usb_class_telephone_operational_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bmCapabilities;
- } __attribute__ ((packed));
- struct usb_class_usb_terminal_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bEntityId;
- u8 bInterfaceNo;
- u8 bOutInterfaceNo;
- u8 bmOptions;
- u8 bChild0[0];
- } __attribute__ ((packed));
- struct usb_class_network_channel_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bEntityId;
- u8 iName;
- u8 bChannelIndex;
- u8 bPhysicalInterface;
- } __attribute__ ((packed));
- struct usb_class_protocol_unit_function_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bEntityId;
- u8 bProtocol;
- u8 bChild0[0];
- } __attribute__ ((packed));
- struct usb_class_extension_unit_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bEntityId;
- u8 bExtensionCode;
- u8 iName;
- u8 bChild0[0];
- } __attribute__ ((packed));
- struct usb_class_multi_channel_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bmCapabilities;
- } __attribute__ ((packed));
- struct usb_class_capi_control_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bmCapabilities;
- } __attribute__ ((packed));
- struct usb_class_ethernet_networking_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 iMACAddress;
- u32 bmEthernetStatistics;
- u16 wMaxSegmentSize;
- u16 wNumberMCFilters;
- u8 bNumberPowerFilters;
- } __attribute__ ((packed));
- struct usb_class_atm_networking_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 iEndSystermIdentifier;
- u8 bmDataCapabilities;
- u8 bmATMDeviceStatistics;
- u16 wType2MaxSegmentSize;
- u16 wType3MaxSegmentSize;
- u16 wMaxVC;
- } __attribute__ ((packed));
- struct usb_class_mdlm_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u16 bcdVersion;
- u8 bGUID[16];
- } __attribute__ ((packed));
- struct usb_class_mdlmd_descriptor {
- u8 bFunctionLength;
- u8 bDescriptorType;
- u8 bDescriptorSubtype;
- u8 bGuidDescriptorType;
- u8 bDetailData[0];
- } __attribute__ ((packed));
- struct usb_class_hid_descriptor {
- u8 bLength;
- u8 bDescriptorType;
- u16 bcdCDC;
- u8 bCountryCode;
- u8 bNumDescriptors;
- u8 bDescriptorType0;
- u16 wDescriptorLength0;
-
- } __attribute__((packed));
- struct usb_class_report_descriptor {
- u8 bLength;
- u8 bDescriptorType;
- u16 wLength;
- u8 bData[0];
- } __attribute__((packed));
- struct usb_descriptor {
- union {
- struct usb_generic_descriptor generic;
- struct usb_endpoint_descriptor endpoint;
- struct usb_interface_descriptor interface;
- struct usb_configuration_descriptor configuration;
- struct usb_device_descriptor device;
- struct usb_string_descriptor string;
- } descriptor;
- } __attribute__ ((packed));
- struct usb_class_descriptor {
- union {
- struct usb_class_function_descriptor function;
- struct usb_class_function_descriptor_generic generic;
- struct usb_class_header_function_descriptor header_function;
- struct usb_class_call_management_descriptor call_management;
- struct usb_class_abstract_control_descriptor abstract_control;
- struct usb_class_direct_line_descriptor direct_line;
- struct usb_class_telephone_ringer_descriptor telephone_ringer;
- struct usb_class_telephone_operational_descriptor telephone_operational;
- struct usb_class_telephone_call_descriptor telephone_call;
- struct usb_class_union_function_descriptor union_function;
- struct usb_class_country_selection_descriptor country_selection;
- struct usb_class_usb_terminal_descriptor usb_terminal;
- struct usb_class_network_channel_descriptor network_channel;
- struct usb_class_extension_unit_descriptor extension_unit;
- struct usb_class_multi_channel_descriptor multi_channel;
- struct usb_class_capi_control_descriptor capi_control;
- struct usb_class_ethernet_networking_descriptor ethernet_networking;
- struct usb_class_atm_networking_descriptor atm_networking;
- struct usb_class_mdlm_descriptor mobile_direct;
- struct usb_class_mdlmd_descriptor mobile_direct_detail;
- struct usb_class_hid_descriptor hid;
- } descriptor;
- } __attribute__ ((packed));
- #ifdef DEBUG
- static inline void print_device_descriptor(struct usb_device_descriptor *d)
- {
- serial_printf("usb device descriptor \n");
- serial_printf("\tbLength %2.2x\n", d->bLength);
- serial_printf("\tbDescriptorType %2.2x\n", d->bDescriptorType);
- serial_printf("\tbcdUSB %4.4x\n", d->bcdUSB);
- serial_printf("\tbDeviceClass %2.2x\n", d->bDeviceClass);
- serial_printf("\tbDeviceSubClass %2.2x\n", d->bDeviceSubClass);
- serial_printf("\tbDeviceProtocol %2.2x\n", d->bDeviceProtocol);
- serial_printf("\tbMaxPacketSize0 %2.2x\n", d->bMaxPacketSize0);
- serial_printf("\tidVendor %4.4x\n", d->idVendor);
- serial_printf("\tidProduct %4.4x\n", d->idProduct);
- serial_printf("\tbcdDevice %4.4x\n", d->bcdDevice);
- serial_printf("\tiManufacturer %2.2x\n", d->iManufacturer);
- serial_printf("\tiProduct %2.2x\n", d->iProduct);
- serial_printf("\tiSerialNumber %2.2x\n", d->iSerialNumber);
- serial_printf("\tbNumConfigurations %2.2x\n", d->bNumConfigurations);
- }
- #else
- #define print_device_descriptor(d)
- #endif
- #endif
|