51 #define USBD_BUF_BASE (USBD_BASE+0x100ul) 52 #define USBD_MAX_EP 12ul 69 #define REQ_STANDARD 0x00ul 70 #define REQ_CLASS 0x20ul 71 #define REQ_VENDOR 0x40ul 74 #define GET_STATUS 0x00ul 75 #define CLEAR_FEATURE 0x01ul 76 #define SET_FEATURE 0x03ul 77 #define SET_ADDRESS 0x05ul 78 #define GET_DESCRIPTOR 0x06ul 79 #define SET_DESCRIPTOR 0x07ul 80 #define GET_CONFIGURATION 0x08ul 81 #define SET_CONFIGURATION 0x09ul 82 #define GET_INTERFACE 0x0Aul 83 #define SET_INTERFACE 0x0Bul 84 #define SYNC_FRAME 0x0Cul 87 #define DESC_DEVICE 0x01ul 88 #define DESC_CONFIG 0x02ul 89 #define DESC_STRING 0x03ul 90 #define DESC_INTERFACE 0x04ul 91 #define DESC_ENDPOINT 0x05ul 92 #define DESC_QUALIFIER 0x06ul 93 #define DESC_OTHERSPEED 0x07ul 94 #define DESC_IFPOWER 0x08ul 95 #define DESC_OTG 0x09ul 96 #define DESC_BOS 0x0Ful 97 #define DESC_CAPABILITY 0x10ul 100 #define CAP_WIRELESS 0x01ul 101 #define CAP_USB20_EXT 0x02ul 104 #define DESC_HID 0x21ul 105 #define DESC_HID_RPT 0x22ul 108 #define LEN_DEVICE 18ul 109 #define LEN_QUALIFIER 10ul 110 #define LEN_CONFIG 9ul 111 #define LEN_INTERFACE 9ul 112 #define LEN_ENDPOINT 7ul 116 #define LEN_CCID 0x36ul 117 #define LEN_BOSCAP 7ul 124 #define EP_INPUT 0x80 125 #define EP_OUTPUT 0x00 128 #define FEATURE_DEVICE_REMOTE_WAKEUP 0x01ul 129 #define FEATURE_ENDPOINT_HALT 0x00ul 136 #define USBD_WAKEUP_EN USBD_INTEN_WKEN_Msk 137 #define USBD_DRVSE0 USBD_SE0_SE0_Msk 139 #define USBD_DPPU_EN USBD_ATTR_DPPUEN_Msk 140 #define USBD_PWRDN USBD_ATTR_PWRDN_Msk 141 #define USBD_PHY_EN USBD_ATTR_PHYEN_Msk 142 #define USBD_USB_EN USBD_ATTR_USBEN_Msk 144 #define USBD_INT_BUS USBD_INTEN_BUSIEN_Msk 145 #define USBD_INT_USB USBD_INTEN_USBIEN_Msk 146 #define USBD_INT_FLDET USBD_INTEN_VBDETIEN_Msk 147 #define USBD_INT_WAKEUP (USBD_INTEN_NEVWKIEN_Msk | USBD_INTEN_WKEN_Msk) 149 #define USBD_INTSTS_WAKEUP USBD_INTSTS_NEVWKIF_Msk 150 #define USBD_INTSTS_FLDET USBD_INTSTS_VBDETIF_Msk 151 #define USBD_INTSTS_BUS USBD_INTSTS_BUSIF_Msk 152 #define USBD_INTSTS_USB USBD_INTSTS_USBIF_Msk 153 #define USBD_INTSTS_SETUP USBD_INTSTS_SETUP_Msk 154 #define USBD_INTSTS_EP0 USBD_INTSTS_EPEVT0_Msk 155 #define USBD_INTSTS_EP1 USBD_INTSTS_EPEVT1_Msk 156 #define USBD_INTSTS_EP2 USBD_INTSTS_EPEVT2_Msk 157 #define USBD_INTSTS_EP3 USBD_INTSTS_EPEVT3_Msk 158 #define USBD_INTSTS_EP4 USBD_INTSTS_EPEVT4_Msk 159 #define USBD_INTSTS_EP5 USBD_INTSTS_EPEVT5_Msk 160 #define USBD_INTSTS_EP6 USBD_INTSTS_EPEVT6_Msk 161 #define USBD_INTSTS_EP7 USBD_INTSTS_EPEVT7_Msk 162 #define USBD_INTSTS_EP8 USBD_INTSTS_EPEVT8_Msk 163 #define USBD_INTSTS_EP9 USBD_INTSTS_EPEVT9_Msk 164 #define USBD_INTSTS_EP10 USBD_INTSTS_EPEVT10_Msk 165 #define USBD_INTSTS_EP11 USBD_INTSTS_EPEVT11_Msk 167 #define USBD_STATE_USBRST USBD_ATTR_USBRST_Msk 168 #define USBD_STATE_SUSPEND USBD_ATTR_SUSPEND_Msk 169 #define USBD_STATE_RESUME USBD_ATTR_RESUME_Msk 170 #define USBD_STATE_TIMEOUT USBD_ATTR_TOUT_Msk 172 #define USBD_CFGP_SSTALL USBD_CFGP_SSTALL_Msk 173 #define USBD_CFG_CSTALL USBD_CFG_CSTALL_Msk 175 #define USBD_CFG_EPMODE_DISABLE (0ul << USBD_CFG_STATE_Pos) 176 #define USBD_CFG_EPMODE_OUT (1ul << USBD_CFG_STATE_Pos) 177 #define USBD_CFG_EPMODE_IN (2ul << USBD_CFG_STATE_Pos) 178 #define USBD_CFG_TYPE_ISO (1ul << USBD_CFG_ISOCH_Pos) 199 #define USBD_Maximum(a,b) ((a)>(b) ? (a) : (b)) 213 #define USBD_Minimum(a,b) ((a)<(b) ? (a) : (b)) 226 #define USBD_ENABLE_USB() ((uint32_t)(USBD->ATTR |= 0x7D0)) 238 #define USBD_DISABLE_USB() ((uint32_t)(USBD->ATTR &= ~USBD_USB_EN)) 250 #define USBD_ENABLE_PHY() ((uint32_t)(USBD->ATTR |= USBD_PHY_EN)) 262 #define USBD_DISABLE_PHY() ((uint32_t)(USBD->ATTR &= ~USBD_PHY_EN)) 274 #define USBD_SET_SE0() ((uint32_t)(USBD->SE0 |= USBD_DRVSE0)) 286 #define USBD_CLR_SE0() ((uint32_t)(USBD->SE0 &= ~USBD_DRVSE0)) 298 #define USBD_SET_ADDR(addr) (USBD->FADDR = (addr)) 310 #define USBD_GET_ADDR() ((uint32_t)(USBD->FADDR)) 325 #define USBD_ENABLE_INT(intr) (USBD->INTEN |= (intr)) 337 #define USBD_GET_INT_FLAG() ((uint32_t)(USBD->INTSTS)) 352 #define USBD_CLR_INT_FLAG(flag) (USBD->INTSTS = (flag)) 364 #define USBD_GET_EP_FLAG() ((uint32_t)(USBD->EPSTS)) 380 #define USBD_GET_BUS_STATE() ((uint32_t)(USBD->ATTR & 0xf)) 393 #define USBD_IS_ATTACHED() ((uint32_t)(USBD->VBUSDET & USBD_VBUSDET_VBUSDET_Msk)) 405 #define USBD_STOP_TRANSACTION(ep) (*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].CFGP + (uint32_t)((ep) << 4))) |= USBD_CFGP_CLRRDY_Msk) 418 #define USBD_SET_DATA1(ep) (*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].CFG + (uint32_t)((ep) << 4))) |= USBD_CFG_DSQSYNC_Msk) 431 #define USBD_SET_DATA0(ep) (*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].CFG + (uint32_t)((ep) << 4))) &= (~USBD_CFG_DSQSYNC_Msk)) 445 #define USBD_SET_PAYLOAD_LEN(ep, size) (*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].MXPLD + (uint32_t)((ep) << 4))) = (size)) 457 #define USBD_GET_PAYLOAD_LEN(ep) ((uint32_t)*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].MXPLD + (uint32_t)((ep) << 4)))) 471 #define USBD_CONFIG_EP(ep, config) (*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].CFG + (uint32_t)((ep) << 4))) = (config)) 485 #define USBD_SET_EP_BUF_ADDR(ep, offset) (*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].BUFSEG + (uint32_t)((ep) << 4))) = (offset)) 497 #define USBD_GET_EP_BUF_ADDR(ep) ((uint32_t)*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].BUFSEG + (uint32_t)((ep) << 4)))) 509 #define USBD_SET_EP_STALL(ep) (*((__IO uint32_t *) ((uint32_t)&USBD->EP[0ul].CFGP + (uint32_t)((ep) << 4))) |= USBD_CFGP_SSTALL_Msk) 521 #define USBD_CLR_EP_STALL(ep) (*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].CFGP + (uint32_t)((ep) << 4))) &= ~USBD_CFGP_SSTALL_Msk) 534 #define USBD_GET_EP_STALL(ep) (*((__IO uint32_t *) ((uint32_t)&USBD->EP[0].CFGP + (uint32_t)((ep) << 4))) & USBD_CFGP_SSTALL_Msk) 550 __STATIC_INLINE
void USBD_MemCopy(uint8_t dest[], uint8_t src[], uint32_t size)
552 uint32_t
volatile i=0ul;
579 u32CfgAddr = (uint32_t)(i << 4) + (uint32_t)&
USBD->EP[0].CFG;
580 u32Cfg = *((__IO uint32_t *)(u32CfgAddr));
582 if((u32Cfg & 0xful) == epnum)
584 u32CfgAddr = (uint32_t)(i << 4) + (uint32_t)&
USBD->EP[0].CFGP;
585 u32Cfg = *((__IO uint32_t *)(u32CfgAddr));
610 u32CfgAddr = (uint32_t)(i << 4) + (uint32_t)&
USBD->EP[0].CFG;
611 u32Cfg = *((__IO uint32_t *)(u32CfgAddr));
613 if((u32Cfg & 0xful) == epnum)
615 u32CfgAddr = (uint32_t)(i << 4) + (uint32_t)&
USBD->EP[0].CFGP;
616 u32Cfg = *((__IO uint32_t *)(u32CfgAddr));
643 u32CfgAddr = (uint32_t)(i << 4) + (uint32_t)&
USBD->EP[0].CFG;
644 u32Cfg = *((__IO uint32_t *)(u32CfgAddr));
646 if((u32Cfg & 0xful) == epnum)
648 u32CfgAddr = (uint32_t)(i << 4) + (uint32_t)&
USBD->EP[0].CFGP;
struct s_usbd_info S_USBD_INFO_T
void USBD_SwReset(void)
Reset software flags.
void USBD_CtrlIn(void)
Repeat Control IN pipe.
void USBD_CtrlOut(void)
Repeat Control OUT pipe.
__STATIC_INLINE void USBD_ClearStall(uint8_t epnum)
Clear USB endpoint stall state.
void(* SET_INTERFACE_REQ)(uint32_t u32AltInterface)
void USBD_Open(const S_USBD_INFO_T *param, CLASS_REQ pfnClassReq, SET_INTERFACE_REQ pfnSetInterface)
This function makes USBD module to be ready to use.
volatile uint8_t g_usbd_RemoteWakeupEn
void USBD_LockEpStall(uint32_t u32EpBitmap)
EP stall lock function to avoid stall clear by USB SET FEATURE request.
void(* SET_CONFIG_CB)(void)
void USBD_StandardRequest(void)
Process standard request.
void USBD_SetConfigCallback(SET_CONFIG_CB pfnSetConfigCallback)
The callback function which called when get SET CONFIGURATION request.
void USBD_GetSetupPacket(uint8_t *buf)
Get the received SETUP packet.
uint32_t * gu32HidReportSize
void USBD_PrepareCtrlIn(uint8_t pu8Buf[], uint32_t u32Size)
Prepare the first Control IN pipe.
void USBD_Start(void)
This function makes USB host to recognize the device.
uint8_t ** gu8HidReportDesc
void USBD_SetVendorRequest(VENDOR_REQ pfnVendorReq)
USBD Set Vendor Request.
const S_USBD_INFO_T gsInfo
__STATIC_INLINE void USBD_SetStall(uint8_t epnum)
Set USB endpoint stall state.
__STATIC_INLINE uint32_t USBD_GetStall(uint8_t epnum)
Get USB endpoint stall state.
__STATIC_INLINE void USBD_MemCopy(uint8_t dest[], uint8_t src[], uint32_t size)
To support byte access between USB SRAM and system SRAM.
void USBD_ProcessSetupPacket(void)
Process SETUP packet.
uint32_t * gu32ConfigHidDescIdx
void USBD_PrepareCtrlOut(uint8_t *pu8Buf, uint32_t u32Size)
Prepare the first Control OUT pipe.