📄 usbd_udp.c
字号:
/* ----------------------------------------------------------------------------
* ATMEL Microcontroller Software Support
* ----------------------------------------------------------------------------
* Copyright (c) 2008, Atmel Corporation
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the disclaimer below.
*
* Atmel's name may not be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* DISCLAIMER: THIS SOFTWARE IS PROVIDED BY ATMEL "AS IS" AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE
* DISCLAIMED. IN NO EVENT SHALL ATMEL BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
* OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* ----------------------------------------------------------------------------
*/
/**
\unit
!!!Purpose
Implementation of USB device functions on a UDP controller.
See "USBD API Methods".
*/
//------------------------------------------------------------------------------
// Headers
//------------------------------------------------------------------------------
#include "USBD.h"
#include "USBDCallbacks.h"
#include <board.h>
#include <pio/pio.h>
#include <utility/trace.h>
#include <utility/led.h>
#include <usb/common/core/USBEndpointDescriptor.h>
#include <usb/common/core/USBGenericRequest.h>
#if defined(BOARD_USB_UDP)
//------------------------------------------------------------------------------
// Definitions
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
/// \page "UDP register field values"
///
/// This page lists the initialize values of UDP registers.
///
/// !Values
/// - UDP_RXDATA
/// Bit mask for both banks of the UDP_CSR register.
#define UDP_RXDATA (AT91C_UDP_RX_DATA_BK0 | AT91C_UDP_RX_DATA_BK1)
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
/// \page "Endpoint states"
///
/// This page lists the endpoint states.
///
/// !States
// - UDP_ENDPOINT_DISABLED
// - UDP_ENDPOINT_HALTED
// - UDP_ENDPOINT_IDLE
// - UDP_ENDPOINT_SENDING
// - UDP_ENDPOINT_RECEIVING
/// Endpoint states: Endpoint is disabled
#define UDP_ENDPOINT_DISABLED 0
/// Endpoint states: Endpoint is halted (i.e. STALLs every request)
#define UDP_ENDPOINT_HALTED 1
/// Endpoint states: Endpoint is idle (i.e. ready for transmission)
#define UDP_ENDPOINT_IDLE 2
/// Endpoint states: Endpoint is sending data
#define UDP_ENDPOINT_SENDING 3
/// Endpoint states: Endpoint is receiving data
#define UDP_ENDPOINT_RECEIVING 4
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
/// \page "UDP_CSR register access"
///
/// This page lists the macroes to access UDP CSR register.
///
/// !Macros
/// - CLEAR_CSR
/// - SET_CSR
/// Bitmap for all status bits in CSR.
#define REG_NO_EFFECT_1_ALL AT91C_UDP_RX_DATA_BK0 | AT91C_UDP_RX_DATA_BK1 \
|AT91C_UDP_STALLSENT | AT91C_UDP_RXSETUP \
|AT91C_UDP_TXCOMP
/// Clears the specified bit(s) in the UDP_CSR register.
/// \param endpoint The endpoint number of the CSR to process.
/// \param flags The bitmap to set to 1.
#define SET_CSR(endpoint, flags) \
{ \
volatile unsigned int reg; \
reg = AT91C_BASE_UDP->UDP_CSR[endpoint] ; \
reg |= REG_NO_EFFECT_1_ALL; \
reg |= (flags); \
AT91C_BASE_UDP->UDP_CSR[endpoint] = reg; \
while ( (AT91C_BASE_UDP->UDP_CSR[endpoint] & (flags)) != (flags)); \
}
/// Sets the specified bit(s) in the UDP_CSR register.
/// \param endpoint The endpoint number of the CSR to process.
/// \param flags The bitmap to clear to 0.
#define CLEAR_CSR(endpoint, flags) \
{ \
volatile unsigned int reg; \
reg = AT91C_BASE_UDP->UDP_CSR[endpoint]; \
reg |= REG_NO_EFFECT_1_ALL; \
reg &= ~(flags); \
AT91C_BASE_UDP->UDP_CSR[endpoint] = reg; \
while ( (AT91C_BASE_UDP->UDP_CSR[endpoint] & (flags)) == (flags)); \
}
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
// Types
//------------------------------------------------------------------------------
/// Describes an ongoing transfer on a UDP endpoint.
typedef struct {
/// Pointer to a data buffer used for emission/reception.
char *pData;
/// Number of bytes which have been written into the UDP internal FIFO
/// buffers.
volatile int buffered;
/// Number of bytes which have been sent/received.
volatile int transferred;
/// Number of bytes which have not been buffered/transferred yet.
volatile int remaining;
/// Optional callback to invoke when the transfer completes.
volatile TransferCallback fCallback;
/// Optional argument to the callback function.
void *pArgument;
} Transfer;
//------------------------------------------------------------------------------
/// Describes the state of an endpoint of the UDP controller.
//------------------------------------------------------------------------------
typedef struct {
/// Current endpoint state.
volatile unsigned char state;
/// Current reception bank (0 or 1).
volatile unsigned char bank;
/// Maximum packet size for the endpoint.
volatile unsigned short size;
/// Describes an ongoing transfer (if current state is either
/// <UDP_ENDPOINT_SENDING> or <UDP_ENDPOINT_RECEIVING>)
Transfer transfer;
} Endpoint;
//------------------------------------------------------------------------------
// Internal variables
//------------------------------------------------------------------------------
/// Holds the internal state for each endpoint of the UDP.
static Endpoint endpoints[BOARD_USB_NUMENDPOINTS];
/// Device current state.
static unsigned char deviceState;
/// Indicates the previous device state
static unsigned char previousDeviceState;
//------------------------------------------------------------------------------
// Internal Functions
//------------------------------------------------------------------------------
//------------------------------------------------------------------------------
/// Enables the clock of the UDP peripheral.
//------------------------------------------------------------------------------
static inline void UDP_EnablePeripheralClock(void)
{
AT91C_BASE_PMC->PMC_PCER = 1 << AT91C_ID_UDP;
}
//------------------------------------------------------------------------------
/// Disables the UDP peripheral clock.
//------------------------------------------------------------------------------
static inline void UDP_DisablePeripheralClock(void)
{
AT91C_BASE_PMC->PMC_PCDR = 1 << AT91C_ID_UDP;
}
//------------------------------------------------------------------------------
/// Enables the 48MHz USB clock.
//------------------------------------------------------------------------------
static inline void UDP_EnableUsbClock(void)
{
AT91C_BASE_PMC->PMC_SCER = AT91C_PMC_UDP;
}
//------------------------------------------------------------------------------
/// Disables the 48MHz USB clock.
//------------------------------------------------------------------------------
static inline void UDP_DisableUsbClock(void)
{
AT91C_BASE_PMC->PMC_SCDR = AT91C_PMC_UDP;
}
//------------------------------------------------------------------------------
/// Enables the UDP transceiver.
//------------------------------------------------------------------------------
static inline void UDP_EnableTransceiver(void)
{
AT91C_BASE_UDP->UDP_TXVC &= ~AT91C_UDP_TXVDIS;
}
//------------------------------------------------------------------------------
/// Disables the UDP transceiver.
//------------------------------------------------------------------------------
static inline void UDP_DisableTransceiver(void)
{
AT91C_BASE_UDP->UDP_TXVC |= AT91C_UDP_TXVDIS;
}
//------------------------------------------------------------------------------
/// Handles a completed transfer on the given endpoint, invoking the
/// configured callback if any.
/// \param bEndpoint Number of the endpoint for which the transfer has completed.
/// \param bStatus Status code returned by the transfer operation
//------------------------------------------------------------------------------
static void UDP_EndOfTransfer(unsigned char bEndpoint, char bStatus)
{
Endpoint *pEndpoint = &(endpoints[bEndpoint]);
Transfer *pTransfer = &(pEndpoint->transfer);
// Check that endpoint was sending or receiving data
if( (pEndpoint->state == UDP_ENDPOINT_RECEIVING)
|| (pEndpoint->state == UDP_ENDPOINT_SENDING)) {
TRACE_DEBUG_WP("Eo");
// Endpoint returns in Idle state
pEndpoint->state = UDP_ENDPOINT_IDLE;
// Invoke callback is present
if (pTransfer->fCallback != 0) {
((TransferCallback) pTransfer->fCallback)
(pTransfer->pArgument,
bStatus,
pTransfer->transferred,
pTransfer->remaining + pTransfer->buffered);
}
else {
TRACE_DEBUG_WP("No callBack\n\r");
}
}
}
//------------------------------------------------------------------------------
/// Clears the correct reception flag (bank 0 or bank 1) of an endpoint
/// \param bEndpoint Index of endpoint
//------------------------------------------------------------------------------
static void UDP_ClearRxFlag(unsigned char bEndpoint)
{
Endpoint *pEndpoint = &(endpoints[bEndpoint]);
// Clear flag and change banks
if (pEndpoint->bank == 0) {
CLEAR_CSR(bEndpoint, AT91C_UDP_RX_DATA_BK0);
// Swap bank if in dual-fifo mode
if (BOARD_USB_ENDPOINTS_BANKS(bEndpoint) > 1) {
pEndpoint->bank = 1;
}
}
else {
CLEAR_CSR(bEndpoint, AT91C_UDP_RX_DATA_BK1);
pEndpoint->bank = 0;
}
}
//------------------------------------------------------------------------------
/// Transfers a data payload from the current tranfer buffer to the endpoint
/// FIFO
/// \param bEndpoint Number of the endpoint which is sending data.
//------------------------------------------------------------------------------
static void UDP_WritePayload(unsigned char bEndpoint)
{
Endpoint *pEndpoint = &(endpoints[bEndpoint]);
Transfer *pTransfer = &(pEndpoint->transfer);
signed int size;
// Get the number of bytes to send
size = pEndpoint->size;
if (size > pTransfer->remaining) {
size = pTransfer->remaining;
}
// Update transfer descriptor information
pTransfer->buffered += size;
pTransfer->remaining -= size;
// Write packet in the FIFO buffer
while (size > 0) {
AT91C_BASE_UDP->UDP_FDR[bEndpoint] = *(pTransfer->pData);
pTransfer->pData++;
size--;
}
}
//------------------------------------------------------------------------------
/// Transfers a data payload from an endpoint FIFO to the current transfer buffer
/// \param bEndpoint Endpoint number.
/// \param wPacketSize Size of received data packet
//------------------------------------------------------------------------------
static void UDP_ReadPayload(unsigned char bEndpoint, int wPacketSize)
{
Endpoint *pEndpoint = &(endpoints[bEndpoint]);
Transfer *pTransfer = &(pEndpoint->transfer);
// Check that the requested size is not bigger than the remaining transfer
if (wPacketSize > pTransfer->remaining) {
pTransfer->buffered += wPacketSize - pTransfer->remaining;
wPacketSize = pTransfer->remaining;
}
// Update transfer descriptor information
pTransfer->remaining -= wPacketSize;
pTransfer->transferred += wPacketSize;
// Retrieve packet
while (wPacketSize > 0) {
*(pTransfer->pData) = (char) AT91C_BASE_UDP->UDP_FDR[bEndpoint];
pTransfer->pData++;
wPacketSize--;
}
}
//------------------------------------------------------------------------------
/// Received SETUP packet from endpoint 0 FIFO
/// \param pRequest Generic USB SETUP request sent over Control endpoints
//------------------------------------------------------------------------------
static void UDP_ReadRequest(USBGenericRequest *pRequest)
{
unsigned char *pData = (unsigned char *)pRequest;
unsigned int i;
// Copy packet
for (i = 0; i < 8; i++) {
*pData = (unsigned char) AT91C_BASE_UDP->UDP_FDR[0];
pData++;
}
}
//------------------------------------------------------------------------------
/// Reset all endpoint transfer descriptors
//------------------------------------------------------------------------------
static void UDP_ResetEndpoints( void )
{
Endpoint *pEndpoint;
Transfer *pTransfer;
unsigned char bEndpoint;
// Reset the transfer descriptor of every endpoint
for (bEndpoint = 0; bEndpoint < BOARD_USB_NUMENDPOINTS; bEndpoint++) {
pEndpoint = &(endpoints[bEndpoint]);
pTransfer = &(pEndpoint->transfer);
// Reset endpoint transfer descriptor
pTransfer->pData = 0;
pTransfer->transferred = -1;
pTransfer->buffered = -1;
pTransfer->remaining = -1;
pTransfer->fCallback = 0;
pTransfer->pArgument = 0;
// Reset endpoint state
pEndpoint->bank = 0;
pEndpoint->state = UDP_ENDPOINT_DISABLED;
}
}
//------------------------------------------------------------------------------
/// Disable all endpoints (except control endpoint 0), aborting current
/// transfers if necessary
//------------------------------------------------------------------------------
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -