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

📄 usbdrv.c

📁 USBasp
💻 C
📖 第 1 页 / 共 2 页
字号:
/* Name: usbdrv.c * Project: AVR USB driver * Author: Christian Starkjohann * Creation Date: 2004-12-29 * Tabsize: 4 * Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH * License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt) * This Revision: $Id: usbdrv.c 692 2008-11-07 15:07:40Z cs $ */#include "usbportability.h"#include "usbdrv.h"#include "oddebug.h"/*General Description:This module implements the C-part of the USB driver. See usbdrv.h for adocumentation of the entire driver.*//* ------------------------------------------------------------------------- *//* raw USB registers / interface to assembler code: */uchar usbRxBuf[2*USB_BUFSIZE];  /* raw RX buffer: PID, 8 bytes data, 2 bytes CRC */uchar       usbInputBufOffset;  /* offset in usbRxBuf used for low level receiving */uchar       usbDeviceAddr;      /* assigned during enumeration, defaults to 0 */uchar       usbNewDeviceAddr;   /* device ID which should be set after status phase */uchar       usbConfiguration;   /* currently selected configuration. Administered by driver, but not used */volatile schar usbRxLen;        /* = 0; number of bytes in usbRxBuf; 0 means free, -1 for flow control */uchar       usbCurrentTok;      /* last token received or endpoint number for last OUT token if != 0 */uchar       usbRxToken;         /* token for data we received; or endpont number for last OUT */volatile uchar usbTxLen = USBPID_NAK;   /* number of bytes to transmit with next IN token or handshake token */uchar       usbTxBuf[USB_BUFSIZE];/* data to transmit with next IN, free if usbTxLen contains handshake token */#if USB_COUNT_SOFvolatile uchar  usbSofCount;    /* incremented by assembler module every SOF */#endif#if USB_CFG_HAVE_INTRIN_ENDPOINT && !USB_CFG_SUPPRESS_INTR_CODEusbTxStatus_t  usbTxStatus1;#   if USB_CFG_HAVE_INTRIN_ENDPOINT3usbTxStatus_t  usbTxStatus3;#   endif#endif#if USB_CFG_CHECK_DATA_TOGGLINGuchar       usbCurrentDataToken;/* when we check data toggling to ignore duplicate packets */#endif/* USB status registers / not shared with asm code */uchar               *usbMsgPtr;     /* data to transmit next -- ROM or RAM address */static usbMsgLen_t  usbMsgLen = USB_NO_MSG; /* remaining number of bytes */static uchar        usbMsgFlags;    /* flag values see below */#define USB_FLG_MSGPTR_IS_ROM   (1<<6)#define USB_FLG_USE_USER_RW     (1<<7)/*optimizing hints:- do not post/pre inc/dec integer values in operations- assign value of USB_READ_FLASH() to register variables and don't use side effects in arg- use narrow scope for variables which should be in X/Y/Z register- assign char sized expressions to variables to force 8 bit arithmetics*//* -------------------------- String Descriptors --------------------------- */#if USB_CFG_DESCR_PROPS_STRINGS == 0#if USB_CFG_DESCR_PROPS_STRING_0 == 0#undef USB_CFG_DESCR_PROPS_STRING_0#define USB_CFG_DESCR_PROPS_STRING_0    sizeof(usbDescriptorString0)PROGMEM char usbDescriptorString0[] = { /* language descriptor */    4,          /* sizeof(usbDescriptorString0): length of descriptor in bytes */    3,          /* descriptor type */    0x09, 0x04, /* language index (0x0409 = US-English) */};#endif#if USB_CFG_DESCR_PROPS_STRING_VENDOR == 0 && USB_CFG_VENDOR_NAME_LEN#undef USB_CFG_DESCR_PROPS_STRING_VENDOR#define USB_CFG_DESCR_PROPS_STRING_VENDOR   sizeof(usbDescriptorStringVendor)PROGMEM int  usbDescriptorStringVendor[] = {    USB_STRING_DESCRIPTOR_HEADER(USB_CFG_VENDOR_NAME_LEN),    USB_CFG_VENDOR_NAME};#endif#if USB_CFG_DESCR_PROPS_STRING_PRODUCT == 0 && USB_CFG_DEVICE_NAME_LEN#undef USB_CFG_DESCR_PROPS_STRING_PRODUCT#define USB_CFG_DESCR_PROPS_STRING_PRODUCT   sizeof(usbDescriptorStringDevice)PROGMEM int  usbDescriptorStringDevice[] = {    USB_STRING_DESCRIPTOR_HEADER(USB_CFG_DEVICE_NAME_LEN),    USB_CFG_DEVICE_NAME};#endif#if USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER == 0 && USB_CFG_SERIAL_NUMBER_LEN#undef USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER#define USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER    sizeof(usbDescriptorStringSerialNumber)PROGMEM int usbDescriptorStringSerialNumber[] = {    USB_STRING_DESCRIPTOR_HEADER(USB_CFG_SERIAL_NUMBER_LEN),    USB_CFG_SERIAL_NUMBER};#endif#endif  /* USB_CFG_DESCR_PROPS_STRINGS == 0 *//* --------------------------- Device Descriptor --------------------------- */#if USB_CFG_DESCR_PROPS_DEVICE == 0#undef USB_CFG_DESCR_PROPS_DEVICE#define USB_CFG_DESCR_PROPS_DEVICE  sizeof(usbDescriptorDevice)PROGMEM char usbDescriptorDevice[] = {    /* USB device descriptor */    18,         /* sizeof(usbDescriptorDevice): length of descriptor in bytes */    USBDESCR_DEVICE,        /* descriptor type */    0x10, 0x01,             /* USB version supported */    USB_CFG_DEVICE_CLASS,    USB_CFG_DEVICE_SUBCLASS,    0,                      /* protocol */    8,                      /* max packet size */    /* the following two casts affect the first byte of the constant only, but     * that's sufficient to avoid a warning with the default values.     */    (char)USB_CFG_VENDOR_ID,/* 2 bytes */    (char)USB_CFG_DEVICE_ID,/* 2 bytes */    USB_CFG_DEVICE_VERSION, /* 2 bytes */    USB_CFG_DESCR_PROPS_STRING_VENDOR != 0 ? 1 : 0,         /* manufacturer string index */    USB_CFG_DESCR_PROPS_STRING_PRODUCT != 0 ? 2 : 0,        /* product string index */    USB_CFG_DESCR_PROPS_STRING_SERIAL_NUMBER != 0 ? 3 : 0,  /* serial number string index */    1,          /* number of configurations */};#endif/* ----------------------- Configuration Descriptor ------------------------ */#if USB_CFG_DESCR_PROPS_HID_REPORT != 0 && USB_CFG_DESCR_PROPS_HID == 0#undef USB_CFG_DESCR_PROPS_HID#define USB_CFG_DESCR_PROPS_HID     9   /* length of HID descriptor in config descriptor below */#endif#if USB_CFG_DESCR_PROPS_CONFIGURATION == 0#undef USB_CFG_DESCR_PROPS_CONFIGURATION#define USB_CFG_DESCR_PROPS_CONFIGURATION   sizeof(usbDescriptorConfiguration)PROGMEM char usbDescriptorConfiguration[] = {    /* USB configuration descriptor */    9,          /* sizeof(usbDescriptorConfiguration): length of descriptor in bytes */    USBDESCR_CONFIG,    /* descriptor type */    18 + 7 * USB_CFG_HAVE_INTRIN_ENDPOINT + 7 * USB_CFG_HAVE_INTRIN_ENDPOINT3 +                (USB_CFG_DESCR_PROPS_HID & 0xff), 0,                /* total length of data returned (including inlined descriptors) */    1,          /* number of interfaces in this configuration */    1,          /* index of this configuration */    0,          /* configuration name string index */#if USB_CFG_IS_SELF_POWERED    USBATTR_SELFPOWER,      /* attributes */#else    (char)USBATTR_BUSPOWER, /* attributes */#endif    USB_CFG_MAX_BUS_POWER/2,            /* max USB current in 2mA units *//* interface descriptor follows inline: */    9,          /* sizeof(usbDescrInterface): length of descriptor in bytes */    USBDESCR_INTERFACE, /* descriptor type */    0,          /* index of this interface */    0,          /* alternate setting for this interface */    USB_CFG_HAVE_INTRIN_ENDPOINT + USB_CFG_HAVE_INTRIN_ENDPOINT3, /* endpoints excl 0: number of endpoint descriptors to follow */    USB_CFG_INTERFACE_CLASS,    USB_CFG_INTERFACE_SUBCLASS,    USB_CFG_INTERFACE_PROTOCOL,    0,          /* string index for interface */#if (USB_CFG_DESCR_PROPS_HID & 0xff)    /* HID descriptor */    9,          /* sizeof(usbDescrHID): length of descriptor in bytes */    USBDESCR_HID,   /* descriptor type: HID */    0x01, 0x01, /* BCD representation of HID version */    0x00,       /* target country code */    0x01,       /* number of HID Report (or other HID class) Descriptor infos to follow */    0x22,       /* descriptor type: report */    USB_CFG_HID_REPORT_DESCRIPTOR_LENGTH, 0,  /* total length of report descriptor */#endif#if USB_CFG_HAVE_INTRIN_ENDPOINT    /* endpoint descriptor for endpoint 1 */    7,          /* sizeof(usbDescrEndpoint) */    USBDESCR_ENDPOINT,  /* descriptor type = endpoint */    (char)0x81, /* IN endpoint number 1 */    0x03,       /* attrib: Interrupt endpoint */    8, 0,       /* maximum packet size */    USB_CFG_INTR_POLL_INTERVAL, /* in ms */#endif#if USB_CFG_HAVE_INTRIN_ENDPOINT3   /* endpoint descriptor for endpoint 3 */    7,          /* sizeof(usbDescrEndpoint) */    USBDESCR_ENDPOINT,  /* descriptor type = endpoint */    (char)0x83, /* IN endpoint number 1 */    0x03,       /* attrib: Interrupt endpoint */    8, 0,       /* maximum packet size */    USB_CFG_INTR_POLL_INTERVAL, /* in ms */#endif};#endif/* ------------------------------------------------------------------------- */static inline void  usbResetDataToggling(void){#if USB_CFG_HAVE_INTRIN_ENDPOINT && !USB_CFG_SUPPRESS_INTR_CODE    USB_SET_DATATOKEN1(USB_INITIAL_DATATOKEN);  /* reset data toggling for interrupt endpoint */#   if USB_CFG_HAVE_INTRIN_ENDPOINT3    USB_SET_DATATOKEN3(USB_INITIAL_DATATOKEN);  /* reset data toggling for interrupt endpoint */#   endif#endif}static inline void  usbResetStall(void){#if USB_CFG_IMPLEMENT_HALT && USB_CFG_HAVE_INTRIN_ENDPOINT        usbTxLen1 = USBPID_NAK;#if USB_CFG_HAVE_INTRIN_ENDPOINT3        usbTxLen3 = USBPID_NAK;#endif#endif}/* ------------------------------------------------------------------------- */#if !USB_CFG_SUPPRESS_INTR_CODE#if USB_CFG_HAVE_INTRIN_ENDPOINTstatic void usbGenericSetInterrupt(uchar *data, uchar len, usbTxStatus_t *txStatus){uchar   *p;char    i;#if USB_CFG_IMPLEMENT_HALT    if(usbTxLen1 == USBPID_STALL)        return;#endif    if(txStatus->len & 0x10){   /* packet buffer was empty */        txStatus->buffer[0] ^= USBPID_DATA0 ^ USBPID_DATA1; /* toggle token */    }else{        txStatus->len = USBPID_NAK; /* avoid sending outdated (overwritten) interrupt data */    }    p = txStatus->buffer + 1;    i = len;    do{                         /* if len == 0, we still copy 1 byte, but that's no problem */        *p++ = *data++;    }while(--i > 0);            /* loop control at the end is 2 bytes shorter than at beginning */    usbCrc16Append(&txStatus->buffer[1], len);    txStatus->len = len + 4;    /* len must be given including sync byte */    DBG2(0x21 + (((int)txStatus >> 3) & 3), txStatus->buffer, len + 3);}USB_PUBLIC void usbSetInterrupt(uchar *data, uchar len){    usbGenericSetInterrupt(data, len, &usbTxStatus1);}#endif#if USB_CFG_HAVE_INTRIN_ENDPOINT3USB_PUBLIC void usbSetInterrupt3(uchar *data, uchar len){    usbGenericSetInterrupt(data, len, &usbTxStatus3);}#endif#endif /* USB_CFG_SUPPRESS_INTR_CODE *//* ------------------ utilities for code following below ------------------- *//* Use defines for the switch statement so that we can choose between an * if()else if() and a switch/case based implementation. switch() is more * efficient for a LARGE set of sequential choices, if() is better in all other * cases. */#if USB_CFG_USE_SWITCH_STATEMENT#   define SWITCH_START(cmd)       switch(cmd){{#   define SWITCH_CASE(value)      }break; case (value):{#   define SWITCH_CASE2(v1,v2)     }break; case (v1): case(v2):{#   define SWITCH_CASE3(v1,v2,v3)  }break; case (v1): case(v2): case(v3):{#   define SWITCH_DEFAULT          }break; default:{#   define SWITCH_END              }}#else#   define SWITCH_START(cmd)       {uchar _cmd = cmd; if(0){#   define SWITCH_CASE(value)      }else if(_cmd == (value)){#   define SWITCH_CASE2(v1,v2)     }else if(_cmd == (v1) || _cmd == (v2)){#   define SWITCH_CASE3(v1,v2,v3)  }else if(_cmd == (v1) || _cmd == (v2) || (_cmd == v3)){#   define SWITCH_DEFAULT          }else{#   define SWITCH_END              }}#endif#ifndef USB_RX_USER_HOOK#define USB_RX_USER_HOOK(data, len)#endif#ifndef USB_SET_ADDRESS_HOOK#define USB_SET_ADDRESS_HOOK()#endif/* ------------------------------------------------------------------------- *//* We use if() instead of #if in the macro below because #if can't be used * in macros and the compiler optimizes constant conditions anyway. * This may cause problems with undefined symbols if compiled without * optimizing! */#define GET_DESCRIPTOR(cfgProp, staticName)         \    if(cfgProp){                                    \        if((cfgProp) & USB_PROP_IS_RAM)             \            flags = 0;                              \        if((cfgProp) & USB_PROP_IS_DYNAMIC){        \            len = usbFunctionDescriptor(rq);        \        }else{                                      \            len = USB_PROP_LENGTH(cfgProp);         \            usbMsgPtr = (uchar *)(staticName);      \        }                                           \    }/* usbDriverDescriptor() is similar to usbFunctionDescriptor(), but used * internally for all types of descriptors. */static inline usbMsgLen_t usbDriverDescriptor(usbRequest_t *rq){usbMsgLen_t len = 0;

⌨️ 快捷键说明

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