⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sa1100_usb.h

📁 嵌入式系统设计与实例开发实验教材二源码 多线程应用程序设计 串行端口程序设计 AD接口实验 CAN总线通信实验 GPS通信实验 Linux内核移植与编译实验 IC卡读写实验 SD驱动使
💻 H
字号:
/* * sa1100_usb.h * * Public interface to the sa1100 USB core. For use by client modules * like usb-eth and usb-char. * */#ifndef _SA1100_USB_H#define _SA1100_USB_H#include <asm/byteorder.h>typedef void (*usb_callback_t)(int flag, int size);/* in usb_ctl.c (see also descriptor methods at bottom of file) */// Open the USB client for client and initialize data structures// to default values, but _do not_ start UDC.int sa1100_usb_open( const char * client_name );// Start UDC runningint sa1100_usb_start( void );// Immediately stop udc, fire off completion routines w/-EINTRint sa1100_usb_stop( void ) ;// Disconnect client from usb coreint sa1100_usb_close( void ) ;// set notify callback for when core reaches configured state// return previous pointer (if any)typedef void (*usb_notify_t)(void);usb_notify_t sa1100_set_configured_callback( usb_notify_t callback );/* in usb_send.c */int sa1100_usb_xmitter_avail( void );int sa1100_usb_send(char *buf, int len, usb_callback_t callback);void sa1100_usb_send_reset(void);/* in usb_recev.c */int sa1100_usb_recv(char *buf, int len, usb_callback_t callback);void sa1100_usb_recv_reset(void);//////////////////////////////////////////////////////////////////////////////// Descriptor Management//////////////////////////////////////////////////////////////////////////////#define DescriptorHeader \	__u8 bLength;        \	__u8 bDescriptorType// --- Device Descriptor -------------------typedef struct {	 DescriptorHeader;	 __u16 bcdUSB;		   	/* USB specification revision number in BCD */	 __u8  bDeviceClass;	/* USB class for entire device */	 __u8  bDeviceSubClass; /* USB subclass information for entire device */	 __u8  bDeviceProtocol; /* USB protocol information for entire device */	 __u8  bMaxPacketSize0; /* Max packet size for endpoint zero */	 __u16 idVendor;        /* USB vendor ID */	 __u16 idProduct;       /* USB product ID */	 __u16 bcdDevice;       /* vendor assigned device release number */	 __u8  iManufacturer;	/* index of manufacturer string */	 __u8  iProduct;        /* index of string that describes product */	 __u8  iSerialNumber;	/* index of string containing device serial number */	 __u8  bNumConfigurations; /* number fo configurations */} __attribute__ ((packed)) device_desc_t;// --- Configuration Descriptor ------------typedef struct {	 DescriptorHeader;	 __u16 wTotalLength;	    /* total # of bytes returned in the cfg buf 4 this cfg */	 __u8  bNumInterfaces;      /* number of interfaces in this cfg */	 __u8  bConfigurationValue; /* used to uniquely ID this cfg */	 __u8  iConfiguration;      /* index of string describing configuration */	 __u8  bmAttributes;        /* bitmap of attributes for ths cfg */	 __u8  MaxPower;		    /* power draw in 2ma units */} __attribute__ ((packed)) config_desc_t;// bmAttributes:enum { USB_CONFIG_REMOTEWAKE=0x20, USB_CONFIG_SELFPOWERED=0x40,	   USB_CONFIG_BUSPOWERED=0x80 };// MaxPower:#define USB_POWER( x)  ((x)>>1) /* convert mA to descriptor units of A for MaxPower */// --- Interface Descriptor ---------------typedef struct {	 DescriptorHeader;	 __u8  bInterfaceNumber;   /* Index uniquely identfying this interface */	 __u8  bAlternateSetting;  /* ids an alternate setting for this interface */	 __u8  bNumEndpoints;      /* number of endpoints in this interface */	 __u8  bInterfaceClass;    /* USB class info applying to this interface */	 __u8  bInterfaceSubClass; /* USB subclass info applying to this interface */	 __u8  bInterfaceProtocol; /* USB protocol info applying to this interface */	 __u8  iInterface;         /* index of string describing interface */} __attribute__ ((packed)) intf_desc_t;// --- Endpoint  Descriptor ---------------typedef struct {	 DescriptorHeader;	 __u8  bEndpointAddress;  /* 0..3 ep num, bit 7: 0 = 0ut 1= in */	 __u8  bmAttributes;      /* 0..1 = 0: ctrl, 1: isoc, 2: bulk 3: intr */	 __u16 wMaxPacketSize;    /* data payload size for this ep in this cfg */	 __u8  bInterval;         /* polling interval for this ep in this cfg */} __attribute__ ((packed)) ep_desc_t;// bEndpointAddress:enum { USB_OUT= 0, USB_IN=1 };#define USB_EP_ADDRESS(a,d) (((a)&0xf) | ((d) << 7))// bmAttributes:enum { USB_EP_CNTRL=0, USB_EP_BULK=2, USB_EP_INT=3 };// --- String Descriptor -------------------typedef struct {	 DescriptorHeader;	 __u16 bString[1];		  /* unicode string .. actaully 'n' __u16s */} __attribute__ ((packed)) string_desc_t;/*======================================================= * Handy helpers when working with above * */// these are x86-style 16 bit "words" ...#define make_word_c( w ) __constant_cpu_to_le16(w)#define make_word( w )   __cpu_to_le16(w)// descriptor typesenum { USB_DESC_DEVICE=1, USB_DESC_CONFIG=2, USB_DESC_STRING=3,	   USB_DESC_INTERFACE=4, USB_DESC_ENDPOINT=5 };/*======================================================= * Default descriptor layout for SA-1100 and SA-1110 UDC *//* "config descriptor buffer" - that is, one config,   ..one interface and 2 endpoints */struct cdb {	 config_desc_t cfg;	 intf_desc_t   intf;	 ep_desc_t     ep1;	 ep_desc_t     ep2;} __attribute__ ((packed));/* all SA device descriptors */typedef struct {	 device_desc_t dev;   /* device descriptor */	 struct cdb b;        /* bundle of descriptors for this cfg */} __attribute__ ((packed)) desc_t;/*======================================================= * Descriptor API *//* Get the address of the statically allocated desc_t structure   in the usb core driver. Clients can modify this between   the time they call sa1100_usb_open() and sa1100_usb_start()*/desc_t *sa1100_usb_get_descriptor_ptr( void );/* Set a pointer to the string descriptor at "index". The driver ..has room for 8 string indicies internally. Index zero holds ..a LANGID code and is set to US English by default. Inidices ..1-7 are available for use in the config descriptors as client's ..see fit. This pointer is assumed to be good as long as the ..SA usb core is open (so statically allocate them). Returnes -EINVAL ..if index out of range */int sa1100_usb_set_string_descriptor( int index, string_desc_t * p );/* reverse of above */string_desc_t *sa1100_usb_get_string_descriptor( int index );/* kmalloc() a string descriptor and convert "p" to unicode in it */string_desc_t *sa1100_usb_kmalloc_string_descriptor( const char * p );#endif /* _SA1100_USB_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -