2019-08-24 12:40:18 -04:00
|
|
|
/*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
2019-09-09 09:20:07 -04:00
|
|
|
* Copyright (c) 2018 Scott Shawcroft, 2019 William D. Jones for Adafruit Industries
|
|
|
|
* Copyright (c) 2019 Ha Thach (tinyusb.org)
|
2019-08-24 12:40:18 -04:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* This file is part of the TinyUSB stack.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "tusb_option.h"
|
|
|
|
|
2020-04-22 17:39:53 +02:00
|
|
|
#if defined (STM32F105x8) || defined (STM32F105xB) || defined (STM32F105xC) || \
|
|
|
|
defined (STM32F107xB) || defined (STM32F107xC)
|
|
|
|
#define STM32F1_SYNOPSYS
|
|
|
|
#endif
|
|
|
|
|
2019-09-27 00:15:43 +07:00
|
|
|
#if defined (STM32L475xx) || defined (STM32L476xx) || \
|
2019-09-13 11:22:44 +07:00
|
|
|
defined (STM32L485xx) || defined (STM32L486xx) || defined (STM32L496xx) || \
|
|
|
|
defined (STM32L4R5xx) || defined (STM32L4R7xx) || defined (STM32L4R9xx) || \
|
2019-09-27 00:15:43 +07:00
|
|
|
defined (STM32L4S5xx) || defined (STM32L4S7xx) || defined (STM32L4S9xx)
|
|
|
|
#define STM32L4_SYNOPSYS
|
|
|
|
#endif
|
2019-09-13 11:22:44 +07:00
|
|
|
|
|
|
|
#if TUSB_OPT_DEVICE_ENABLED && \
|
2020-04-22 17:39:53 +02:00
|
|
|
( (CFG_TUSB_MCU == OPT_MCU_STM32F1 && defined(STM32F1_SYNOPSYS)) || \
|
|
|
|
CFG_TUSB_MCU == OPT_MCU_STM32F2 || \
|
2019-09-13 11:22:44 +07:00
|
|
|
CFG_TUSB_MCU == OPT_MCU_STM32F4 || \
|
|
|
|
CFG_TUSB_MCU == OPT_MCU_STM32F7 || \
|
|
|
|
CFG_TUSB_MCU == OPT_MCU_STM32H7 || \
|
2019-09-27 00:15:43 +07:00
|
|
|
(CFG_TUSB_MCU == OPT_MCU_STM32L4 && defined(STM32L4_SYNOPSYS)) \
|
2019-09-13 11:22:44 +07:00
|
|
|
)
|
2019-09-09 10:48:14 -04:00
|
|
|
|
2019-09-11 21:34:04 +07:00
|
|
|
// TODO Support OTG_HS
|
|
|
|
// EP_MAX : Max number of bi-directional endpoints including EP0
|
|
|
|
// EP_FIFO_SIZE : Size of dedicated USB SRAM
|
2020-04-22 17:39:53 +02:00
|
|
|
#if CFG_TUSB_MCU == OPT_MCU_STM32F1
|
|
|
|
#include "stm32f1xx.h"
|
|
|
|
#define EP_MAX 4
|
|
|
|
#define EP_FIFO_SIZE 1280
|
|
|
|
#elif CFG_TUSB_MCU == OPT_MCU_STM32F2
|
2019-09-12 10:41:03 +07:00
|
|
|
#include "stm32f2xx.h"
|
|
|
|
#define EP_MAX USB_OTG_FS_MAX_IN_ENDPOINTS
|
|
|
|
#define EP_FIFO_SIZE USB_OTG_FS_TOTAL_FIFO_SIZE
|
|
|
|
#elif CFG_TUSB_MCU == OPT_MCU_STM32F4
|
2019-09-09 10:48:14 -04:00
|
|
|
#include "stm32f4xx.h"
|
2019-09-12 10:41:03 +07:00
|
|
|
#define EP_MAX USB_OTG_FS_MAX_IN_ENDPOINTS
|
|
|
|
#define EP_FIFO_SIZE USB_OTG_FS_TOTAL_FIFO_SIZE
|
2019-09-09 10:48:14 -04:00
|
|
|
#elif CFG_TUSB_MCU == OPT_MCU_STM32H7
|
|
|
|
#include "stm32h7xx.h"
|
2019-09-12 10:41:03 +07:00
|
|
|
#define EP_MAX 9
|
|
|
|
#define EP_FIFO_SIZE 4096
|
2019-09-09 10:48:14 -04:00
|
|
|
// TODO The official name of the USB FS peripheral on H7 is "USB2_OTG_FS".
|
2019-09-12 10:41:03 +07:00
|
|
|
#elif CFG_TUSB_MCU == OPT_MCU_STM32F7
|
2019-09-11 21:34:04 +07:00
|
|
|
#include "stm32f7xx.h"
|
2019-09-12 10:41:03 +07:00
|
|
|
#define EP_MAX 6
|
|
|
|
#define EP_FIFO_SIZE 1280
|
2019-09-13 11:22:44 +07:00
|
|
|
#elif CFG_TUSB_MCU == OPT_MCU_STM32L4
|
|
|
|
#include "stm32l4xx.h"
|
|
|
|
#define EP_MAX 6
|
|
|
|
#define EP_FIFO_SIZE 1280
|
2019-09-12 10:41:03 +07:00
|
|
|
#else
|
|
|
|
#error "Unsupported MCUs"
|
2019-09-09 10:48:14 -04:00
|
|
|
#endif
|
2019-08-24 12:40:18 -04:00
|
|
|
|
|
|
|
#include "device/dcd.h"
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
/* MACRO TYPEDEF CONSTANT ENUM
|
|
|
|
*------------------------------------------------------------------*/
|
2020-04-18 22:59:56 +07:00
|
|
|
|
|
|
|
// Since TinyUSB doesn't use SOF for now, and this interrupt too often (1ms interval)
|
|
|
|
// We disable SOF for now until needed later on
|
|
|
|
#define USE_SOF 0
|
|
|
|
|
2019-09-13 11:22:44 +07:00
|
|
|
#define DEVICE_BASE (USB_OTG_DeviceTypeDef *) (USB_OTG_FS_PERIPH_BASE + USB_OTG_DEVICE_BASE)
|
|
|
|
#define OUT_EP_BASE (USB_OTG_OUTEndpointTypeDef *) (USB_OTG_FS_PERIPH_BASE + USB_OTG_OUT_ENDPOINT_BASE)
|
|
|
|
#define IN_EP_BASE (USB_OTG_INEndpointTypeDef *) (USB_OTG_FS_PERIPH_BASE + USB_OTG_IN_ENDPOINT_BASE)
|
|
|
|
#define FIFO_BASE(_x) ((volatile uint32_t *) (USB_OTG_FS_PERIPH_BASE + USB_OTG_FIFO_BASE + (_x) * USB_OTG_FIFO_SIZE))
|
2019-09-09 09:20:07 -04:00
|
|
|
|
2019-09-02 13:34:33 -04:00
|
|
|
static TU_ATTR_ALIGNED(4) uint32_t _setup_packet[6];
|
|
|
|
static uint8_t _setup_offs; // We store up to 3 setup packets.
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint8_t * buffer;
|
|
|
|
uint16_t total_len;
|
|
|
|
uint16_t max_size;
|
|
|
|
} xfer_ctl_t;
|
|
|
|
|
2019-09-04 01:03:42 -04:00
|
|
|
typedef volatile uint32_t * usb_fifo_t;
|
|
|
|
|
2019-09-09 09:20:07 -04:00
|
|
|
xfer_ctl_t xfer_status[EP_MAX][2];
|
2019-09-02 13:34:33 -04:00
|
|
|
#define XFER_CTL_BASE(_ep, _dir) &xfer_status[_ep][_dir]
|
|
|
|
|
|
|
|
|
|
|
|
// Setup the control endpoint 0.
|
2019-09-09 09:20:07 -04:00
|
|
|
static void bus_reset(void) {
|
2019-09-02 13:34:33 -04:00
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
USB_OTG_OUTEndpointTypeDef * out_ep = OUT_EP_BASE;
|
|
|
|
|
2019-09-09 09:20:07 -04:00
|
|
|
for(uint8_t n = 0; n < EP_MAX; n++) {
|
2019-09-02 13:34:33 -04:00
|
|
|
out_ep[n].DOEPCTL |= USB_OTG_DOEPCTL_SNAK;
|
|
|
|
}
|
|
|
|
|
|
|
|
dev->DAINTMSK |= (1 << USB_OTG_DAINTMSK_OEPM_Pos) | (1 << USB_OTG_DAINTMSK_IEPM_Pos);
|
|
|
|
dev->DOEPMSK |= USB_OTG_DOEPMSK_STUPM | USB_OTG_DOEPMSK_XFRCM;
|
|
|
|
dev->DIEPMSK |= USB_OTG_DIEPMSK_TOM | USB_OTG_DIEPMSK_XFRCM;
|
|
|
|
|
2019-09-09 09:20:07 -04:00
|
|
|
// "USB Data FIFOs" section in reference manual
|
|
|
|
// Peripheral FIFO architecture
|
2019-09-02 13:34:33 -04:00
|
|
|
//
|
2019-09-09 09:20:07 -04:00
|
|
|
// --------------- 320 or 1024 ( 1280 or 4096 bytes )
|
|
|
|
// | IN FIFO MAX |
|
2019-09-02 13:34:33 -04:00
|
|
|
// ---------------
|
2019-09-09 09:20:07 -04:00
|
|
|
// | ... |
|
2019-09-02 13:34:33 -04:00
|
|
|
// --------------- y + x + 16 + GRXFSIZ
|
2019-09-09 09:20:07 -04:00
|
|
|
// | IN FIFO 2 |
|
2019-09-02 13:34:33 -04:00
|
|
|
// --------------- x + 16 + GRXFSIZ
|
2019-09-09 09:20:07 -04:00
|
|
|
// | IN FIFO 1 |
|
2019-09-02 13:34:33 -04:00
|
|
|
// --------------- 16 + GRXFSIZ
|
2019-09-09 09:20:07 -04:00
|
|
|
// | IN FIFO 0 |
|
2019-09-02 13:34:33 -04:00
|
|
|
// --------------- GRXFSIZ
|
2019-09-09 09:20:07 -04:00
|
|
|
// | OUT FIFO |
|
|
|
|
// | ( Shared ) |
|
2019-09-02 13:34:33 -04:00
|
|
|
// --------------- 0
|
|
|
|
//
|
2019-09-09 09:20:07 -04:00
|
|
|
// According to "FIFO RAM allocation" section in RM, FIFO RAM are allocated as follows (each word 32-bits):
|
|
|
|
// - Each EP IN needs at least max packet size, 16 words is sufficient for EP0 IN
|
2019-09-02 13:34:33 -04:00
|
|
|
//
|
2019-09-09 09:20:07 -04:00
|
|
|
// - All EP OUT shared a unique OUT FIFO which uses
|
|
|
|
// * 10 locations in hardware for setup packets + setup control words (up to 3 setup packets).
|
|
|
|
// * 2 locations for OUT endpoint control words.
|
|
|
|
// * 16 for largest packet size of 64 bytes. ( TODO Highspeed is 512 bytes)
|
|
|
|
// * 1 location for global NAK (not required/used here).
|
|
|
|
// * It is recommended to allocate 2 times the largest packet size, therefore
|
|
|
|
// Recommended value = 10 + 1 + 2 x (16+2) = 47 --> Let's make it 52
|
|
|
|
USB_OTG_FS->GRXFSIZ = 52;
|
2019-09-02 13:34:33 -04:00
|
|
|
|
|
|
|
// Control IN uses FIFO 0 with 64 bytes ( 16 32-bit word )
|
2019-09-09 09:20:07 -04:00
|
|
|
USB_OTG_FS->DIEPTXF0_HNPTXFSIZ = (16 << USB_OTG_TX0FD_Pos) | (USB_OTG_FS->GRXFSIZ & 0x0000ffffUL);
|
2019-09-02 13:34:33 -04:00
|
|
|
|
|
|
|
out_ep[0].DOEPTSIZ |= (3 << USB_OTG_DOEPTSIZ_STUPCNT_Pos);
|
|
|
|
|
2019-09-09 09:20:07 -04:00
|
|
|
USB_OTG_FS->GINTMSK |= USB_OTG_GINTMSK_OEPINT | USB_OTG_GINTMSK_IEPINT;
|
2019-09-02 13:34:33 -04:00
|
|
|
}
|
|
|
|
|
2019-09-09 09:20:07 -04:00
|
|
|
static void end_of_reset(void) {
|
2019-09-02 13:34:33 -04:00
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
USB_OTG_INEndpointTypeDef * in_ep = IN_EP_BASE;
|
|
|
|
// On current silicon on the Full Speed core, speed is fixed to Full Speed.
|
|
|
|
// However, keep for debugging and in case Low Speed is ever supported.
|
|
|
|
uint32_t enum_spd = (dev->DSTS & USB_OTG_DSTS_ENUMSPD_Msk) >> USB_OTG_DSTS_ENUMSPD_Pos;
|
|
|
|
|
|
|
|
// Maximum packet size for EP 0 is set for both directions by writing
|
|
|
|
// DIEPCTL.
|
|
|
|
if(enum_spd == 0x03) {
|
|
|
|
// 64 bytes
|
|
|
|
in_ep[0].DIEPCTL &= ~(0x03 << USB_OTG_DIEPCTL_MPSIZ_Pos);
|
|
|
|
xfer_status[0][TUSB_DIR_OUT].max_size = 64;
|
|
|
|
xfer_status[0][TUSB_DIR_IN].max_size = 64;
|
|
|
|
} else {
|
|
|
|
// 8 bytes
|
|
|
|
in_ep[0].DIEPCTL |= (0x03 << USB_OTG_DIEPCTL_MPSIZ_Pos);
|
|
|
|
xfer_status[0][TUSB_DIR_OUT].max_size = 8;
|
|
|
|
xfer_status[0][TUSB_DIR_IN].max_size = 8;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-24 12:40:18 -04:00
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
/* Controller API
|
|
|
|
*------------------------------------------------------------------*/
|
|
|
|
void dcd_init (uint8_t rhport)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
2019-08-30 21:57:06 -04:00
|
|
|
|
2019-09-09 09:20:07 -04:00
|
|
|
// Programming model begins in the last section of the chapter on the USB
|
|
|
|
// peripheral in each Reference Manual.
|
2020-04-29 11:32:22 +02:00
|
|
|
USB_OTG_FS->GAHBCFG |= USB_OTG_GAHBCFG_GINT;
|
2019-08-30 21:57:06 -04:00
|
|
|
|
|
|
|
// No HNP/SRP (no OTG support), program timeout later, turnaround
|
|
|
|
// programmed for 32+ MHz.
|
2019-09-09 10:48:14 -04:00
|
|
|
// TODO: PHYSEL is read-only on some cores (STM32F407). Worth gating?
|
2019-09-09 09:20:07 -04:00
|
|
|
USB_OTG_FS->GUSBCFG |= (0x06 << USB_OTG_GUSBCFG_TRDT_Pos) | USB_OTG_GUSBCFG_PHYSEL;
|
2019-08-30 21:57:06 -04:00
|
|
|
|
2020-04-18 22:59:56 +07:00
|
|
|
// Clear all interrupts
|
|
|
|
USB_OTG_FS->GINTSTS |= USB_OTG_FS->GINTSTS;
|
2019-08-30 21:57:06 -04:00
|
|
|
|
2020-04-18 22:59:56 +07:00
|
|
|
// Required as part of core initialization.
|
|
|
|
// TODO: How should mode mismatch be handled? It will cause
|
2019-08-30 21:57:06 -04:00
|
|
|
// the core to stop working/require reset.
|
2020-04-18 22:59:56 +07:00
|
|
|
USB_OTG_FS->GINTMSK |= USB_OTG_GINTMSK_OTGINT | USB_OTG_GINTMSK_MMISM;
|
2019-08-30 21:57:06 -04:00
|
|
|
|
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
|
|
|
|
// If USB host misbehaves during status portion of control xfer
|
|
|
|
// (non zero-length packet), send STALL back and discard. Full speed.
|
|
|
|
dev->DCFG |= USB_OTG_DCFG_NZLSOHSK | (3 << USB_OTG_DCFG_DSPD_Pos);
|
|
|
|
|
2020-04-18 23:48:36 +07:00
|
|
|
USB_OTG_FS->GINTMSK |= USB_OTG_GINTMSK_USBRST | USB_OTG_GINTMSK_ENUMDNEM |
|
|
|
|
USB_OTG_GINTMSK_USBSUSPM | USB_OTG_GINTMSK_WUIM |
|
|
|
|
USB_OTG_GINTMSK_RXFLVLM | (USE_SOF ? USB_OTG_GINTMSK_SOFM : 0);
|
2019-08-30 21:57:06 -04:00
|
|
|
|
2019-12-11 14:03:36 +07:00
|
|
|
// Enable USB transceiver.
|
|
|
|
USB_OTG_FS->GCCFG |= USB_OTG_GCCFG_PWRDWN;
|
2019-08-24 12:40:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void dcd_int_enable (uint8_t rhport)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
|
|
|
NVIC_EnableIRQ(OTG_FS_IRQn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dcd_int_disable (uint8_t rhport)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
|
|
|
NVIC_DisableIRQ(OTG_FS_IRQn);
|
|
|
|
}
|
|
|
|
|
|
|
|
void dcd_set_address (uint8_t rhport, uint8_t dev_addr)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
2019-09-02 21:00:30 -04:00
|
|
|
|
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
dev->DCFG |= (dev_addr << USB_OTG_DCFG_DAD_Pos) & USB_OTG_DCFG_DAD_Msk;
|
|
|
|
|
|
|
|
// Response with status after changing device address
|
|
|
|
dcd_edpt_xfer(rhport, tu_edpt_addr(0, TUSB_DIR_IN), NULL, 0);
|
2019-08-24 12:40:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void dcd_remote_wakeup(uint8_t rhport)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
|
|
|
}
|
|
|
|
|
2020-04-16 20:20:20 +07:00
|
|
|
void dcd_connect(uint8_t rhport)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
|
|
|
|
dev->DCTL &= ~USB_OTG_DCTL_SDIS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dcd_disconnect(uint8_t rhport)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
|
|
|
|
dev->DCTL |= USB_OTG_DCTL_SDIS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-08-24 12:40:18 -04:00
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
/* DCD Endpoint port
|
|
|
|
*------------------------------------------------------------------*/
|
2019-09-09 10:48:14 -04:00
|
|
|
|
2019-08-24 12:40:18 -04:00
|
|
|
bool dcd_edpt_open (uint8_t rhport, tusb_desc_endpoint_t const * desc_edpt)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
2019-09-03 00:37:50 -04:00
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
USB_OTG_OUTEndpointTypeDef * out_ep = OUT_EP_BASE;
|
|
|
|
USB_OTG_INEndpointTypeDef * in_ep = IN_EP_BASE;
|
|
|
|
|
|
|
|
uint8_t const epnum = tu_edpt_number(desc_edpt->bEndpointAddress);
|
|
|
|
uint8_t const dir = tu_edpt_dir(desc_edpt->bEndpointAddress);
|
2019-09-21 22:40:01 -04:00
|
|
|
|
2019-09-13 23:52:43 -04:00
|
|
|
TU_ASSERT(desc_edpt->wMaxPacketSize.size <= 64);
|
2019-09-13 23:37:47 -04:00
|
|
|
TU_ASSERT(epnum < EP_MAX);
|
2019-09-21 22:40:01 -04:00
|
|
|
|
2019-09-03 00:37:50 -04:00
|
|
|
xfer_ctl_t * xfer = XFER_CTL_BASE(epnum, dir);
|
|
|
|
xfer->max_size = desc_edpt->wMaxPacketSize.size;
|
|
|
|
|
2019-09-13 23:37:47 -04:00
|
|
|
if(dir == TUSB_DIR_OUT)
|
|
|
|
{
|
2020-04-26 22:14:59 +07:00
|
|
|
out_ep[epnum].DOEPCTL |= (1 << USB_OTG_DOEPCTL_USBAEP_Pos) |
|
|
|
|
(desc_edpt->bmAttributes.xfer << USB_OTG_DOEPCTL_EPTYP_Pos) |
|
|
|
|
(desc_edpt->wMaxPacketSize.size << USB_OTG_DOEPCTL_MPSIZ_Pos);
|
|
|
|
|
2019-09-03 00:37:50 -04:00
|
|
|
dev->DAINTMSK |= (1 << (USB_OTG_DAINTMSK_OEPM_Pos + epnum));
|
2019-09-13 23:37:47 -04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-09-09 09:20:07 -04:00
|
|
|
// "USB Data FIFOs" section in reference manual
|
|
|
|
// Peripheral FIFO architecture
|
2019-09-03 00:37:50 -04:00
|
|
|
//
|
2019-09-09 09:20:07 -04:00
|
|
|
// --------------- 320 or 1024 ( 1280 or 4096 bytes )
|
|
|
|
// | IN FIFO MAX |
|
2019-09-03 00:37:50 -04:00
|
|
|
// ---------------
|
2019-09-09 09:20:07 -04:00
|
|
|
// | ... |
|
2019-09-03 00:37:50 -04:00
|
|
|
// --------------- y + x + 16 + GRXFSIZ
|
2019-09-09 09:20:07 -04:00
|
|
|
// | IN FIFO 2 |
|
2019-09-03 00:37:50 -04:00
|
|
|
// --------------- x + 16 + GRXFSIZ
|
2019-09-09 09:20:07 -04:00
|
|
|
// | IN FIFO 1 |
|
2019-09-03 00:37:50 -04:00
|
|
|
// --------------- 16 + GRXFSIZ
|
2019-09-09 09:20:07 -04:00
|
|
|
// | IN FIFO 0 |
|
2019-09-03 00:37:50 -04:00
|
|
|
// --------------- GRXFSIZ
|
2019-09-09 09:20:07 -04:00
|
|
|
// | OUT FIFO |
|
|
|
|
// | ( Shared ) |
|
2019-09-03 00:37:50 -04:00
|
|
|
// --------------- 0
|
|
|
|
//
|
2019-09-09 09:20:07 -04:00
|
|
|
// Since OUT FIFO = GRXFSIZ, FIFO 0 = 16, for simplicity, we equally allocated for the rest of endpoints
|
|
|
|
// - Size : (FIFO_SIZE/4 - GRXFSIZ - 16) / (EP_MAX-1)
|
|
|
|
// - Offset: GRXFSIZ + 16 + Size*(epnum-1)
|
2019-09-21 22:40:01 -04:00
|
|
|
// - IN EP 1 gets FIFO 1, IN EP "n" gets FIFO "n".
|
2019-09-03 00:37:50 -04:00
|
|
|
|
2020-04-26 22:14:59 +07:00
|
|
|
in_ep[epnum].DIEPCTL |= (1 << USB_OTG_DIEPCTL_USBAEP_Pos) |
|
|
|
|
(epnum << USB_OTG_DIEPCTL_TXFNUM_Pos) |
|
|
|
|
(desc_edpt->bmAttributes.xfer << USB_OTG_DIEPCTL_EPTYP_Pos) |
|
|
|
|
(desc_edpt->bmAttributes.xfer != TUSB_XFER_ISOCHRONOUS ? USB_OTG_DOEPCTL_SD0PID_SEVNFRM : 0) |
|
|
|
|
(desc_edpt->wMaxPacketSize.size << USB_OTG_DIEPCTL_MPSIZ_Pos);
|
|
|
|
|
2019-09-03 00:37:50 -04:00
|
|
|
dev->DAINTMSK |= (1 << (USB_OTG_DAINTMSK_IEPM_Pos + epnum));
|
|
|
|
|
2019-09-21 22:40:01 -04:00
|
|
|
// Both TXFD and TXSA are in unit of 32-bit words.
|
|
|
|
// IN FIFO 0 was configured during enumeration, hence the "+ 16".
|
2019-09-09 09:20:07 -04:00
|
|
|
uint16_t const allocated_size = (USB_OTG_FS->GRXFSIZ & 0x0000ffff) + 16;
|
|
|
|
uint16_t const fifo_size = (EP_FIFO_SIZE/4 - allocated_size) / (EP_MAX-1);
|
|
|
|
uint32_t const fifo_offset = allocated_size + fifo_size*(epnum-1);
|
2019-09-21 22:40:01 -04:00
|
|
|
|
|
|
|
// DIEPTXF starts at FIFO #1.
|
2019-09-09 09:20:07 -04:00
|
|
|
USB_OTG_FS->DIEPTXF[epnum - 1] = (fifo_size << USB_OTG_DIEPTXF_INEPTXFD_Pos) | fifo_offset;
|
2019-09-03 00:37:50 -04:00
|
|
|
}
|
2019-08-24 12:40:18 -04:00
|
|
|
|
2019-09-03 00:37:50 -04:00
|
|
|
return true;
|
2019-08-24 12:40:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t total_bytes)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
2019-09-02 19:32:11 -04:00
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
USB_OTG_OUTEndpointTypeDef * out_ep = OUT_EP_BASE;
|
|
|
|
USB_OTG_INEndpointTypeDef * in_ep = IN_EP_BASE;
|
2019-08-24 12:40:18 -04:00
|
|
|
|
2019-09-02 19:32:11 -04:00
|
|
|
uint8_t const epnum = tu_edpt_number(ep_addr);
|
|
|
|
uint8_t const dir = tu_edpt_dir(ep_addr);
|
|
|
|
|
|
|
|
xfer_ctl_t * xfer = XFER_CTL_BASE(epnum, dir);
|
2020-04-26 22:14:59 +07:00
|
|
|
xfer->buffer = buffer;
|
|
|
|
xfer->total_len = total_bytes;
|
2019-09-02 19:32:11 -04:00
|
|
|
|
|
|
|
uint16_t num_packets = (total_bytes / xfer->max_size);
|
|
|
|
uint8_t short_packet_size = total_bytes % xfer->max_size;
|
|
|
|
|
|
|
|
// Zero-size packet is special case.
|
|
|
|
if(short_packet_size > 0 || (total_bytes == 0)) {
|
|
|
|
num_packets++;
|
|
|
|
}
|
|
|
|
|
2020-04-26 22:14:59 +07:00
|
|
|
// IN and OUT endpoint xfers are interrupt-driven, we just schedule them here.
|
2019-09-02 19:32:11 -04:00
|
|
|
if(dir == TUSB_DIR_IN) {
|
|
|
|
// A full IN transfer (multiple packets, possibly) triggers XFRC.
|
2020-04-26 22:14:59 +07:00
|
|
|
in_ep[epnum].DIEPTSIZ = (num_packets << USB_OTG_DIEPTSIZ_PKTCNT_Pos) |
|
|
|
|
((total_bytes & USB_OTG_DIEPTSIZ_XFRSIZ_Msk) << USB_OTG_DIEPTSIZ_XFRSIZ_Pos);
|
|
|
|
|
2019-09-02 19:32:11 -04:00
|
|
|
in_ep[epnum].DIEPCTL |= USB_OTG_DIEPCTL_EPENA | USB_OTG_DIEPCTL_CNAK;
|
2020-04-24 16:40:48 +02:00
|
|
|
// Enable fifo empty interrupt only if there are something to put in the fifo.
|
|
|
|
if(total_bytes != 0) {
|
|
|
|
dev->DIEPEMPMSK |= (1 << epnum);
|
|
|
|
}
|
2019-09-02 19:32:11 -04:00
|
|
|
} else {
|
2020-05-08 18:10:48 +02:00
|
|
|
// A full OUT transfer (multiple packets, possibly) triggers XFRC.
|
|
|
|
out_ep[epnum].DOEPTSIZ &= ~(USB_OTG_DOEPTSIZ_PKTCNT_Msk | USB_OTG_DOEPTSIZ_XFRSIZ);
|
|
|
|
out_ep[epnum].DOEPTSIZ |= (num_packets << USB_OTG_DOEPTSIZ_PKTCNT_Pos) |
|
|
|
|
((total_bytes << USB_OTG_DOEPTSIZ_XFRSIZ_Pos) & USB_OTG_DOEPTSIZ_XFRSIZ_Msk);
|
2020-04-26 22:14:59 +07:00
|
|
|
|
2019-09-02 19:32:11 -04:00
|
|
|
out_ep[epnum].DOEPCTL |= USB_OTG_DOEPCTL_EPENA | USB_OTG_DOEPCTL_CNAK;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2019-08-24 12:40:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: The logic for STALLing and disabling an endpoint is very similar
|
|
|
|
// (send STALL versus NAK handshakes back). Refactor into resuable function.
|
|
|
|
void dcd_edpt_stall (uint8_t rhport, uint8_t ep_addr)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
2019-09-03 01:05:26 -04:00
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
USB_OTG_OUTEndpointTypeDef * out_ep = OUT_EP_BASE;
|
|
|
|
USB_OTG_INEndpointTypeDef * in_ep = IN_EP_BASE;
|
|
|
|
|
|
|
|
uint8_t const epnum = tu_edpt_number(ep_addr);
|
|
|
|
uint8_t const dir = tu_edpt_dir(ep_addr);
|
|
|
|
|
|
|
|
if(dir == TUSB_DIR_IN) {
|
|
|
|
// Only disable currently enabled non-control endpoint
|
|
|
|
if ( (epnum == 0) || !(in_ep[epnum].DIEPCTL & USB_OTG_DIEPCTL_EPENA) ){
|
|
|
|
in_ep[epnum].DIEPCTL |= (USB_OTG_DIEPCTL_SNAK | USB_OTG_DIEPCTL_STALL);
|
|
|
|
} else {
|
|
|
|
// Stop transmitting packets and NAK IN xfers.
|
|
|
|
in_ep[epnum].DIEPCTL |= USB_OTG_DIEPCTL_SNAK;
|
|
|
|
while((in_ep[epnum].DIEPINT & USB_OTG_DIEPINT_INEPNE) == 0);
|
|
|
|
|
|
|
|
// Disable the endpoint.
|
|
|
|
in_ep[epnum].DIEPCTL |= (USB_OTG_DIEPCTL_STALL | USB_OTG_DIEPCTL_EPDIS);
|
|
|
|
while((in_ep[epnum].DIEPINT & USB_OTG_DIEPINT_EPDISD_Msk) == 0);
|
|
|
|
in_ep[epnum].DIEPINT = USB_OTG_DIEPINT_EPDISD;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flush the FIFO, and wait until we have confirmed it cleared.
|
2019-09-09 09:20:07 -04:00
|
|
|
USB_OTG_FS->GRSTCTL |= ((epnum - 1) << USB_OTG_GRSTCTL_TXFNUM_Pos);
|
|
|
|
USB_OTG_FS->GRSTCTL |= USB_OTG_GRSTCTL_TXFFLSH;
|
|
|
|
while((USB_OTG_FS->GRSTCTL & USB_OTG_GRSTCTL_TXFFLSH_Msk) != 0);
|
2019-09-03 01:05:26 -04:00
|
|
|
} else {
|
|
|
|
// Only disable currently enabled non-control endpoint
|
|
|
|
if ( (epnum == 0) || !(out_ep[epnum].DOEPCTL & USB_OTG_DOEPCTL_EPENA) ){
|
|
|
|
out_ep[epnum].DOEPCTL |= USB_OTG_DOEPCTL_STALL;
|
|
|
|
} else {
|
|
|
|
// Asserting GONAK is required to STALL an OUT endpoint.
|
|
|
|
// Simpler to use polling here, we don't use the "B"OUTNAKEFF interrupt
|
|
|
|
// anyway, and it can't be cleared by user code. If this while loop never
|
|
|
|
// finishes, we have bigger problems than just the stack.
|
|
|
|
dev->DCTL |= USB_OTG_DCTL_SGONAK;
|
2019-09-09 09:20:07 -04:00
|
|
|
while((USB_OTG_FS->GINTSTS & USB_OTG_GINTSTS_BOUTNAKEFF_Msk) == 0);
|
2019-09-03 01:05:26 -04:00
|
|
|
|
|
|
|
// Ditto here- disable the endpoint.
|
|
|
|
out_ep[epnum].DOEPCTL |= (USB_OTG_DOEPCTL_STALL | USB_OTG_DOEPCTL_EPDIS);
|
|
|
|
while((out_ep[epnum].DOEPINT & USB_OTG_DOEPINT_EPDISD_Msk) == 0);
|
|
|
|
out_ep[epnum].DOEPINT = USB_OTG_DOEPINT_EPDISD;
|
|
|
|
|
|
|
|
// Allow other OUT endpoints to keep receiving.
|
|
|
|
dev->DCTL |= USB_OTG_DCTL_CGONAK;
|
|
|
|
}
|
|
|
|
}
|
2019-08-24 12:40:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void dcd_edpt_clear_stall (uint8_t rhport, uint8_t ep_addr)
|
|
|
|
{
|
|
|
|
(void) rhport;
|
2019-09-03 01:05:26 -04:00
|
|
|
USB_OTG_OUTEndpointTypeDef * out_ep = OUT_EP_BASE;
|
|
|
|
USB_OTG_INEndpointTypeDef * in_ep = IN_EP_BASE;
|
|
|
|
|
|
|
|
uint8_t const epnum = tu_edpt_number(ep_addr);
|
|
|
|
uint8_t const dir = tu_edpt_dir(ep_addr);
|
|
|
|
|
|
|
|
if(dir == TUSB_DIR_IN) {
|
|
|
|
in_ep[epnum].DIEPCTL &= ~USB_OTG_DIEPCTL_STALL;
|
|
|
|
|
|
|
|
uint8_t eptype = (in_ep[epnum].DIEPCTL & USB_OTG_DIEPCTL_EPTYP_Msk) >> \
|
|
|
|
USB_OTG_DIEPCTL_EPTYP_Pos;
|
|
|
|
// Required by USB spec to reset DATA toggle bit to DATA0 on interrupt
|
|
|
|
// and bulk endpoints.
|
|
|
|
if(eptype == 2 || eptype == 3) {
|
|
|
|
in_ep[epnum].DIEPCTL |= USB_OTG_DIEPCTL_SD0PID_SEVNFRM;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
out_ep[epnum].DOEPCTL &= ~USB_OTG_DOEPCTL_STALL;
|
|
|
|
|
|
|
|
uint8_t eptype = (out_ep[epnum].DOEPCTL & USB_OTG_DOEPCTL_EPTYP_Msk) >> \
|
|
|
|
USB_OTG_DOEPCTL_EPTYP_Pos;
|
|
|
|
// Required by USB spec to reset DATA toggle bit to DATA0 on interrupt
|
|
|
|
// and bulk endpoints.
|
|
|
|
if(eptype == 2 || eptype == 3) {
|
|
|
|
out_ep[epnum].DOEPCTL |= USB_OTG_DOEPCTL_SD0PID_SEVNFRM;
|
|
|
|
}
|
|
|
|
}
|
2019-08-24 12:40:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
|
2020-05-08 18:10:48 +02:00
|
|
|
// Read a single data packet from receive FIFO
|
|
|
|
static void read_fifo_packet(uint8_t * dst, uint16_t len){
|
2019-09-04 01:03:42 -04:00
|
|
|
usb_fifo_t rx_fifo = FIFO_BASE(0);
|
2019-09-02 19:32:11 -04:00
|
|
|
|
2020-05-08 18:10:48 +02:00
|
|
|
// Reading full available 32 bit words from fifo
|
|
|
|
uint16_t full_words = len >> 2;
|
|
|
|
for(uint16_t i = 0; i < full_words; i++) {
|
|
|
|
uint32_t tmp = *rx_fifo;
|
|
|
|
dst[0] = tmp & 0x000000FF;
|
|
|
|
dst[1] = (tmp & 0x0000FF00) >> 8;
|
|
|
|
dst[2] = (tmp & 0x00FF0000) >> 16;
|
|
|
|
dst[3] = (tmp & 0xFF000000) >> 24;
|
|
|
|
dst += 4;
|
2019-09-02 19:32:11 -04:00
|
|
|
}
|
|
|
|
|
2020-05-08 18:10:48 +02:00
|
|
|
// Read the remaining 1-3 bytes from fifo
|
|
|
|
uint8_t bytes_rem = len & 0x03;
|
|
|
|
if(bytes_rem != 0) {
|
|
|
|
uint32_t tmp = *rx_fifo;
|
|
|
|
dst[0] = tmp & 0x000000FF;
|
|
|
|
if(bytes_rem > 1) {
|
|
|
|
dst[1] = (tmp & 0x0000FF00) >> 8;
|
2019-09-02 19:32:11 -04:00
|
|
|
}
|
2020-05-08 18:10:48 +02:00
|
|
|
if(bytes_rem > 2) {
|
|
|
|
dst[2] = (tmp & 0x00FF0000) >> 16;
|
2019-09-02 19:32:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-29 11:32:22 +02:00
|
|
|
// Write a single data packet to EPIN FIFO
|
2020-05-04 07:59:13 +02:00
|
|
|
static void write_fifo_packet(uint8_t fifo_num, uint8_t * src, uint16_t len){
|
|
|
|
usb_fifo_t tx_fifo = FIFO_BASE(fifo_num);
|
|
|
|
|
|
|
|
// Pushing full available 32 bit words to fifo
|
|
|
|
uint16_t full_words = len >> 2;
|
|
|
|
for(uint16_t i = 0; i < full_words; i++){
|
|
|
|
*tx_fifo = (src[3] << 24) | (src[2] << 16) | (src[1] << 8) | src[0];
|
|
|
|
src += 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Write the remaining 1-3 bytes into fifo
|
|
|
|
uint8_t bytes_rem = len & 0x03;
|
|
|
|
if(bytes_rem){
|
|
|
|
uint32_t tmp_word = 0;
|
|
|
|
tmp_word |= src[0];
|
|
|
|
if(bytes_rem > 1){
|
|
|
|
tmp_word |= src[1] << 8;
|
|
|
|
}
|
|
|
|
if(bytes_rem > 2){
|
|
|
|
tmp_word |= src[2] << 16;
|
|
|
|
}
|
|
|
|
*tx_fifo = tmp_word;
|
|
|
|
}
|
2019-09-02 19:32:11 -04:00
|
|
|
}
|
|
|
|
|
2020-05-08 18:10:48 +02:00
|
|
|
static void handle_rxflvl_ints(USB_OTG_OUTEndpointTypeDef * out_ep) {
|
2019-09-04 01:03:42 -04:00
|
|
|
usb_fifo_t rx_fifo = FIFO_BASE(0);
|
2019-09-02 13:34:33 -04:00
|
|
|
|
2020-05-08 18:10:48 +02:00
|
|
|
// Pop control word off FIFO
|
2019-09-09 09:20:07 -04:00
|
|
|
uint32_t ctl_word = USB_OTG_FS->GRXSTSP;
|
2019-09-02 13:34:33 -04:00
|
|
|
uint8_t pktsts = (ctl_word & USB_OTG_GRXSTSP_PKTSTS_Msk) >> USB_OTG_GRXSTSP_PKTSTS_Pos;
|
|
|
|
uint8_t epnum = (ctl_word & USB_OTG_GRXSTSP_EPNUM_Msk) >> USB_OTG_GRXSTSP_EPNUM_Pos;
|
|
|
|
uint16_t bcnt = (ctl_word & USB_OTG_GRXSTSP_BCNT_Msk) >> USB_OTG_GRXSTSP_BCNT_Pos;
|
|
|
|
|
|
|
|
switch(pktsts) {
|
|
|
|
case 0x01: // Global OUT NAK (Interrupt)
|
|
|
|
break;
|
|
|
|
case 0x02: // Out packet recvd
|
2019-09-02 19:32:11 -04:00
|
|
|
{
|
|
|
|
xfer_ctl_t * xfer = XFER_CTL_BASE(epnum, TUSB_DIR_OUT);
|
2020-05-08 18:10:48 +02:00
|
|
|
|
|
|
|
// Use BCNT to calculate correct bytes before data entry popped out from RxFIFO
|
|
|
|
uint16_t remaining_bytes = ((out_ep[epnum].DOEPTSIZ & USB_OTG_DOEPTSIZ_XFRSIZ_Msk) \
|
|
|
|
>> USB_OTG_DOEPTSIZ_XFRSIZ_Pos) + bcnt;
|
|
|
|
|
|
|
|
// Read packet off RxFIFO
|
|
|
|
read_fifo_packet((xfer->buffer + xfer->total_len - remaining_bytes), bcnt);
|
2019-09-02 19:32:11 -04:00
|
|
|
}
|
2019-09-02 13:34:33 -04:00
|
|
|
break;
|
|
|
|
case 0x03: // Out packet done (Interrupt)
|
|
|
|
break;
|
|
|
|
case 0x04: // Setup packet done (Interrupt)
|
|
|
|
_setup_offs = 2 - ((out_ep[epnum].DOEPTSIZ & USB_OTG_DOEPTSIZ_STUPCNT_Msk) >> USB_OTG_DOEPTSIZ_STUPCNT_Pos);
|
|
|
|
out_ep[epnum].DOEPTSIZ |= (3 << USB_OTG_DOEPTSIZ_STUPCNT_Pos);
|
|
|
|
break;
|
|
|
|
case 0x06: // Setup packet recvd
|
|
|
|
{
|
|
|
|
uint8_t setup_left = ((out_ep[epnum].DOEPTSIZ & USB_OTG_DOEPTSIZ_STUPCNT_Msk) >> USB_OTG_DOEPTSIZ_STUPCNT_Pos);
|
2019-09-03 00:25:21 -04:00
|
|
|
|
2019-09-02 13:34:33 -04:00
|
|
|
// We can receive up to three setup packets in succession, but
|
|
|
|
// only the last one is valid.
|
|
|
|
_setup_packet[4 - 2*setup_left] = (* rx_fifo);
|
|
|
|
_setup_packet[5 - 2*setup_left] = (* rx_fifo);
|
|
|
|
}
|
|
|
|
break;
|
2019-09-02 19:32:11 -04:00
|
|
|
default: // Invalid
|
2019-09-02 13:34:33 -04:00
|
|
|
TU_BREAKPOINT();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_epout_ints(USB_OTG_DeviceTypeDef * dev, USB_OTG_OUTEndpointTypeDef * out_ep) {
|
|
|
|
// DAINT for a given EP clears when DOEPINTx is cleared.
|
|
|
|
// OEPINT will be cleared when DAINT's out bits are cleared.
|
2019-09-09 09:20:07 -04:00
|
|
|
for(uint8_t n = 0; n < EP_MAX; n++) {
|
2019-09-02 19:32:11 -04:00
|
|
|
xfer_ctl_t * xfer = XFER_CTL_BASE(n, TUSB_DIR_OUT);
|
2019-09-03 01:37:44 -04:00
|
|
|
|
2019-09-02 13:34:33 -04:00
|
|
|
if(dev->DAINT & (1 << (USB_OTG_DAINT_OEPINT_Pos + n))) {
|
|
|
|
// SETUP packet Setup Phase done.
|
|
|
|
if(out_ep[n].DOEPINT & USB_OTG_DOEPINT_STUP) {
|
|
|
|
out_ep[n].DOEPINT = USB_OTG_DOEPINT_STUP;
|
|
|
|
dcd_event_setup_received(0, (uint8_t*) &_setup_packet[2*_setup_offs], true);
|
|
|
|
_setup_offs = 0;
|
|
|
|
}
|
2019-09-02 19:32:11 -04:00
|
|
|
|
2020-05-08 18:10:48 +02:00
|
|
|
// OUT XFER complete
|
2019-09-03 01:37:44 -04:00
|
|
|
if(out_ep[n].DOEPINT & USB_OTG_DOEPINT_XFRC) {
|
|
|
|
out_ep[n].DOEPINT = USB_OTG_DOEPINT_XFRC;
|
2020-05-08 18:10:48 +02:00
|
|
|
dcd_event_xfer_complete(0, n, xfer->total_len, XFER_RESULT_SUCCESS, true);
|
2019-09-02 19:32:11 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void handle_epin_ints(USB_OTG_DeviceTypeDef * dev, USB_OTG_INEndpointTypeDef * in_ep) {
|
|
|
|
// DAINT for a given EP clears when DIEPINTx is cleared.
|
|
|
|
// IEPINT will be cleared when DAINT's out bits are cleared.
|
2020-04-26 22:14:59 +07:00
|
|
|
for ( uint8_t n = 0; n < EP_MAX; n++ )
|
|
|
|
{
|
|
|
|
xfer_ctl_t *xfer = XFER_CTL_BASE(n, TUSB_DIR_IN);
|
2019-09-02 19:32:11 -04:00
|
|
|
|
2020-04-26 22:14:59 +07:00
|
|
|
if ( dev->DAINT & (1 << (USB_OTG_DAINT_IEPINT_Pos + n)) )
|
|
|
|
{
|
2020-05-04 07:59:13 +02:00
|
|
|
|
2019-09-02 19:32:11 -04:00
|
|
|
// IN XFER complete (entire xfer).
|
2020-04-26 22:14:59 +07:00
|
|
|
if ( in_ep[n].DIEPINT & USB_OTG_DIEPINT_XFRC )
|
|
|
|
{
|
2019-09-02 19:32:11 -04:00
|
|
|
in_ep[n].DIEPINT = USB_OTG_DIEPINT_XFRC;
|
|
|
|
dcd_event_xfer_complete(0, n | TUSB_DIR_IN_MASK, xfer->total_len, XFER_RESULT_SUCCESS, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
// XFER FIFO empty
|
2020-04-29 11:32:22 +02:00
|
|
|
if ( (in_ep[n].DIEPINT & USB_OTG_DIEPINT_TXFE) && (dev->DIEPEMPMSK & (1 << n)) )
|
2020-04-26 22:14:59 +07:00
|
|
|
{
|
2020-04-27 13:17:47 +07:00
|
|
|
// DIEPINT's TXFE bit is read-only, software cannot clear it.
|
|
|
|
// It will only be cleared by hardware when written bytes is more than
|
|
|
|
// - 64 bytes or
|
|
|
|
// - Half of TX FIFO size (configured by DIEPTXF)
|
2020-04-27 12:06:14 +07:00
|
|
|
|
2020-05-04 07:59:13 +02:00
|
|
|
uint16_t remaining_packets = (in_ep[n].DIEPTSIZ & USB_OTG_DIEPTSIZ_PKTCNT_Msk) >> USB_OTG_DIEPTSIZ_PKTCNT_Pos;
|
2020-04-29 11:32:22 +02:00
|
|
|
|
2020-05-04 07:59:13 +02:00
|
|
|
// Process every single packet (only whole packets can be written to fifo)
|
|
|
|
for(uint16_t i = 0; i < remaining_packets; i++){
|
|
|
|
uint16_t remaining_bytes = (in_ep[n].DIEPTSIZ & USB_OTG_DIEPTSIZ_XFRSIZ_Msk) >> USB_OTG_DIEPTSIZ_XFRSIZ_Pos;
|
|
|
|
// Packet can not be larger than ep max size
|
|
|
|
uint16_t packet_size = tu_min16(remaining_bytes, xfer->max_size);
|
2020-04-29 11:32:22 +02:00
|
|
|
|
2020-05-04 07:59:13 +02:00
|
|
|
// It's only possible to write full packets into FIFO. Therefore DTXFSTS register of current
|
|
|
|
// EP has to be checked if the buffer can take another WHOLE packet
|
|
|
|
if(packet_size > ((in_ep[n].DTXFSTS & USB_OTG_DTXFSTS_INEPTFSAV_Msk) << 2)){
|
|
|
|
break;
|
|
|
|
}
|
2020-04-29 11:32:22 +02:00
|
|
|
|
2020-05-04 07:59:13 +02:00
|
|
|
// Push packet to Tx-FIFO
|
2020-05-08 18:10:48 +02:00
|
|
|
write_fifo_packet(n, (xfer->buffer + xfer->total_len - remaining_bytes), packet_size);
|
2020-05-04 07:59:13 +02:00
|
|
|
}
|
2020-04-26 22:14:59 +07:00
|
|
|
|
|
|
|
// Turn off TXFE if all bytes are written.
|
2020-04-29 11:32:22 +02:00
|
|
|
if (((in_ep[n].DIEPTSIZ & USB_OTG_DIEPTSIZ_XFRSIZ_Msk) >> USB_OTG_DIEPTSIZ_XFRSIZ_Pos) == 0)
|
2020-04-26 22:14:59 +07:00
|
|
|
{
|
|
|
|
dev->DIEPEMPMSK &= ~(1 << n);
|
|
|
|
}
|
2019-09-02 19:32:11 -04:00
|
|
|
}
|
|
|
|
}
|
2019-09-02 13:34:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-17 12:27:53 +07:00
|
|
|
void dcd_int_handler(uint8_t rhport) {
|
2020-04-08 16:37:09 +07:00
|
|
|
|
|
|
|
(void) rhport;
|
|
|
|
|
2019-09-02 13:34:33 -04:00
|
|
|
USB_OTG_DeviceTypeDef * dev = DEVICE_BASE;
|
|
|
|
USB_OTG_OUTEndpointTypeDef * out_ep = OUT_EP_BASE;
|
2019-09-02 19:32:11 -04:00
|
|
|
USB_OTG_INEndpointTypeDef * in_ep = IN_EP_BASE;
|
2019-09-02 13:34:33 -04:00
|
|
|
|
2019-09-09 09:20:07 -04:00
|
|
|
uint32_t int_status = USB_OTG_FS->GINTSTS;
|
2019-09-02 13:34:33 -04:00
|
|
|
|
2019-09-09 09:20:07 -04:00
|
|
|
if(int_status & USB_OTG_GINTSTS_USBRST) {
|
|
|
|
// USBRST is start of reset.
|
|
|
|
USB_OTG_FS->GINTSTS = USB_OTG_GINTSTS_USBRST;
|
2019-09-02 13:34:33 -04:00
|
|
|
bus_reset();
|
|
|
|
}
|
|
|
|
|
2019-09-09 09:20:07 -04:00
|
|
|
if(int_status & USB_OTG_GINTSTS_ENUMDNE) {
|
|
|
|
// ENUMDNE detects speed of the link. For full-speed, we
|
|
|
|
// always expect the same value. This interrupt is considered
|
|
|
|
// the end of reset.
|
|
|
|
USB_OTG_FS->GINTSTS = USB_OTG_GINTSTS_ENUMDNE;
|
2019-09-02 13:34:33 -04:00
|
|
|
end_of_reset();
|
|
|
|
dcd_event_bus_signal(0, DCD_EVENT_BUS_RESET, true);
|
|
|
|
}
|
|
|
|
|
2020-04-18 22:59:56 +07:00
|
|
|
if(int_status & USB_OTG_GINTSTS_USBSUSP)
|
|
|
|
{
|
|
|
|
USB_OTG_FS->GINTSTS = USB_OTG_GINTSTS_USBSUSP;
|
|
|
|
dcd_event_bus_signal(0, DCD_EVENT_SUSPEND, true);
|
2020-04-18 23:48:36 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
if(int_status & USB_OTG_GINTSTS_WKUINT)
|
|
|
|
{
|
|
|
|
USB_OTG_FS->GINTSTS = USB_OTG_GINTSTS_WKUINT;
|
|
|
|
dcd_event_bus_signal(0, DCD_EVENT_RESUME, true);
|
2020-04-18 22:59:56 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
if(int_status & USB_OTG_GINTSTS_OTGINT)
|
|
|
|
{
|
|
|
|
// OTG INT bit is read-only
|
|
|
|
uint32_t const otg_int = USB_OTG_FS->GOTGINT;
|
|
|
|
|
|
|
|
if (otg_int & USB_OTG_GOTGINT_SEDET)
|
|
|
|
{
|
|
|
|
dcd_event_bus_signal(0, DCD_EVENT_UNPLUGGED, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
USB_OTG_FS->GOTGINT = otg_int;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if USE_SOF
|
2019-09-02 19:32:11 -04:00
|
|
|
if(int_status & USB_OTG_GINTSTS_SOF) {
|
2019-09-09 09:20:07 -04:00
|
|
|
USB_OTG_FS->GINTSTS = USB_OTG_GINTSTS_SOF;
|
2019-09-02 19:32:11 -04:00
|
|
|
dcd_event_bus_signal(0, DCD_EVENT_SOF, true);
|
|
|
|
}
|
2020-04-18 22:59:56 +07:00
|
|
|
#endif
|
2019-09-02 19:32:11 -04:00
|
|
|
|
2020-05-08 18:10:48 +02:00
|
|
|
// Use while loop to handle more than one fifo data entry
|
|
|
|
// within a single interrupt call
|
|
|
|
while(USB_OTG_FS->GINTSTS & USB_OTG_GINTSTS_RXFLVL) {
|
2020-04-18 22:59:56 +07:00
|
|
|
// RXFLVL bit is read-only
|
|
|
|
|
|
|
|
// Mask out RXFLVL while reading data from FIFO
|
|
|
|
USB_OTG_FS->GINTMSK &= ~USB_OTG_GINTMSK_RXFLVLM;
|
2020-05-08 18:10:48 +02:00
|
|
|
handle_rxflvl_ints(out_ep);
|
2020-04-18 22:59:56 +07:00
|
|
|
USB_OTG_FS->GINTMSK |= USB_OTG_GINTMSK_RXFLVLM;
|
2019-09-02 13:34:33 -04:00
|
|
|
}
|
2019-08-24 12:40:18 -04:00
|
|
|
|
2019-09-02 13:34:33 -04:00
|
|
|
// OUT endpoint interrupt handling.
|
|
|
|
if(int_status & USB_OTG_GINTSTS_OEPINT) {
|
2020-04-18 22:59:56 +07:00
|
|
|
// OEPINT is read-only
|
2019-09-02 13:34:33 -04:00
|
|
|
handle_epout_ints(dev, out_ep);
|
|
|
|
}
|
2019-09-02 19:32:11 -04:00
|
|
|
|
|
|
|
// IN endpoint interrupt handling.
|
|
|
|
if(int_status & USB_OTG_GINTSTS_IEPINT) {
|
2020-04-18 22:59:56 +07:00
|
|
|
// IEPINT bit read-only
|
2019-09-02 19:32:11 -04:00
|
|
|
handle_epin_ints(dev, in_ep);
|
|
|
|
}
|
2019-08-24 12:40:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|