s3c2410_usb.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * s3c2410_usb.h
  3.  *
  4.  * Public interface to the s3c2410 USB core. For use by client modules
  5.  * like usb-eth and usb-char.
  6.  *
  7.  */
  8. #ifndef _S3C2410_USB_H
  9. #define _S3C2410_USB_H
  10. #include <asm/byteorder.h>
  11. //#define USE_USBD_DMA 0
  12. #undef USE_USBD_DMA
  13. typedef void (*usb_callback_t)(int flag, int size);
  14. /* in usb_ctl.c (see also descriptor methods at bottom of file) */
  15. // Open the USB client for client and initialize data structures
  16. // to default values, but _do not_ start UDC.
  17. int s3c2410_usb_open( const char * client_name );
  18. // Start UDC running
  19. int s3c2410_usb_start( void );
  20. // Immediately stop udc, fire off completion routines w/-EINTR
  21. int s3c2410_usb_stop( void ) ;
  22. // Disconnect client from usb core
  23. int s3c2410_usb_close( void ) ;
  24. // set notify callback for when core reaches configured state
  25. // return previous pointer (if any)
  26. typedef void (*usb_notify_t)(void);
  27. usb_notify_t s3c2410_set_configured_callback( usb_notify_t callback );
  28. /* in usb_send.c */
  29. int s3c2410_usb_xmitter_avail( void );
  30. int s3c2410_usb_send(char *buf, int len, usb_callback_t callback);
  31. void s3c2410_usb_send_reset(void);
  32. /* in usb_recev.c */
  33. int s3c2410_usb_recv(char *buf, int len, usb_callback_t callback);
  34. void s3c2410_usb_recv_reset(void);
  35. //////////////////////////////////////////////////////////////////////////////
  36. // Descriptor Management
  37. //////////////////////////////////////////////////////////////////////////////
  38. #define DescriptorHeader 
  39. __u8 bLength;        
  40. __u8 bDescriptorType
  41. // --- Device Descriptor -------------------
  42. typedef struct {
  43.  DescriptorHeader;
  44.  __u16 bcdUSB;     /* USB specification revision number in BCD */
  45.  __u8  bDeviceClass; /* USB class for entire device */
  46.  __u8  bDeviceSubClass; /* USB subclass information for entire device */
  47.  __u8  bDeviceProtocol; /* USB protocol information for entire device */
  48.  __u8  bMaxPacketSize0; /* Max packet size for endpoint zero */
  49.  __u16 idVendor;        /* USB vendor ID */
  50.  __u16 idProduct;       /* USB product ID */
  51.  __u16 bcdDevice;       /* vendor assigned device release number */
  52.  __u8  iManufacturer; /* index of manufacturer string */
  53.  __u8  iProduct;        /* index of string that describes product */
  54.  __u8  iSerialNumber; /* index of string containing device serial number */
  55.  __u8  bNumConfigurations; /* number fo configurations */
  56. } __attribute__ ((packed)) device_desc_t;
  57. // --- Configuration Descriptor ------------
  58. typedef struct {
  59.  DescriptorHeader;
  60.  __u16 wTotalLength;     /* total # of bytes returned in the cfg buf 4 this cfg */
  61.  __u8  bNumInterfaces;      /* number of interfaces in this cfg */
  62.  __u8  bConfigurationValue; /* used to uniquely ID this cfg */
  63.  __u8  iConfiguration;      /* index of string describing configuration */
  64.  __u8  bmAttributes;        /* bitmap of attributes for ths cfg */
  65.  __u8  MaxPower;     /* power draw in 2ma units */
  66. } __attribute__ ((packed)) config_desc_t;
  67. // bmAttributes:
  68. enum { USB_CONFIG_REMOTEWAKE=0x20, USB_CONFIG_SELFPOWERED=0x40,
  69.    USB_CONFIG_BUSPOWERED=0x80 };
  70. // MaxPower:
  71. #define USB_POWER( x)  ((x)>>1) /* convert mA to descriptor units of A for MaxPower */
  72. // --- Interface Descriptor ---------------
  73. typedef struct {
  74.  DescriptorHeader;
  75.  __u8  bInterfaceNumber;   /* Index uniquely identfying this interface */
  76.  __u8  bAlternateSetting;  /* ids an alternate setting for this interface */
  77.  __u8  bNumEndpoints;      /* number of endpoints in this interface */
  78.  __u8  bInterfaceClass;    /* USB class info applying to this interface */
  79.  __u8  bInterfaceSubClass; /* USB subclass info applying to this interface */
  80.  __u8  bInterfaceProtocol; /* USB protocol info applying to this interface */
  81.  __u8  iInterface;         /* index of string describing interface */
  82. } __attribute__ ((packed)) intf_desc_t;
  83. // --- Endpoint  Descriptor ---------------
  84. typedef struct {
  85.  DescriptorHeader;
  86.  __u8  bEndpointAddress;  /* 0..3 ep num, bit 7: 0 = 0ut 1= in */
  87.  __u8  bmAttributes;      /* 0..1 = 0: ctrl, 1: isoc, 2: bulk 3: intr */
  88.  __u16 wMaxPacketSize;    /* data payload size for this ep in this cfg */
  89.  __u8  bInterval;         /* polling interval for this ep in this cfg */
  90. } __attribute__ ((packed)) ep_desc_t;
  91. // bEndpointAddress:
  92. /* 
  93.  *  bEndpointAddress[0:7]
  94.  *   [0:3] - The endpoint number
  95.  * [4:6] - Reserved, reset to zero
  96.  * [7]   - Direction, ignored for contol endpoint
  97.  * 0 = OUT endpoint
  98.  * 1 = IN endpoint
  99.  *   shawn
  100.  */ 
  101. enum { USB_OUT=0, USB_IN=1 }; 
  102.    
  103. #define USB_EP_ADDRESS(a,d) (((a)&0xf) | ((d) << 7))
  104. // bmAttributes:
  105. enum { USB_EP_CNTRL=0, USB_EP_BULK=2, USB_EP_INT=3 };
  106. // --- String Descriptor -------------------
  107. typedef struct {
  108.  DescriptorHeader;
  109.  __u16 bString[1];   /* unicode string .. actaully 'n' __u16s */
  110. } __attribute__ ((packed)) string_desc_t;
  111. /*=======================================================
  112.  * Handy helpers when working with above
  113.  *
  114.  */
  115. // these are x86-style 16 bit "words" ...
  116. #define make_word_c( w ) __constant_cpu_to_le16(w)
  117. #define make_word( w )   __cpu_to_le16(w)
  118. // descriptor types
  119. enum { USB_DESC_DEVICE=1, USB_DESC_CONFIG=2, USB_DESC_STRING=3,
  120.    USB_DESC_INTERFACE=4, USB_DESC_ENDPOINT=5 };
  121. /*=======================================================
  122.  * Default descriptor layout for S3C2410 UDC
  123.  */
  124. /* "config descriptor buffer" - that is, one config,
  125.    ..one interface and 2 endpoints */
  126. struct cdb {
  127.  config_desc_t cfg;
  128.  intf_desc_t   intf;
  129.  ep_desc_t     ep1; // DOWN stream(OUT), 64byte BULK)
  130.  ep_desc_t     ep2; // UP stream(IN), 64byte BULK)
  131. } __attribute__ ((packed));
  132. /* all S3C2410 device descriptors */
  133. typedef struct {
  134.  device_desc_t dev;   /* device descriptor */
  135.  struct cdb b;        /* bundle of descriptors for this cfg */
  136. } __attribute__ ((packed)) desc_t;
  137. /*=======================================================
  138.  * Descriptor API
  139.  */
  140. /* Get the address of the statically allocated desc_t structure
  141.    in the usb core driver. Clients can modify this between
  142.    the time they call s3c2410_usb_open() and s3c2410_usb_start()
  143. */
  144. desc_t *
  145. s3c2410_usb_get_descriptor_ptr( void );
  146. /* Set a pointer to the string descriptor at "index". The driver
  147.  ..has room for 8 string indicies internally. Index zero holds
  148.  ..a LANGID code and is set to US English by default. Inidices
  149.  ..1-7 are available for use in the config descriptors as client's
  150.  ..see fit. This pointer is assumed to be good as long as the
  151.  ..S3C2410 usb core is open (so statically allocate them). Returnes -EINVAL
  152.  ..if index out of range */
  153. int s3c2410_usb_set_string_descriptor( int index, string_desc_t * p );
  154. /* reverse of above */
  155. string_desc_t *
  156. s3c2410_usb_get_string_descriptor( int index );
  157. /* kmalloc() a string descriptor and convert "p" to unicode in it */
  158. string_desc_t *
  159. s3c2410_usb_kmalloc_string_descriptor( const char * p );
  160. #endif /* _S3C2410_USB_H */