2013-08-04 13:38:53 +00:00
|
|
|
/*
|
2015-01-11 13:56:55 +00:00
|
|
|
ChibiOS - Copyright (C) 2006..2015 Giovanni Di Sirio
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file STM32/USBv1/usb_lld.c
|
|
|
|
* @brief STM32 USB subsystem low level driver source.
|
|
|
|
*
|
|
|
|
* @addtogroup USB
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "hal.h"
|
|
|
|
|
|
|
|
#if HAL_USE_USB || defined(__DOXYGEN__)
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local definitions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#define BTABLE_ADDR 0x0000
|
|
|
|
|
2015-12-30 11:47:19 +00:00
|
|
|
#define EPR_EP_TYPE_IS_ISO(bits) ((bits & EPR_EP_TYPE_MASK) == EPR_EP_TYPE_ISO)
|
2015-11-26 14:30:16 +00:00
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/** @brief USB1 driver identifier.*/
|
|
|
|
#if STM32_USB_USE_USB1 || defined(__DOXYGEN__)
|
|
|
|
USBDriver USBD1;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local variables and types. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief EP0 state.
|
|
|
|
* @note It is an union because IN and OUT endpoints are never used at the
|
|
|
|
* same time for EP0.
|
|
|
|
*/
|
|
|
|
static union {
|
|
|
|
/**
|
|
|
|
* @brief IN EP0 state.
|
|
|
|
*/
|
|
|
|
USBInEndpointState in;
|
|
|
|
/**
|
|
|
|
* @brief OUT EP0 state.
|
|
|
|
*/
|
|
|
|
USBOutEndpointState out;
|
|
|
|
} ep0_state;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Buffer for the EP0 setup packets.
|
|
|
|
*/
|
|
|
|
static uint8_t ep0setup_buffer[8];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief EP0 initialization structure.
|
|
|
|
*/
|
|
|
|
static const USBEndpointConfig ep0config = {
|
|
|
|
USB_EP_MODE_TYPE_CTRL,
|
|
|
|
_usb_ep0setup,
|
|
|
|
_usb_ep0in,
|
|
|
|
_usb_ep0out,
|
|
|
|
0x40,
|
|
|
|
0x40,
|
|
|
|
&ep0_state.in,
|
|
|
|
&ep0_state.out,
|
|
|
|
1,
|
|
|
|
ep0setup_buffer
|
|
|
|
};
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Resets the packet memory allocator.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
*/
|
|
|
|
static void usb_pm_reset(USBDriver *usbp) {
|
|
|
|
|
|
|
|
/* The first 64 bytes are reserved for the descriptors table. The effective
|
|
|
|
available RAM for endpoint buffers is just 448 bytes.*/
|
|
|
|
usbp->pmnext = 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Resets the packet memory allocator.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] size size of the packet buffer to allocate
|
|
|
|
*/
|
|
|
|
static uint32_t usb_pm_alloc(USBDriver *usbp, size_t size) {
|
|
|
|
uint32_t next;
|
|
|
|
|
|
|
|
next = usbp->pmnext;
|
2015-10-30 09:16:59 +00:00
|
|
|
usbp->pmnext += (size + 1) & ~1;
|
2014-12-21 09:32:52 +00:00
|
|
|
osalDbgAssert(usbp->pmnext <= STM32_USB_PMA_SIZE, "PMA overflow");
|
2013-08-04 13:38:53 +00:00
|
|
|
return next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Reads from a dedicated packet buffer.
|
|
|
|
*
|
|
|
|
* @param[in] udp pointer to a @p stm32_usb_descriptor_t
|
|
|
|
* @param[out] buf buffer where to copy the packet data
|
2015-12-30 12:11:29 +00:00
|
|
|
* @return The size of the receivee packet.
|
2013-08-04 13:38:53 +00:00
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
2015-12-30 12:11:29 +00:00
|
|
|
static size_t usb_packet_read_to_buffer(usbep_t ep, uint8_t *buf) {
|
|
|
|
size_t i, n;
|
|
|
|
stm32_usb_descriptor_t *udp = USB_GET_DESCRIPTOR(ep);
|
2015-12-25 10:13:26 +00:00
|
|
|
stm32_usb_pma_t *pmap = USB_ADDR2PTR(udp->RXADDR0);
|
2015-12-30 12:11:29 +00:00
|
|
|
uint32_t epr = STM32_USB->EPR[ep];
|
2015-12-25 10:13:26 +00:00
|
|
|
|
2015-12-30 12:11:29 +00:00
|
|
|
/* Double buffering is always enabled for isochronous endpoints, and
|
|
|
|
although we overlap the two buffers for simplicity, we still need
|
|
|
|
to read from the right counter. The DTOG_RX bit indicates the buffer
|
|
|
|
that is currently in use by the USB peripheral, that is, the buffer
|
|
|
|
in which the next received packet will be stored, so we need to
|
|
|
|
read the counter of the OTHER buffer, which is where the last
|
|
|
|
received packet was stored.*/
|
|
|
|
if (EPR_EP_TYPE_IS_ISO(epr) && !(epr & EPR_DTOG_RX))
|
|
|
|
n = (size_t)udp->RXCOUNT1 & RXCOUNT_COUNT_MASK;
|
2015-12-31 08:01:48 +00:00
|
|
|
else
|
|
|
|
n = (size_t)udp->RXCOUNT0 & RXCOUNT_COUNT_MASK;
|
2015-12-30 12:11:29 +00:00
|
|
|
|
|
|
|
i = n;
|
2015-12-31 09:37:45 +00:00
|
|
|
|
|
|
|
#if STM32_USB_USE_FAST_COPY
|
|
|
|
while (i >= 16) {
|
|
|
|
uint32_t w;
|
|
|
|
|
|
|
|
w = *(pmap + 0);
|
|
|
|
*(buf + 0) = (uint8_t)w;
|
|
|
|
*(buf + 1) = (uint8_t)(w >> 8);
|
|
|
|
w = *(pmap + 1);
|
|
|
|
*(buf + 2) = (uint8_t)w;
|
|
|
|
*(buf + 3) = (uint8_t)(w >> 8);
|
|
|
|
w = *(pmap + 2);
|
|
|
|
*(buf + 4) = (uint8_t)w;
|
|
|
|
*(buf + 5) = (uint8_t)(w >> 8);
|
|
|
|
w = *(pmap + 3);
|
|
|
|
*(buf + 6) = (uint8_t)w;
|
|
|
|
*(buf + 7) = (uint8_t)(w >> 8);
|
|
|
|
w = *(pmap + 4);
|
|
|
|
*(buf + 8) = (uint8_t)w;
|
|
|
|
*(buf + 9) = (uint8_t)(w >> 8);
|
|
|
|
w = *(pmap + 5);
|
|
|
|
*(buf + 10) = (uint8_t)w;
|
|
|
|
*(buf + 11) = (uint8_t)(w >> 8);
|
|
|
|
w = *(pmap + 6);
|
|
|
|
*(buf + 12) = (uint8_t)w;
|
|
|
|
*(buf + 13) = (uint8_t)(w >> 8);
|
|
|
|
w = *(pmap + 7);
|
|
|
|
*(buf + 14) = (uint8_t)w;
|
|
|
|
*(buf + 15) = (uint8_t)(w >> 8);
|
|
|
|
|
|
|
|
i -= 16;
|
|
|
|
buf += 16;
|
|
|
|
pmap += 8;
|
|
|
|
}
|
|
|
|
#endif /* STM32_USB_USE_FAST_COPY */
|
|
|
|
|
|
|
|
while (i >= 2) {
|
2015-12-25 10:13:26 +00:00
|
|
|
uint32_t w = *pmap++;
|
|
|
|
*buf++ = (uint8_t)w;
|
|
|
|
*buf++ = (uint8_t)(w >> 8);
|
2015-12-30 12:11:29 +00:00
|
|
|
i -= 2;
|
2015-12-25 10:13:26 +00:00
|
|
|
}
|
|
|
|
|
2015-12-31 09:37:45 +00:00
|
|
|
if (i >= 1) {
|
2015-12-25 10:13:26 +00:00
|
|
|
*buf = (uint8_t)*pmap;
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
2015-12-30 12:11:29 +00:00
|
|
|
|
|
|
|
return n;
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Writes to a dedicated packet buffer.
|
|
|
|
*
|
2015-12-30 12:11:29 +00:00
|
|
|
* @param[in] ep endpoint number
|
2013-08-04 13:38:53 +00:00
|
|
|
* @param[in] buf buffer where to fetch the packet data
|
|
|
|
* @param[in] n maximum number of bytes to copy. This value must
|
|
|
|
* not exceed the maximum packet size for this endpoint.
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
2015-12-30 12:11:29 +00:00
|
|
|
static void usb_packet_write_from_buffer(usbep_t ep,
|
2013-08-04 13:38:53 +00:00
|
|
|
const uint8_t *buf,
|
|
|
|
size_t n) {
|
2015-12-30 12:11:29 +00:00
|
|
|
stm32_usb_descriptor_t *udp = USB_GET_DESCRIPTOR(ep);
|
2015-12-25 10:13:26 +00:00
|
|
|
stm32_usb_pma_t *pmap = USB_ADDR2PTR(udp->TXADDR0);
|
2015-12-30 12:11:29 +00:00
|
|
|
uint32_t epr = STM32_USB->EPR[ep];
|
2015-12-25 10:13:26 +00:00
|
|
|
int i = (int)n;
|
2015-09-06 17:49:24 +00:00
|
|
|
|
2015-12-30 12:11:29 +00:00
|
|
|
/* Double buffering is always enabled for isochronous endpoints, and
|
|
|
|
although we overlap the two buffers for simplicity, we still need
|
|
|
|
to write to the right counter. The DTOG_TX bit indicates the buffer
|
|
|
|
that is currently in use by the USB peripheral, that is, the buffer
|
|
|
|
from which the next packet will be sent, so we need to write the
|
|
|
|
counter of that buffer.*/
|
|
|
|
if (EPR_EP_TYPE_IS_ISO(epr) && (epr & EPR_DTOG_TX))
|
|
|
|
udp->TXCOUNT1 = (stm32_usb_pma_t)n;
|
2015-12-31 08:01:48 +00:00
|
|
|
else
|
|
|
|
udp->TXCOUNT0 = (stm32_usb_pma_t)n;
|
2015-12-30 12:11:29 +00:00
|
|
|
|
2015-12-31 09:37:45 +00:00
|
|
|
#if STM32_USB_USE_FAST_COPY
|
|
|
|
while (i >= 16) {
|
|
|
|
uint32_t w;
|
|
|
|
|
|
|
|
w = *(buf + 0);
|
|
|
|
w |= *(buf + 1) << 8;
|
|
|
|
*(pmap + 0) = (stm32_usb_pma_t)w;
|
|
|
|
w = *(buf + 2);
|
|
|
|
w |= *(buf + 3) << 8;
|
|
|
|
*(pmap + 1) = (stm32_usb_pma_t)w;
|
|
|
|
w = *(buf + 4);
|
|
|
|
w |= *(buf + 5) << 8;
|
|
|
|
*(pmap + 2) = (stm32_usb_pma_t)w;
|
|
|
|
w = *(buf + 6);
|
|
|
|
w |= *(buf + 7) << 8;
|
|
|
|
*(pmap + 3) = (stm32_usb_pma_t)w;
|
|
|
|
w = *(buf + 8);
|
|
|
|
w |= *(buf + 9) << 8;
|
|
|
|
*(pmap + 4) = (stm32_usb_pma_t)w;
|
|
|
|
w = *(buf + 10);
|
|
|
|
w |= *(buf + 11) << 8;
|
|
|
|
*(pmap + 5) = (stm32_usb_pma_t)w;
|
|
|
|
w = *(buf + 12);
|
|
|
|
w |= *(buf + 13) << 8;
|
|
|
|
*(pmap + 6) = (stm32_usb_pma_t)w;
|
|
|
|
w = *(buf + 14);
|
|
|
|
w |= *(buf + 15) << 8;
|
|
|
|
*(pmap + 7) = (stm32_usb_pma_t)w;
|
|
|
|
|
|
|
|
i -= 16;
|
|
|
|
buf += 16;
|
|
|
|
pmap += 8;
|
|
|
|
}
|
|
|
|
#endif /* STM32_USB_USE_FAST_COPY */
|
|
|
|
|
2015-12-25 10:13:26 +00:00
|
|
|
while (i > 0) {
|
2015-12-31 09:37:45 +00:00
|
|
|
uint32_t w;
|
|
|
|
|
2015-12-25 10:13:26 +00:00
|
|
|
w = *buf++;
|
|
|
|
w |= *buf++ << 8;
|
|
|
|
*pmap++ = (stm32_usb_pma_t)w;
|
|
|
|
i -= 2;
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-27 09:01:57 +00:00
|
|
|
/**
|
|
|
|
* @brief Common ISR code, serves the EP-related interrupts.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
static void usb_serve_endpoints(USBDriver *usbp, uint32_t ep) {
|
|
|
|
size_t n;
|
|
|
|
uint32_t epr = STM32_USB->EPR[ep];
|
|
|
|
const USBEndpointConfig *epcp = usbp->epc[ep];
|
|
|
|
|
|
|
|
if (epr & EPR_CTR_TX) {
|
|
|
|
/* IN endpoint, transmission.*/
|
2015-12-31 08:30:52 +00:00
|
|
|
USBInEndpointState *isp = epcp->in_state;
|
|
|
|
|
2015-11-27 09:01:57 +00:00
|
|
|
EPR_CLEAR_CTR_TX(ep);
|
|
|
|
|
2015-12-31 08:30:52 +00:00
|
|
|
isp->txcnt += isp->txlast;
|
|
|
|
n = isp->txsize - isp->txcnt;
|
2015-11-27 09:01:57 +00:00
|
|
|
if (n > 0) {
|
|
|
|
/* Transfer not completed, there are more packets to send.*/
|
|
|
|
if (n > epcp->in_maxsize)
|
|
|
|
n = epcp->in_maxsize;
|
|
|
|
|
2015-12-25 08:59:10 +00:00
|
|
|
/* Writes the packet from the defined buffer.*/
|
2015-12-31 08:30:52 +00:00
|
|
|
isp->txbuf += isp->txlast;
|
|
|
|
isp->txlast = n;
|
|
|
|
usb_packet_write_from_buffer(ep, isp->txbuf, n);
|
2015-12-30 11:47:19 +00:00
|
|
|
|
|
|
|
/* Starting IN operation.*/
|
|
|
|
EPR_SET_STAT_TX(ep, EPR_STAT_TX_VALID);
|
2015-11-27 09:01:57 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Transfer completed, invokes the callback.*/
|
|
|
|
_usb_isr_invoke_in_cb(usbp, ep);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (epr & EPR_CTR_RX) {
|
|
|
|
/* OUT endpoint, receive.*/
|
2015-12-31 08:30:52 +00:00
|
|
|
|
|
|
|
EPR_CLEAR_CTR_RX(ep);
|
|
|
|
|
2015-11-27 09:01:57 +00:00
|
|
|
if (epr & EPR_SETUP) {
|
|
|
|
/* Setup packets handling, setup packets are handled using a
|
|
|
|
specific callback.*/
|
|
|
|
_usb_isr_invoke_setup_cb(usbp, ep);
|
|
|
|
}
|
|
|
|
else {
|
2015-12-31 08:30:52 +00:00
|
|
|
USBOutEndpointState *osp = epcp->out_state;
|
|
|
|
|
2015-11-27 09:01:57 +00:00
|
|
|
/* Reads the packet into the defined buffer.*/
|
2015-12-31 08:30:52 +00:00
|
|
|
n = usb_packet_read_to_buffer(ep, osp->rxbuf);
|
|
|
|
osp->rxbuf += n;
|
2015-11-27 09:01:57 +00:00
|
|
|
|
|
|
|
/* Transaction data updated.*/
|
2015-12-31 08:30:52 +00:00
|
|
|
osp->rxcnt += n;
|
|
|
|
osp->rxsize -= n;
|
|
|
|
osp->rxpkts -= 1;
|
2015-11-27 09:01:57 +00:00
|
|
|
|
|
|
|
/* The transaction is completed if the specified number of packets
|
|
|
|
has been received or the current packet is a short packet.*/
|
2015-12-31 08:30:52 +00:00
|
|
|
if ((n < epcp->out_maxsize) || (osp->rxpkts == 0)) {
|
2015-11-27 09:01:57 +00:00
|
|
|
/* Transfer complete, invokes the callback.*/
|
|
|
|
_usb_isr_invoke_out_cb(usbp, ep);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Transfer not complete, there are more packets to receive.*/
|
|
|
|
EPR_SET_STAT_RX(ep, EPR_STAT_RX_VALID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver interrupt handlers. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
#if STM32_USB_USE_USB1 || defined(__DOXYGEN__)
|
2014-12-20 10:33:27 +00:00
|
|
|
#if STM32_USB1_HP_NUMBER != STM32_USB1_LP_NUMBER
|
2013-08-04 13:38:53 +00:00
|
|
|
/**
|
|
|
|
* @brief USB high priority interrupt handler.
|
|
|
|
*
|
|
|
|
* @isr
|
|
|
|
*/
|
2015-04-07 19:37:46 +00:00
|
|
|
OSAL_IRQ_HANDLER(STM32_USB1_HP_HANDLER) {
|
2015-11-27 09:01:57 +00:00
|
|
|
uint32_t istr;
|
|
|
|
USBDriver *usbp = &USBD1;
|
2013-08-04 13:38:53 +00:00
|
|
|
|
2015-04-07 19:37:46 +00:00
|
|
|
OSAL_IRQ_PROLOGUE();
|
2013-08-04 13:38:53 +00:00
|
|
|
|
2015-11-27 09:01:57 +00:00
|
|
|
/* Endpoint events handling.*/
|
|
|
|
istr = STM32_USB->ISTR;
|
|
|
|
while (istr & ISTR_CTR) {
|
|
|
|
usb_serve_endpoints(usbp, istr & ISTR_EP_ID_MASK);
|
|
|
|
istr = STM32_USB->ISTR;
|
|
|
|
}
|
|
|
|
|
2015-04-07 19:37:46 +00:00
|
|
|
OSAL_IRQ_EPILOGUE();
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
2014-12-20 10:33:27 +00:00
|
|
|
#endif /* STM32_USB1_LP_NUMBER != STM32_USB1_HP_NUMBER */
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief USB low priority interrupt handler.
|
|
|
|
*
|
|
|
|
* @isr
|
|
|
|
*/
|
2015-04-07 19:37:46 +00:00
|
|
|
OSAL_IRQ_HANDLER(STM32_USB1_LP_HANDLER) {
|
2013-08-04 13:38:53 +00:00
|
|
|
uint32_t istr;
|
|
|
|
USBDriver *usbp = &USBD1;
|
|
|
|
|
2015-04-07 19:37:46 +00:00
|
|
|
OSAL_IRQ_PROLOGUE();
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
istr = STM32_USB->ISTR;
|
|
|
|
|
|
|
|
/* USB bus reset condition handling.*/
|
|
|
|
if (istr & ISTR_RESET) {
|
|
|
|
STM32_USB->ISTR = ~ISTR_RESET;
|
2015-09-08 13:36:30 +00:00
|
|
|
|
|
|
|
_usb_reset(usbp);
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* USB bus SUSPEND condition handling.*/
|
|
|
|
if (istr & ISTR_SUSP) {
|
|
|
|
STM32_USB->CNTR |= CNTR_FSUSP;
|
|
|
|
#if STM32_USB_LOW_POWER_ON_SUSPEND
|
|
|
|
STM32_USB->CNTR |= CNTR_LP_MODE;
|
|
|
|
#endif
|
|
|
|
STM32_USB->ISTR = ~ISTR_SUSP;
|
2015-09-08 13:36:30 +00:00
|
|
|
|
|
|
|
_usb_suspend(usbp);
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* USB bus WAKEUP condition handling.*/
|
|
|
|
if (istr & ISTR_WKUP) {
|
|
|
|
uint32_t fnr = STM32_USB->FNR;
|
|
|
|
if (!(fnr & FNR_RXDP)) {
|
|
|
|
STM32_USB->CNTR &= ~CNTR_FSUSP;
|
2015-09-08 13:36:30 +00:00
|
|
|
|
|
|
|
_usb_wakeup(usbp);
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
|
|
|
#if STM32_USB_LOW_POWER_ON_SUSPEND
|
|
|
|
else {
|
|
|
|
/* Just noise, going back in SUSPEND mode, reference manual 22.4.5,
|
|
|
|
table 169.*/
|
|
|
|
STM32_USB->CNTR |= CNTR_LP_MODE;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
STM32_USB->ISTR = ~ISTR_WKUP;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* SOF handling.*/
|
|
|
|
if (istr & ISTR_SOF) {
|
|
|
|
_usb_isr_invoke_sof_cb(usbp);
|
|
|
|
STM32_USB->ISTR = ~ISTR_SOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Endpoint events handling.*/
|
|
|
|
while (istr & ISTR_CTR) {
|
2015-11-27 09:01:57 +00:00
|
|
|
usb_serve_endpoints(usbp, istr & ISTR_EP_ID_MASK);
|
2013-08-04 13:38:53 +00:00
|
|
|
istr = STM32_USB->ISTR;
|
|
|
|
}
|
|
|
|
|
2015-04-07 19:37:46 +00:00
|
|
|
OSAL_IRQ_EPILOGUE();
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
2014-12-20 10:33:27 +00:00
|
|
|
#endif /* STM32_USB_USE_USB1 */
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Low level USB driver initialization.
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_init(void) {
|
|
|
|
|
|
|
|
/* Driver initialization.*/
|
|
|
|
usbObjectInit(&USBD1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Configures and activates the USB peripheral.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_start(USBDriver *usbp) {
|
|
|
|
|
|
|
|
if (usbp->state == USB_STOP) {
|
|
|
|
/* Clock activation.*/
|
|
|
|
#if STM32_USB_USE_USB1
|
|
|
|
if (&USBD1 == usbp) {
|
|
|
|
/* USB clock enabled.*/
|
|
|
|
rccEnableUSB(FALSE);
|
|
|
|
/* Powers up the transceiver while holding the USB in reset state.*/
|
|
|
|
STM32_USB->CNTR = CNTR_FRES;
|
|
|
|
/* Enabling the USB IRQ vectors, this also gives enough time to allow
|
|
|
|
the transceiver power up (1uS).*/
|
2015-01-11 10:21:26 +00:00
|
|
|
#if STM32_USB1_HP_NUMBER != STM32_USB1_LP_NUMBER
|
2013-08-25 09:37:34 +00:00
|
|
|
nvicEnableVector(STM32_USB1_HP_NUMBER, STM32_USB_USB1_HP_IRQ_PRIORITY);
|
2015-01-11 10:21:26 +00:00
|
|
|
#endif
|
2013-08-25 09:37:34 +00:00
|
|
|
nvicEnableVector(STM32_USB1_LP_NUMBER, STM32_USB_USB1_LP_IRQ_PRIORITY);
|
2013-08-04 13:38:53 +00:00
|
|
|
/* Releases the USB reset.*/
|
|
|
|
STM32_USB->CNTR = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/* Reset procedure enforced on driver start.*/
|
|
|
|
_usb_reset(usbp);
|
|
|
|
}
|
2015-12-31 08:01:48 +00:00
|
|
|
|
|
|
|
#if STM32_USB_USE_PUMP_THREAD && defined(_CHIBIOS_RT_)
|
|
|
|
/* Creates the data pump thread. Note, it is created only once.*/
|
|
|
|
if (usbp->tr == NULL) {
|
|
|
|
usbp->tr = chThdCreateI(usbp->wa_pump, sizeof usbp->wa_pump,
|
|
|
|
STM32_USB_PUMP_THREAD_PRIO,
|
|
|
|
usb_lld_pump, usbp);
|
|
|
|
chThdStartI(usbp->tr);
|
|
|
|
chSchRescheduleS();
|
|
|
|
}
|
|
|
|
#endif
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Deactivates the USB peripheral.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_stop(USBDriver *usbp) {
|
|
|
|
|
|
|
|
/* If in ready state then disables the USB clock.*/
|
|
|
|
if (usbp->state == USB_STOP) {
|
|
|
|
#if STM32_USB_USE_USB1
|
|
|
|
if (&USBD1 == usbp) {
|
2015-01-11 10:21:26 +00:00
|
|
|
#if STM32_USB1_HP_NUMBER != STM32_USB1_LP_NUMBER
|
2013-08-04 13:38:53 +00:00
|
|
|
nvicDisableVector(STM32_USB1_HP_NUMBER);
|
2015-01-11 10:21:26 +00:00
|
|
|
#endif
|
2013-08-04 13:38:53 +00:00
|
|
|
nvicDisableVector(STM32_USB1_LP_NUMBER);
|
|
|
|
STM32_USB->CNTR = CNTR_PDWN | CNTR_FRES;
|
|
|
|
rccDisableUSB(FALSE);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief USB low level reset routine.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_reset(USBDriver *usbp) {
|
|
|
|
uint32_t cntr;
|
|
|
|
|
|
|
|
/* Post reset initialization.*/
|
2015-11-16 11:02:30 +00:00
|
|
|
STM32_USB->BTABLE = BTABLE_ADDR;
|
2013-08-04 13:38:53 +00:00
|
|
|
STM32_USB->ISTR = 0;
|
|
|
|
STM32_USB->DADDR = DADDR_EF;
|
|
|
|
cntr = /*CNTR_ESOFM | */ CNTR_RESETM | CNTR_SUSPM |
|
|
|
|
CNTR_WKUPM | /*CNTR_ERRM | CNTR_PMAOVRM |*/ CNTR_CTRM;
|
|
|
|
/* The SOF interrupt is only enabled if a callback is defined for
|
|
|
|
this service because it is an high rate source.*/
|
|
|
|
if (usbp->config->sof_cb != NULL)
|
|
|
|
cntr |= CNTR_SOFM;
|
|
|
|
STM32_USB->CNTR = cntr;
|
|
|
|
|
|
|
|
/* Resets the packet memory allocator.*/
|
|
|
|
usb_pm_reset(usbp);
|
|
|
|
|
|
|
|
/* EP0 initialization.*/
|
|
|
|
usbp->epc[0] = &ep0config;
|
|
|
|
usb_lld_init_endpoint(usbp, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Sets the USB address.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_set_address(USBDriver *usbp) {
|
|
|
|
|
|
|
|
STM32_USB->DADDR = (uint32_t)(usbp->address) | DADDR_EF;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Enables an endpoint.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_init_endpoint(USBDriver *usbp, usbep_t ep) {
|
|
|
|
uint16_t nblocks, epr;
|
|
|
|
stm32_usb_descriptor_t *dp;
|
|
|
|
const USBEndpointConfig *epcp = usbp->epc[ep];
|
|
|
|
|
2015-11-26 14:30:16 +00:00
|
|
|
/* Setting the endpoint type. Note that isochronous endpoints cannot be
|
|
|
|
bidirectional because it uses double buffering and both transmit and
|
|
|
|
receive descriptor fields are used for either direction.*/
|
2013-08-04 13:38:53 +00:00
|
|
|
switch (epcp->ep_mode & USB_EP_MODE_TYPE) {
|
|
|
|
case USB_EP_MODE_TYPE_ISOC:
|
2015-12-30 11:47:19 +00:00
|
|
|
osalDbgAssert((epcp->in_state == NULL) || (epcp->out_state == NULL),
|
2015-11-26 14:30:16 +00:00
|
|
|
"isochronous EP cannot be IN and OUT");
|
2013-08-04 13:38:53 +00:00
|
|
|
epr = EPR_EP_TYPE_ISO;
|
|
|
|
break;
|
|
|
|
case USB_EP_MODE_TYPE_BULK:
|
|
|
|
epr = EPR_EP_TYPE_BULK;
|
|
|
|
break;
|
|
|
|
case USB_EP_MODE_TYPE_INTR:
|
|
|
|
epr = EPR_EP_TYPE_INTERRUPT;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
epr = EPR_EP_TYPE_CONTROL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Endpoint size and address initialization.*/
|
|
|
|
if (epcp->out_maxsize > 62)
|
|
|
|
nblocks = (((((epcp->out_maxsize - 1) | 0x1f) + 1) / 32) << 10) |
|
|
|
|
0x8000;
|
|
|
|
else
|
|
|
|
nblocks = ((((epcp->out_maxsize - 1) | 1) + 1) / 2) << 10;
|
2015-11-26 14:30:16 +00:00
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
dp = USB_GET_DESCRIPTOR(ep);
|
|
|
|
dp->TXCOUNT0 = 0;
|
|
|
|
dp->RXCOUNT0 = nblocks;
|
|
|
|
dp->TXADDR0 = usb_pm_alloc(usbp, epcp->in_maxsize);
|
|
|
|
dp->RXADDR0 = usb_pm_alloc(usbp, epcp->out_maxsize);
|
2015-11-26 14:30:16 +00:00
|
|
|
|
|
|
|
/* Initial status for isochronous enpoints is valid because disabled and
|
|
|
|
valid are the only legal values. Also since double buffering is used
|
|
|
|
we need to initialize both count/address sets depending on the direction,
|
|
|
|
but since we are not taking advantage of the double buffering, we set both
|
|
|
|
addresses to point to the same PMA.*/
|
|
|
|
if ((epcp->ep_mode & USB_EP_MODE_TYPE) == USB_EP_MODE_TYPE_ISOC) {
|
2015-12-30 11:47:19 +00:00
|
|
|
if (epcp->in_state != NULL) {
|
2015-11-26 14:30:16 +00:00
|
|
|
epr |= EPR_STAT_TX_VALID;
|
|
|
|
dp->TXCOUNT1 = dp->TXCOUNT0;
|
|
|
|
dp->TXADDR1 = dp->TXADDR0; /* Both buffers overlapped.*/
|
|
|
|
}
|
2015-12-30 11:47:19 +00:00
|
|
|
if (epcp->out_state != NULL) {
|
2015-11-26 14:30:16 +00:00
|
|
|
epr |= EPR_STAT_RX_VALID;
|
|
|
|
dp->RXCOUNT1 = dp->RXCOUNT0;
|
|
|
|
dp->RXADDR1 = dp->RXADDR0; /* Both buffers overlapped.*/
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Initial status for other endpoint types is NAK.*/
|
2015-12-30 11:47:19 +00:00
|
|
|
if (epcp->in_state != NULL)
|
2015-11-26 14:30:16 +00:00
|
|
|
epr |= EPR_STAT_TX_NAK;
|
|
|
|
|
2015-12-30 11:47:19 +00:00
|
|
|
if (epcp->out_state != NULL)
|
2015-11-26 14:30:16 +00:00
|
|
|
epr |= EPR_STAT_RX_NAK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* EPxR register setup.*/
|
|
|
|
EPR_SET(ep, epr | ep);
|
|
|
|
EPR_TOGGLE(ep, epr);
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Disables all the active endpoints except the endpoint zero.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_disable_endpoints(USBDriver *usbp) {
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
/* Resets the packet memory allocator.*/
|
|
|
|
usb_pm_reset(usbp);
|
|
|
|
|
|
|
|
/* Disabling all endpoints.*/
|
|
|
|
for (i = 1; i <= USB_ENDOPOINTS_NUMBER; i++) {
|
|
|
|
EPR_TOGGLE(i, 0);
|
|
|
|
EPR_SET(i, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns the status of an OUT endpoint.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
* @return The endpoint status.
|
|
|
|
* @retval EP_STATUS_DISABLED The endpoint is not active.
|
|
|
|
* @retval EP_STATUS_STALLED The endpoint is stalled.
|
|
|
|
* @retval EP_STATUS_ACTIVE The endpoint is active.
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
usbepstatus_t usb_lld_get_status_out(USBDriver *usbp, usbep_t ep) {
|
|
|
|
|
|
|
|
(void)usbp;
|
|
|
|
switch (STM32_USB->EPR[ep] & EPR_STAT_RX_MASK) {
|
|
|
|
case EPR_STAT_RX_DIS:
|
|
|
|
return EP_STATUS_DISABLED;
|
|
|
|
case EPR_STAT_RX_STALL:
|
|
|
|
return EP_STATUS_STALLED;
|
|
|
|
default:
|
|
|
|
return EP_STATUS_ACTIVE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns the status of an IN endpoint.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
* @return The endpoint status.
|
|
|
|
* @retval EP_STATUS_DISABLED The endpoint is not active.
|
|
|
|
* @retval EP_STATUS_STALLED The endpoint is stalled.
|
|
|
|
* @retval EP_STATUS_ACTIVE The endpoint is active.
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
usbepstatus_t usb_lld_get_status_in(USBDriver *usbp, usbep_t ep) {
|
|
|
|
|
|
|
|
(void)usbp;
|
|
|
|
switch (STM32_USB->EPR[ep] & EPR_STAT_TX_MASK) {
|
|
|
|
case EPR_STAT_TX_DIS:
|
|
|
|
return EP_STATUS_DISABLED;
|
|
|
|
case EPR_STAT_TX_STALL:
|
|
|
|
return EP_STATUS_STALLED;
|
|
|
|
default:
|
|
|
|
return EP_STATUS_ACTIVE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Reads a setup packet from the dedicated packet buffer.
|
|
|
|
* @details This function must be invoked in the context of the @p setup_cb
|
|
|
|
* callback in order to read the received setup packet.
|
|
|
|
* @pre In order to use this function the endpoint must have been
|
|
|
|
* initialized as a control endpoint.
|
|
|
|
* @post The endpoint is ready to accept another packet.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
* @param[out] buf buffer where to copy the packet data
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_read_setup(USBDriver *usbp, usbep_t ep, uint8_t *buf) {
|
2014-12-21 09:32:52 +00:00
|
|
|
stm32_usb_pma_t *pmap;
|
2013-08-04 13:38:53 +00:00
|
|
|
stm32_usb_descriptor_t *udp;
|
|
|
|
uint32_t n;
|
|
|
|
|
|
|
|
(void)usbp;
|
|
|
|
udp = USB_GET_DESCRIPTOR(ep);
|
|
|
|
pmap = USB_ADDR2PTR(udp->RXADDR0);
|
|
|
|
for (n = 0; n < 4; n++) {
|
|
|
|
*(uint16_t *)buf = (uint16_t)*pmap++;
|
|
|
|
buf += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-12-30 11:47:19 +00:00
|
|
|
* @brief Starts a receive operation on an OUT endpoint.
|
2013-08-04 13:38:53 +00:00
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
2015-12-30 11:47:19 +00:00
|
|
|
void usb_lld_start_out(USBDriver *usbp, usbep_t ep) {
|
2013-08-04 13:38:53 +00:00
|
|
|
USBOutEndpointState *osp = usbp->epc[ep]->out_state;
|
|
|
|
|
|
|
|
/* Transfer initialization.*/
|
|
|
|
if (osp->rxsize == 0) /* Special case for zero sized packets.*/
|
|
|
|
osp->rxpkts = 1;
|
|
|
|
else
|
|
|
|
osp->rxpkts = (uint16_t)((osp->rxsize + usbp->epc[ep]->out_maxsize - 1) /
|
|
|
|
usbp->epc[ep]->out_maxsize);
|
2015-12-30 11:47:19 +00:00
|
|
|
|
|
|
|
EPR_SET_STAT_RX(ep, EPR_STAT_RX_VALID);
|
2013-08-04 13:38:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-12-30 11:47:19 +00:00
|
|
|
* @brief Starts a transmit operation on an IN endpoint.
|
2013-08-04 13:38:53 +00:00
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
2015-12-30 11:47:19 +00:00
|
|
|
void usb_lld_start_in(USBDriver *usbp, usbep_t ep) {
|
2013-08-04 13:38:53 +00:00
|
|
|
size_t n;
|
|
|
|
USBInEndpointState *isp = usbp->epc[ep]->in_state;
|
|
|
|
|
|
|
|
/* Transfer initialization.*/
|
|
|
|
n = isp->txsize;
|
|
|
|
if (n > (size_t)usbp->epc[ep]->in_maxsize)
|
|
|
|
n = (size_t)usbp->epc[ep]->in_maxsize;
|
|
|
|
|
2015-12-31 08:30:52 +00:00
|
|
|
isp->txlast = n;
|
2015-12-30 12:11:29 +00:00
|
|
|
usb_packet_write_from_buffer(ep, isp->txbuf, n);
|
2013-08-04 13:38:53 +00:00
|
|
|
|
|
|
|
EPR_SET_STAT_TX(ep, EPR_STAT_TX_VALID);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Brings an OUT endpoint in the stalled state.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_stall_out(USBDriver *usbp, usbep_t ep) {
|
|
|
|
|
|
|
|
(void)usbp;
|
|
|
|
|
|
|
|
EPR_SET_STAT_RX(ep, EPR_STAT_RX_STALL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Brings an IN endpoint in the stalled state.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_stall_in(USBDriver *usbp, usbep_t ep) {
|
|
|
|
|
|
|
|
(void)usbp;
|
|
|
|
|
|
|
|
EPR_SET_STAT_TX(ep, EPR_STAT_TX_STALL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Brings an OUT endpoint in the active state.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_clear_out(USBDriver *usbp, usbep_t ep) {
|
|
|
|
|
|
|
|
(void)usbp;
|
|
|
|
|
|
|
|
/* Makes sure to not put to NAK an endpoint that is already
|
|
|
|
transferring.*/
|
|
|
|
if ((STM32_USB->EPR[ep] & EPR_STAT_RX_MASK) != EPR_STAT_RX_VALID)
|
|
|
|
EPR_SET_STAT_TX(ep, EPR_STAT_RX_NAK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Brings an IN endpoint in the active state.
|
|
|
|
*
|
|
|
|
* @param[in] usbp pointer to the @p USBDriver object
|
|
|
|
* @param[in] ep endpoint number
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void usb_lld_clear_in(USBDriver *usbp, usbep_t ep) {
|
|
|
|
|
|
|
|
(void)usbp;
|
|
|
|
|
|
|
|
/* Makes sure to not put to NAK an endpoint that is already
|
|
|
|
transferring.*/
|
|
|
|
if ((STM32_USB->EPR[ep] & EPR_STAT_TX_MASK) != EPR_STAT_TX_VALID)
|
|
|
|
EPR_SET_STAT_TX(ep, EPR_STAT_TX_NAK);
|
|
|
|
}
|
|
|
|
|
2015-12-31 08:01:48 +00:00
|
|
|
#if STM32_USB_USE_PUMP_THREAD || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief USB data transfer loop.
|
|
|
|
* @details This function must be executed by a system thread in order to
|
|
|
|
* make the USB driver work.
|
|
|
|
* @note The data copy part of the driver is implemented in this thread
|
|
|
|
* in order to not perform heavy tasks within interrupt handlers.
|
|
|
|
*
|
|
|
|
* @param[in] p pointer to the @p USBDriver object
|
|
|
|
*
|
|
|
|
* @special
|
|
|
|
*/
|
|
|
|
void usb_lld_pump(void *p) {
|
|
|
|
USBDriver *usbp = (USBDriver *)p;
|
|
|
|
|
|
|
|
#if defined(_CHIBIOS_RT_)
|
|
|
|
chRegSetThreadName("usb_lld_pump");
|
|
|
|
#endif
|
|
|
|
while (true) {
|
|
|
|
usbep_t ep;
|
|
|
|
|
|
|
|
/* Checking if to go to sleep.*/
|
|
|
|
osalSysLock();
|
|
|
|
if ((usbp->state == USB_STOP) && (usbp->pending == 0U)) {
|
|
|
|
osalThreadSuspendS(&usbp->wait);
|
|
|
|
}
|
|
|
|
osalSysUnlock();
|
|
|
|
|
|
|
|
/* Scanning endpoints.*/
|
|
|
|
for (ep = 0; ep <= USB_ENDOPOINTS_NUMBER; ep++) {
|
|
|
|
uint32_t epmask;
|
|
|
|
|
|
|
|
/* Checking of active endpoints.*/
|
|
|
|
const USBEndpointConfig *epcp = usbp->epc[ep];
|
|
|
|
if (epcp != NULL) {
|
|
|
|
if (epcp->in_state != NULL) {
|
|
|
|
epmask = (1U << 16U) << ep;
|
|
|
|
if ((usbp->pending & epmask) != 0U) {
|
|
|
|
/* Handling transfer of this IN endpoint.*/
|
|
|
|
|
|
|
|
osalSysLock();
|
|
|
|
usbp->pending &= ~epmask;
|
|
|
|
osalSysUnlock();
|
|
|
|
}
|
|
|
|
epmask = 1U << ep;
|
|
|
|
if ((usbp->pending & epmask) != 0U) {
|
|
|
|
/* Handling transfer of this OUT endpoint.*/
|
|
|
|
|
|
|
|
osalSysLock();
|
|
|
|
usbp->pending &= ~epmask;
|
|
|
|
osalSysUnlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif /* STM32_USB_USE_PUMP_THREAD */
|
|
|
|
|
2013-08-04 13:38:53 +00:00
|
|
|
#endif /* HAL_USE_USB */
|
|
|
|
|
|
|
|
/** @} */
|