mirror of
https://github.com/hathach/tinyusb.git
synced 2025-01-17 05:32:55 +08:00
Add fifo & DMA linked list mode support.
This commit is contained in:
parent
24de9d39af
commit
c291deccfa
@ -48,7 +48,7 @@
|
|||||||
// Default to Highspeed for MCU with internal HighSpeed PHY (can be port specific), otherwise FullSpeed
|
// Default to Highspeed for MCU with internal HighSpeed PHY (can be port specific), otherwise FullSpeed
|
||||||
#ifndef BOARD_DEVICE_RHPORT_SPEED
|
#ifndef BOARD_DEVICE_RHPORT_SPEED
|
||||||
#if (CFG_TUSB_MCU == OPT_MCU_LPC18XX || CFG_TUSB_MCU == OPT_MCU_LPC43XX || CFG_TUSB_MCU == OPT_MCU_MIMXRT10XX || \
|
#if (CFG_TUSB_MCU == OPT_MCU_LPC18XX || CFG_TUSB_MCU == OPT_MCU_LPC43XX || CFG_TUSB_MCU == OPT_MCU_MIMXRT10XX || \
|
||||||
CFG_TUSB_MCU == OPT_MCU_NUC505 || CFG_TUSB_MCU == OPT_MCU_CXD56)
|
CFG_TUSB_MCU == OPT_MCU_NUC505 || CFG_TUSB_MCU == OPT_MCU_CXD56 || CFG_TUSB_MCU == OPT_MCU_SAME70)
|
||||||
#define BOARD_DEVICE_RHPORT_SPEED OPT_MODE_HIGH_SPEED
|
#define BOARD_DEVICE_RHPORT_SPEED OPT_MODE_HIGH_SPEED
|
||||||
#else
|
#else
|
||||||
#define BOARD_DEVICE_RHPORT_SPEED OPT_MODE_FULL_SPEED
|
#define BOARD_DEVICE_RHPORT_SPEED OPT_MODE_FULL_SPEED
|
||||||
|
@ -94,8 +94,8 @@ enum
|
|||||||
#define EPNUM_MSC_OUT 0x05
|
#define EPNUM_MSC_OUT 0x05
|
||||||
#define EPNUM_MSC_IN 0x85
|
#define EPNUM_MSC_IN 0x85
|
||||||
|
|
||||||
#elif CFG_TUSB_MCU == OPT_MCU_SAMG
|
#elif CFG_TUSB_MCU == OPT_MCU_SAMG || CFG_TUSB_MCU == OPT_MCU_SAME70
|
||||||
// SAMG doesn't support a same endpoint number with different direction IN and OUT
|
// SAMG & SAME70 don't support a same endpoint number with different direction IN and OUT
|
||||||
// e.g EP1 OUT & EP1 IN cannot exist together
|
// e.g EP1 OUT & EP1 IN cannot exist together
|
||||||
#define EPNUM_CDC_NOTIF 0x81
|
#define EPNUM_CDC_NOTIF 0x81
|
||||||
#define EPNUM_CDC_OUT 0x02
|
#define EPNUM_CDC_OUT 0x02
|
||||||
|
@ -62,14 +62,33 @@
|
|||||||
// Errata: The DMA feature is not available for Pipe/Endpoint 7
|
// Errata: The DMA feature is not available for Pipe/Endpoint 7
|
||||||
#define EP_DMA_SUPPORT(epnum) (epnum >= 1 && epnum <= 6)
|
#define EP_DMA_SUPPORT(epnum) (epnum >= 1 && epnum <= 6)
|
||||||
|
|
||||||
|
// DMA Channel Transfer Descriptor
|
||||||
|
typedef struct {
|
||||||
|
volatile uint32_t next_desc;
|
||||||
|
volatile uint32_t buff_addr;
|
||||||
|
volatile uint32_t chnl_ctrl;
|
||||||
|
uint32_t padding;
|
||||||
|
} dma_desc_t;
|
||||||
|
|
||||||
|
// Transfer control context
|
||||||
typedef struct {
|
typedef struct {
|
||||||
uint8_t * buffer;
|
uint8_t * buffer;
|
||||||
uint16_t total_len;
|
uint16_t total_len;
|
||||||
uint16_t queued_len;
|
uint16_t queued_len;
|
||||||
uint16_t max_packet_size;
|
uint16_t max_packet_size;
|
||||||
uint8_t interval;
|
uint8_t interval;
|
||||||
|
tu_fifo_t * fifo;
|
||||||
} xfer_ctl_t;
|
} xfer_ctl_t;
|
||||||
|
|
||||||
|
static tusb_speed_t get_speed(void);
|
||||||
|
static void dcd_transmit_packet(xfer_ctl_t * xfer, uint8_t ep_ix);
|
||||||
|
|
||||||
|
// DMA descriptors shouldn't be placed in ITCM
|
||||||
|
#if defined(USB_DMA_DESC_SECTION)
|
||||||
|
TU_ATTR_SECTION(TU_XSTRING(USB_DMA_DESC_SECTION))
|
||||||
|
#endif
|
||||||
|
dma_desc_t dma_desc[6];
|
||||||
|
|
||||||
xfer_ctl_t xfer_status[EP_MAX+1];
|
xfer_ctl_t xfer_status[EP_MAX+1];
|
||||||
|
|
||||||
static const tusb_desc_endpoint_t ep0_desc =
|
static const tusb_desc_endpoint_t ep0_desc =
|
||||||
@ -78,8 +97,6 @@ static const tusb_desc_endpoint_t ep0_desc =
|
|||||||
.wMaxPacketSize = { .size = CFG_TUD_ENDPOINT0_SIZE },
|
.wMaxPacketSize = { .size = CFG_TUD_ENDPOINT0_SIZE },
|
||||||
};
|
};
|
||||||
|
|
||||||
static tusb_speed_t get_speed(void);
|
|
||||||
static void dcd_transmit_packet(xfer_ctl_t * xfer, uint8_t ep_ix);
|
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
// Device API
|
// Device API
|
||||||
//------------------------------------------------------------------
|
//------------------------------------------------------------------
|
||||||
@ -224,9 +241,11 @@ static void dcd_ep_handler(uint8_t ep_ix)
|
|||||||
if (count)
|
if (count)
|
||||||
{
|
{
|
||||||
uint8_t *ptr = EP_GET_FIFO_PTR(0,8);
|
uint8_t *ptr = EP_GET_FIFO_PTR(0,8);
|
||||||
for (int i = 0; i < count; i++)
|
if (xfer->buffer)
|
||||||
{
|
{
|
||||||
xfer->buffer[xfer->queued_len + i] = ptr[i];
|
memcpy(xfer->buffer + xfer->queued_len, ptr, count);
|
||||||
|
} else {
|
||||||
|
tu_fifo_write_n(xfer->fifo, ptr, count);
|
||||||
}
|
}
|
||||||
xfer->queued_len = (uint16_t)(xfer->queued_len + count);
|
xfer->queued_len = (uint16_t)(xfer->queued_len + count);
|
||||||
}
|
}
|
||||||
@ -250,21 +269,24 @@ static void dcd_ep_handler(uint8_t ep_ix)
|
|||||||
{
|
{
|
||||||
// TX not complete
|
// TX not complete
|
||||||
dcd_transmit_packet(xfer, 0);
|
dcd_transmit_packet(xfer, 0);
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
// TX complete
|
// TX complete
|
||||||
dcd_event_xfer_complete(0, 0x80 + 0, xfer->total_len, XFER_RESULT_SUCCESS, true);
|
dcd_event_xfer_complete(0, 0x80 + 0, xfer->total_len, XFER_RESULT_SUCCESS, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
if (int_status & USBHS_DEVEPTISR_RXOUTI)
|
if (int_status & USBHS_DEVEPTISR_RXOUTI)
|
||||||
{
|
{
|
||||||
xfer_ctl_t *xfer = &xfer_status[ep_ix];
|
xfer_ctl_t *xfer = &xfer_status[ep_ix];
|
||||||
if (count)
|
if (count)
|
||||||
{
|
{
|
||||||
uint8_t *ptr = EP_GET_FIFO_PTR(ep_ix,8);
|
uint8_t *ptr = EP_GET_FIFO_PTR(ep_ix,8);
|
||||||
|
if (xfer->buffer)
|
||||||
|
{
|
||||||
memcpy(xfer->buffer + xfer->queued_len, ptr, count);
|
memcpy(xfer->buffer + xfer->queued_len, ptr, count);
|
||||||
|
} else {
|
||||||
|
tu_fifo_write_n(xfer->fifo, ptr, count);
|
||||||
|
}
|
||||||
xfer->queued_len = (uint16_t)(xfer->queued_len + count);
|
xfer->queued_len = (uint16_t)(xfer->queued_len + count);
|
||||||
}
|
}
|
||||||
// Acknowledge the interrupt
|
// Acknowledge the interrupt
|
||||||
@ -289,8 +311,7 @@ static void dcd_ep_handler(uint8_t ep_ix)
|
|||||||
{
|
{
|
||||||
// TX not complete
|
// TX not complete
|
||||||
dcd_transmit_packet(xfer, ep_ix);
|
dcd_transmit_packet(xfer, ep_ix);
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
// TX complete
|
// TX complete
|
||||||
dcd_event_xfer_complete(0, 0x80 + ep_ix, xfer->total_len, XFER_RESULT_SUCCESS, true);
|
dcd_event_xfer_complete(0, 0x80 + ep_ix, xfer->total_len, XFER_RESULT_SUCCESS, true);
|
||||||
USBHS->USBHS_DEVEPTIDR[ep_ix] = USBHS_DEVEPTIDR_TXINEC;
|
USBHS->USBHS_DEVEPTIDR[ep_ix] = USBHS_DEVEPTIDR_TXINEC;
|
||||||
@ -314,8 +335,7 @@ static void dcd_dma_handler(uint8_t ep_ix)
|
|||||||
if(USBHS->USBHS_DEVEPTCFG[ep_ix] & USBHS_DEVEPTCFG_EPDIR)
|
if(USBHS->USBHS_DEVEPTCFG[ep_ix] & USBHS_DEVEPTCFG_EPDIR)
|
||||||
{
|
{
|
||||||
dcd_event_xfer_complete(0, 0x80 + ep_ix, count, XFER_RESULT_SUCCESS, true);
|
dcd_event_xfer_complete(0, 0x80 + ep_ix, count, XFER_RESULT_SUCCESS, true);
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
dcd_event_xfer_complete(0, ep_ix, count, XFER_RESULT_SUCCESS, true);
|
dcd_event_xfer_complete(0, ep_ix, count, XFER_RESULT_SUCCESS, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -337,13 +357,9 @@ void dcd_int_handler(uint8_t rhport)
|
|||||||
USBHS->USBHS_DEVEPT &=~(1 << (USBHS_DEVEPT_EPRST0_Pos + ep_ix));
|
USBHS->USBHS_DEVEPT &=~(1 << (USBHS_DEVEPT_EPRST0_Pos + ep_ix));
|
||||||
}
|
}
|
||||||
dcd_edpt_open (0, &ep0_desc);
|
dcd_edpt_open (0, &ep0_desc);
|
||||||
// Acknowledge the End of Reset interrupt
|
|
||||||
USBHS->USBHS_DEVICR = USBHS_DEVICR_EORSTC;
|
USBHS->USBHS_DEVICR = USBHS_DEVICR_EORSTC;
|
||||||
// Acknowledge the Wakeup interrupt
|
|
||||||
USBHS->USBHS_DEVICR = USBHS_DEVICR_WAKEUPC;
|
USBHS->USBHS_DEVICR = USBHS_DEVICR_WAKEUPC;
|
||||||
// Acknowledge the suspend interrupt
|
|
||||||
USBHS->USBHS_DEVICR = USBHS_DEVICR_SUSPC;
|
USBHS->USBHS_DEVICR = USBHS_DEVICR_SUSPC;
|
||||||
// Enable Suspend Interrupt
|
|
||||||
USBHS->USBHS_DEVIER = USBHS_DEVIER_SUSPES;
|
USBHS->USBHS_DEVIER = USBHS_DEVIER_SUSPES;
|
||||||
|
|
||||||
dcd_event_bus_reset(rhport, get_speed(), true);
|
dcd_event_bus_reset(rhport, get_speed(), true);
|
||||||
@ -351,15 +367,10 @@ void dcd_int_handler(uint8_t rhport)
|
|||||||
// End of Wakeup interrupt
|
// End of Wakeup interrupt
|
||||||
if (int_status & USBHS_DEVISR_WAKEUP)
|
if (int_status & USBHS_DEVISR_WAKEUP)
|
||||||
{
|
{
|
||||||
// Unfreeze USB clock
|
|
||||||
USBHS->USBHS_CTRL &= ~USBHS_CTRL_FRZCLK;
|
USBHS->USBHS_CTRL &= ~USBHS_CTRL_FRZCLK;
|
||||||
// Wait to unfreeze clock
|
|
||||||
while (USBHS_SR_CLKUSABLE != (USBHS->USBHS_SR & USBHS_SR_CLKUSABLE));
|
while (USBHS_SR_CLKUSABLE != (USBHS->USBHS_SR & USBHS_SR_CLKUSABLE));
|
||||||
// Acknowledge the Wakeup interrupt
|
|
||||||
USBHS->USBHS_DEVICR = USBHS_DEVICR_WAKEUPC;
|
USBHS->USBHS_DEVICR = USBHS_DEVICR_WAKEUPC;
|
||||||
// Disable Wakeup Interrupt
|
|
||||||
USBHS->USBHS_DEVIDR = USBHS_DEVIDR_WAKEUPEC;
|
USBHS->USBHS_DEVIDR = USBHS_DEVIDR_WAKEUPEC;
|
||||||
// Enable Suspend Interrupt
|
|
||||||
USBHS->USBHS_DEVIER = USBHS_DEVIER_SUSPES;
|
USBHS->USBHS_DEVIER = USBHS_DEVIER_SUSPES;
|
||||||
|
|
||||||
dcd_event_bus_signal(0, DCD_EVENT_RESUME, true);
|
dcd_event_bus_signal(0, DCD_EVENT_RESUME, true);
|
||||||
@ -369,15 +380,10 @@ void dcd_int_handler(uint8_t rhport)
|
|||||||
{
|
{
|
||||||
// Unfreeze USB clock
|
// Unfreeze USB clock
|
||||||
USBHS->USBHS_CTRL &= ~USBHS_CTRL_FRZCLK;
|
USBHS->USBHS_CTRL &= ~USBHS_CTRL_FRZCLK;
|
||||||
// Wait to unfreeze clock
|
|
||||||
while (USBHS_SR_CLKUSABLE != (USBHS->USBHS_SR & USBHS_SR_CLKUSABLE));
|
while (USBHS_SR_CLKUSABLE != (USBHS->USBHS_SR & USBHS_SR_CLKUSABLE));
|
||||||
// Acknowledge the suspend interrupt
|
|
||||||
USBHS->USBHS_DEVICR = USBHS_DEVICR_SUSPC;
|
USBHS->USBHS_DEVICR = USBHS_DEVICR_SUSPC;
|
||||||
// Disable Suspend Interrupt
|
|
||||||
USBHS->USBHS_DEVIDR = USBHS_DEVIDR_SUSPEC;
|
USBHS->USBHS_DEVIDR = USBHS_DEVIDR_SUSPEC;
|
||||||
// Enable Wakeup Interrupt
|
|
||||||
USBHS->USBHS_DEVIER = USBHS_DEVIER_WAKEUPES;
|
USBHS->USBHS_DEVIER = USBHS_DEVIER_WAKEUPES;
|
||||||
// Freeze USB clock
|
|
||||||
USBHS->USBHS_CTRL |= USBHS_CTRL_FRZCLK;
|
USBHS->USBHS_CTRL |= USBHS_CTRL_FRZCLK;
|
||||||
|
|
||||||
dcd_event_bus_signal(0, DCD_EVENT_SUSPEND, true);
|
dcd_event_bus_signal(0, DCD_EVENT_SUSPEND, true);
|
||||||
@ -476,13 +482,11 @@ bool dcd_edpt_open (uint8_t rhport, tusb_desc_endpoint_t const * ep_desc)
|
|||||||
// Enable Endpoint 0 Interrupts
|
// Enable Endpoint 0 Interrupts
|
||||||
USBHS->USBHS_DEVIER = USBHS_DEVIER_PEP_0;
|
USBHS->USBHS_DEVIER = USBHS_DEVIER_PEP_0;
|
||||||
return true;
|
return true;
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
// Endpoint configuration is not successful
|
// Endpoint configuration is not successful
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
// Enable the endpoint
|
// Enable the endpoint
|
||||||
USBHS->USBHS_DEVEPT |= ((0x01 << epnum) << USBHS_DEVEPT_EPEN0_Pos);
|
USBHS->USBHS_DEVEPT |= ((0x01 << epnum) << USBHS_DEVEPT_EPEN0_Pos);
|
||||||
// Set up the maxpacket size, fifo start address fifosize
|
// Set up the maxpacket size, fifo start address fifosize
|
||||||
@ -513,8 +517,7 @@ bool dcd_edpt_open (uint8_t rhport, tusb_desc_endpoint_t const * ep_desc)
|
|||||||
{
|
{
|
||||||
USBHS->USBHS_DEVIER = ((0x01 << epnum) << USBHS_DEVIER_PEP_0_Pos);
|
USBHS->USBHS_DEVIER = ((0x01 << epnum) << USBHS_DEVIER_PEP_0_Pos);
|
||||||
return true;
|
return true;
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
// Endpoint configuration is not successful
|
// Endpoint configuration is not successful
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -524,24 +527,25 @@ bool dcd_edpt_open (uint8_t rhport, tusb_desc_endpoint_t const * ep_desc)
|
|||||||
static void dcd_transmit_packet(xfer_ctl_t * xfer, uint8_t ep_ix)
|
static void dcd_transmit_packet(xfer_ctl_t * xfer, uint8_t ep_ix)
|
||||||
{
|
{
|
||||||
uint16_t len = (uint16_t)(xfer->total_len - xfer->queued_len);
|
uint16_t len = (uint16_t)(xfer->total_len - xfer->queued_len);
|
||||||
|
|
||||||
if (len > xfer->max_packet_size)
|
if (len > xfer->max_packet_size)
|
||||||
{
|
{
|
||||||
len = xfer->max_packet_size;
|
len = xfer->max_packet_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t *ptr = EP_GET_FIFO_PTR(ep_ix,8);
|
uint8_t *ptr = EP_GET_FIFO_PTR(ep_ix,8);
|
||||||
|
if(xfer->buffer)
|
||||||
|
{
|
||||||
memcpy(ptr, xfer->buffer + xfer->queued_len, len);
|
memcpy(ptr, xfer->buffer + xfer->queued_len, len);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
tu_fifo_read_n(xfer->fifo, ptr, len);
|
||||||
|
}
|
||||||
xfer->queued_len = (uint16_t)(xfer->queued_len + len);
|
xfer->queued_len = (uint16_t)(xfer->queued_len + len);
|
||||||
|
|
||||||
if (ep_ix == 0U)
|
if (ep_ix == 0U)
|
||||||
{
|
{
|
||||||
// Control endpoint: clear the interrupt flag to send the data
|
// Control endpoint: clear the interrupt flag to send the data
|
||||||
USBHS->USBHS_DEVEPTICR[0] = USBHS_DEVEPTICR_TXINIC;
|
USBHS->USBHS_DEVEPTICR[0] = USBHS_DEVEPTICR_TXINIC;
|
||||||
|
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
// Other endpoint types: clear the FIFO control flag to send the data
|
// Other endpoint types: clear the FIFO control flag to send the data
|
||||||
USBHS->USBHS_DEVEPTIDR[ep_ix] = USBHS_DEVEPTIDR_FIFOCONC;
|
USBHS->USBHS_DEVEPTIDR[ep_ix] = USBHS_DEVEPTIDR_FIFOCONC;
|
||||||
}
|
}
|
||||||
@ -562,19 +566,17 @@ bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t
|
|||||||
xfer->buffer = buffer;
|
xfer->buffer = buffer;
|
||||||
xfer->total_len = total_bytes;
|
xfer->total_len = total_bytes;
|
||||||
xfer->queued_len = 0;
|
xfer->queued_len = 0;
|
||||||
|
xfer->fifo = NULL;
|
||||||
|
|
||||||
if(EP_DMA_SUPPORT(epnum) && total_bytes != 0)
|
if(EP_DMA_SUPPORT(epnum) && total_bytes != 0)
|
||||||
{
|
{
|
||||||
uint32_t udd_dma_ctrl = 0;
|
uint32_t udd_dma_ctrl = USBHS_DEVDMACONTROL_BUFF_LENGTH(total_bytes);
|
||||||
udd_dma_ctrl = USBHS_DEVDMACONTROL_BUFF_LENGTH(total_bytes);
|
|
||||||
if (dir == TUSB_DIR_OUT)
|
if (dir == TUSB_DIR_OUT)
|
||||||
{
|
{
|
||||||
udd_dma_ctrl |= USBHS_DEVDMACONTROL_END_TR_IT | USBHS_DEVDMACONTROL_END_TR_EN;
|
udd_dma_ctrl |= USBHS_DEVDMACONTROL_END_TR_IT | USBHS_DEVDMACONTROL_END_TR_EN;
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
udd_dma_ctrl |= USBHS_DEVDMACONTROL_END_B_EN;
|
udd_dma_ctrl |= USBHS_DEVDMACONTROL_END_B_EN;
|
||||||
}
|
}
|
||||||
// Start USB DMA to fill or read fifo of the selected endpoint
|
|
||||||
USBHS->UsbhsDevdma[epnum - 1].USBHS_DEVDMAADDRESS = (uint32_t)buffer;
|
USBHS->UsbhsDevdma[epnum - 1].USBHS_DEVDMAADDRESS = (uint32_t)buffer;
|
||||||
udd_dma_ctrl |= USBHS_DEVDMACONTROL_END_BUFFIT | USBHS_DEVDMACONTROL_CHANN_ENB;
|
udd_dma_ctrl |= USBHS_DEVDMACONTROL_END_BUFFIT | USBHS_DEVDMACONTROL_CHANN_ENB;
|
||||||
// Disable IRQs to have a short sequence
|
// Disable IRQs to have a short sequence
|
||||||
@ -594,13 +596,92 @@ bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t
|
|||||||
// and the DMA transfer must be not started.
|
// and the DMA transfer must be not started.
|
||||||
// It is the end of transfer
|
// It is the end of transfer
|
||||||
return false;
|
return false;
|
||||||
} else
|
} else {
|
||||||
{
|
|
||||||
if (dir == TUSB_DIR_OUT)
|
if (dir == TUSB_DIR_OUT)
|
||||||
{
|
{
|
||||||
USBHS->USBHS_DEVEPTIER[epnum] = USBHS_DEVEPTIER_RXOUTES;
|
USBHS->USBHS_DEVEPTIER[epnum] = USBHS_DEVEPTIER_RXOUTES;
|
||||||
} else
|
} else {
|
||||||
|
dcd_transmit_packet(xfer,epnum);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// The number of bytes has to be given explicitly to allow more flexible control of how many
|
||||||
|
// bytes should be written and second to keep the return value free to give back a boolean
|
||||||
|
// success message. If total_bytes is too big, the FIFO will copy only what is available
|
||||||
|
// into the USB buffer!
|
||||||
|
bool dcd_edpt_xfer_fifo (uint8_t rhport, uint8_t ep_addr, tu_fifo_t * ff, uint16_t total_bytes)
|
||||||
|
{
|
||||||
|
(void) rhport;
|
||||||
|
uint8_t const epnum = tu_edpt_number(ep_addr);
|
||||||
|
uint8_t const dir = tu_edpt_dir(ep_addr);
|
||||||
|
|
||||||
|
xfer_ctl_t * xfer = &xfer_status[epnum];
|
||||||
|
if(epnum == 0x80)
|
||||||
|
xfer = &xfer_status[EP_MAX];
|
||||||
|
|
||||||
|
xfer->buffer = NULL;
|
||||||
|
xfer->total_len = total_bytes;
|
||||||
|
xfer->queued_len = 0;
|
||||||
|
xfer->fifo = ff;
|
||||||
|
|
||||||
|
if (EP_DMA_SUPPORT(epnum) && total_bytes != 0)
|
||||||
{
|
{
|
||||||
|
tu_fifo_buffer_info_t info;
|
||||||
|
uint32_t udd_dma_ctrl_lin = USBHS_DEVDMACONTROL_CHANN_ENB;
|
||||||
|
uint32_t udd_dma_ctrl_wrap = USBHS_DEVDMACONTROL_CHANN_ENB | USBHS_DEVDMACONTROL_END_BUFFIT;
|
||||||
|
if (dir == TUSB_DIR_OUT)
|
||||||
|
{
|
||||||
|
tu_fifo_get_write_info(ff, &info);
|
||||||
|
udd_dma_ctrl_lin |= USBHS_DEVDMACONTROL_END_TR_IT | USBHS_DEVDMACONTROL_END_TR_EN;
|
||||||
|
udd_dma_ctrl_wrap |= USBHS_DEVDMACONTROL_END_TR_IT | USBHS_DEVDMACONTROL_END_TR_EN;
|
||||||
|
} else {
|
||||||
|
tu_fifo_get_read_info(ff, &info);
|
||||||
|
if(info.len_wrap == 0)
|
||||||
|
{
|
||||||
|
udd_dma_ctrl_lin |= USBHS_DEVDMACONTROL_END_B_EN;
|
||||||
|
}
|
||||||
|
udd_dma_ctrl_wrap |= USBHS_DEVDMACONTROL_END_B_EN;
|
||||||
|
}
|
||||||
|
|
||||||
|
USBHS->UsbhsDevdma[epnum - 1].USBHS_DEVDMAADDRESS = (uint32_t)info.ptr_lin;
|
||||||
|
if (info.len_wrap)
|
||||||
|
{
|
||||||
|
dma_desc[epnum - 1].next_desc = 0;
|
||||||
|
dma_desc[epnum - 1].buff_addr = (uint32_t)info.ptr_wrap;
|
||||||
|
dma_desc[epnum - 1].chnl_ctrl =
|
||||||
|
udd_dma_ctrl_wrap | USBHS_DEVDMACONTROL_BUFF_LENGTH(info.len_wrap);
|
||||||
|
udd_dma_ctrl_lin |= USBHS_DEVDMASTATUS_DESC_LDST;
|
||||||
|
__DSB();
|
||||||
|
__ISB();
|
||||||
|
USBHS->UsbhsDevdma[epnum - 1].USBHS_DEVDMANXTDSC = (uint32_t)&dma_desc[epnum - 1];
|
||||||
|
} else {
|
||||||
|
udd_dma_ctrl_lin |= USBHS_DEVDMACONTROL_END_BUFFIT;
|
||||||
|
}
|
||||||
|
udd_dma_ctrl_lin |= USBHS_DEVDMACONTROL_BUFF_LENGTH(info.len_lin);
|
||||||
|
// Disable IRQs to have a short sequence
|
||||||
|
// between read of EOT_STA and DMA enable
|
||||||
|
uint32_t irq_state = __get_PRIMASK();
|
||||||
|
__disable_irq();
|
||||||
|
if (!(USBHS->UsbhsDevdma[epnum - 1].USBHS_DEVDMASTATUS & USBHS_DEVDMASTATUS_END_TR_ST))
|
||||||
|
{
|
||||||
|
USBHS->UsbhsDevdma[epnum - 1].USBHS_DEVDMACONTROL = udd_dma_ctrl_lin;
|
||||||
|
USBHS->USBHS_DEVIER = USBHS_DEVIER_DMA_1 << (epnum - 1);
|
||||||
|
__set_PRIMASK(irq_state);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
__set_PRIMASK(irq_state);
|
||||||
|
|
||||||
|
// Here a ZLP has been recieved
|
||||||
|
// and the DMA transfer must be not started.
|
||||||
|
// It is the end of transfer
|
||||||
|
return false;
|
||||||
|
} else {
|
||||||
|
if (dir == TUSB_DIR_OUT)
|
||||||
|
{
|
||||||
|
USBHS->USBHS_DEVEPTIER[epnum] = USBHS_DEVEPTIER_RXOUTES;
|
||||||
|
} else {
|
||||||
dcd_transmit_packet(xfer,epnum);
|
dcd_transmit_packet(xfer,epnum);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user