00001
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 #ifndef _USB_DESCRIPTORS_H_
00048 #define _USB_DESCRIPTORS_H_
00049
00050
00051
00052 #include "config.h"
00053 #include "modules/usb/device_chap9/usb_standard_request.h"
00054 #include "conf_usb.h"
00055
00056
00057
00058 #define Usb_get_dev_desc_pointer() (&(usb_dev_desc.bLength))
00059 #define Usb_get_dev_desc_length() (sizeof (usb_dev_desc))
00060 #define Usb_get_conf_desc_pointer() (&(usb_conf_desc.cfg.bLength))
00061 #define Usb_get_conf_desc_length() (sizeof (usb_conf_desc))
00062
00063
00064
00065
00066 #define USB_SPECIFICATION 0x0200
00067 #define DEVICE_CLASS 0 // each configuration has its own class
00068 #define DEVICE_SUB_CLASS 0 // each configuration has its own sub-class
00069 #define DEVICE_PROTOCOL 0 // each configuration has its own protocol
00070 #define EP_CONTROL_LENGTH 64
00071 #define VENDOR_ID VID_ATMEL
00072 #define PRODUCT_ID PID_MegaMS
00073 #define RELEASE_NUMBER 0x1000
00074 #define MAN_INDEX 0x01
00075 #define PROD_INDEX 0x02
00076 #if (USB_DEVICE_SN_USE==ENABLE)
00077 #define SN_INDEX 0x03
00078 #else
00079 #define SN_INDEX 0x00 // No serial number field
00080 #endif
00081 #define NB_CONFIGURATION 1
00082
00083
00084 #define NB_INTERFACE 1 // Number of interfaces
00085 #define CONF_NB 1
00086 #define CONF_INDEX 0
00087 #define CONF_ATTRIBUTES USB_CONFIG_BUSPOWERED
00088 #define MAX_POWER 50 // 100 mA
00089
00090
00091 #define INTERFACE_NB 0 // Interface's number
00092 #define ALTERNATE 0
00093 #define NB_ENDPOINT 2
00094 #define INTERFACE_CLASS MS_CLASS // Mass Storage Class
00095 #define INTERFACE_SUB_CLASS MS_SUB_CLASS6 // SCSI transparent Command Set
00096 #define INTERFACE_PROTOCOL MS_PROTOCOL // Bulk-Only Transport
00097 #define INTERFACE_INDEX 0
00098
00099
00100 #define ENDPOINT_NB_1 (EP_MS_IN | USB_ENDPOINT_IN)
00101 #define EP_ATTRIBUTES_1 0x02 // BULK = 0x02, INTERUPT = 0x03
00102 #define EP_IN_LENGTH 64
00103 #define EP_SIZE_1 EP_IN_LENGTH
00104 #define EP_INTERVAL_1 0x00
00105
00106
00107
00108 #define ENDPOINT_NB_2 EP_MS_OUT
00109 #define EP_ATTRIBUTES_2 0x02 // BULK = 0x02, INTERUPT = 0x03
00110 #define EP_IN_LENGTH 64
00111 #define EP_SIZE_2 EP_IN_LENGTH
00112 #define EP_INTERVAL_2 0x00
00113
00114
00115
00116
00117 #define DEVICE_STATUS USB_DEVICE_STATUS_BUS_POWERED
00118
00119 #define LANG_ID 0x00
00120
00121
00122
00123
00124 #define USB_MN_LENGTH 5
00125 #define USB_MANUFACTURER_NAME \
00126 { Usb_unicode('A') \
00127 , Usb_unicode('T') \
00128 , Usb_unicode('M') \
00129 , Usb_unicode('E') \
00130 , Usb_unicode('L') \
00131 }
00132
00133 #define USB_PN_LENGTH 16
00134 #define USB_PRODUCT_NAME \
00135 { Usb_unicode('A') \
00136 ,Usb_unicode('V') \
00137 ,Usb_unicode('R') \
00138 ,Usb_unicode(' ') \
00139 ,Usb_unicode('U') \
00140 ,Usb_unicode('S') \
00141 ,Usb_unicode('B') \
00142 ,Usb_unicode(' ') \
00143 ,Usb_unicode('S') \
00144 ,Usb_unicode('T') \
00145 ,Usb_unicode('O') \
00146 ,Usb_unicode('R') \
00147 ,Usb_unicode('A') \
00148 ,Usb_unicode('G') \
00149 ,Usb_unicode('E') \
00150 ,Usb_unicode(' ') \
00151 }
00152
00153 #define USB_SN_LENGTH 0x0D
00154
00155 #define USB_SERIAL_NUMBER \
00156 { Usb_unicode('0') \
00157 ,Usb_unicode('0') \
00158 ,Usb_unicode('0') \
00159 ,Usb_unicode('0') \
00160 ,Usb_unicode('0') \
00161 ,Usb_unicode('0') \
00162 ,Usb_unicode('0') \
00163 ,Usb_unicode('0') \
00164 ,Usb_unicode('0') \
00165 ,Usb_unicode('0') \
00166 ,Usb_unicode('0') \
00167 ,Usb_unicode('0') \
00168 ,Usb_unicode('0') \
00169 }
00170
00171
00172 #define LANGUAGE_ID 0x0409
00173
00174
00176 typedef struct
00177 {
00178 U8 bmRequestType;
00179 U8 bRequest;
00180 U16 wValue;
00181 U16 wIndex;
00182 U16 wLength;
00183 } S_UsbRequest;
00184
00186 typedef struct {
00187 U8 bLength;
00188 U8 bDescriptorType;
00189 U16 bscUSB;
00190 U8 bDeviceClass;
00191 U8 bDeviceSubClass;
00192 U8 bDeviceProtocol;
00193 U8 bMaxPacketSize0;
00194 U16 idVendor;
00195 U16 idProduct;
00196 U16 bcdDevice;
00197 U8 iManufacturer;
00198 U8 iProduct;
00199 U8 iSerialNumber;
00200 U8 bNumConfigurations;
00201 } S_usb_device_descriptor;
00202
00203
00205 typedef struct {
00206 U8 bLength;
00207 U8 bDescriptorType;
00208 U16 wTotalLength;
00209 U8 bNumInterfaces;
00210 U8 bConfigurationValue;
00211 U8 iConfiguration;
00212 U8 bmAttibutes;
00213 U8 MaxPower;
00214 } S_usb_configuration_descriptor;
00215
00216
00218 typedef struct {
00219 U8 bLength;
00220 U8 bDescriptorType;
00221 U8 bInterfaceNumber;
00222 U8 bAlternateSetting;
00223 U8 bNumEndpoints;
00224 U8 bInterfaceClass;
00225 U8 bInterfaceSubClass;
00226 U8 bInterfaceProtocol;
00227 U8 iInterface;
00228 } S_usb_interface_descriptor;
00229
00230
00232 typedef struct {
00233 U8 bLength;
00234 U8 bDescriptorType;
00235 U8 bEndpointAddress;
00236 U8 bmAttributes;
00237 U16 wMaxPacketSize;
00238 U8 bInterval;
00239 } S_usb_endpoint_descriptor;
00240
00241
00243 typedef struct {
00244 U8 bLength;
00245 U8 bDescriptorType;
00246 U16 wlangid;
00247 } S_usb_language_id;
00248
00249
00250
00251
00252
00253
00254 typedef struct {
00255 U8 bLength;
00256 U8 bDescriptorType;
00257 U16 wstring[USB_MN_LENGTH];
00258 } S_usb_manufacturer_string_descriptor;
00259
00260
00261
00262
00263
00264
00265 typedef struct {
00266 U8 bLength;
00267 U8 bDescriptorType;
00268 U16 wstring[USB_PN_LENGTH];
00269 } S_usb_product_string_descriptor;
00270
00271
00272
00273
00274
00275 #if (USB_DEVICE_SN_USE==ENABLE)
00276
00277 typedef struct {
00278 U8 bLength;
00279 U8 bDescriptorType;
00280 #if (USE_DEVICE_SN_UNIQUE==ENABLE)
00281
00282 #else
00283 U16 wstring[USB_SN_LENGTH];
00284 #endif
00285 } S_usb_serial_number;
00286 #endif
00287
00288
00289
00290
00291 typedef struct
00292 {
00293 S_usb_configuration_descriptor cfg;
00294 S_usb_interface_descriptor ifc;
00295 S_usb_endpoint_descriptor ep1;
00296 S_usb_endpoint_descriptor ep2;
00297 } S_usb_user_configuration_descriptor;
00298
00299
00300
00301
00302
00303
00304
00305 #endif
00306