2016-08-17 15:08:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2001-2003 Swedish Institute of Computer Science.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
|
|
* are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
|
|
* and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
|
|
|
|
* SHALL THE AUTHOR 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.
|
|
|
|
*
|
|
|
|
* This file is part of the lwIP TCP/IP stack.
|
|
|
|
*
|
|
|
|
* Author: Adam Dunkels <adam@sics.se>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* lwIP includes. */
|
|
|
|
|
2017-10-04 04:52:19 +00:00
|
|
|
#include <pthread.h>
|
2016-08-17 15:08:22 +00:00
|
|
|
#include "lwip/debug.h"
|
|
|
|
#include "lwip/def.h"
|
|
|
|
#include "lwip/sys.h"
|
|
|
|
#include "lwip/mem.h"
|
|
|
|
#include "arch/sys_arch.h"
|
2016-11-28 10:36:14 +00:00
|
|
|
#include "lwip/stats.h"
|
2017-03-20 08:30:35 +00:00
|
|
|
#include "esp_log.h"
|
2019-10-15 21:01:05 +00:00
|
|
|
#include "esp_compiler.h"
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
static const char* TAG = "lwip_arch";
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2017-03-20 08:30:35 +00:00
|
|
|
static sys_mutex_t g_lwip_protect_mutex = NULL;
|
2016-12-15 06:37:21 +00:00
|
|
|
|
2017-10-04 04:52:19 +00:00
|
|
|
static pthread_key_t sys_thread_sem_key;
|
|
|
|
static void sys_thread_sem_free(void* data);
|
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
#if !LWIP_COMPAT_MUTEX
|
2019-09-29 10:10:48 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Create a new mutex
|
|
|
|
*
|
|
|
|
* @param pxMutex pointer of the mutex to create
|
|
|
|
* @return ERR_OK on success, ERR_MEM when out of memory
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
err_t
|
|
|
|
sys_mutex_new(sys_mutex_t *pxMutex)
|
|
|
|
{
|
|
|
|
*pxMutex = xSemaphoreCreateMutex();
|
2019-09-29 10:10:48 +00:00
|
|
|
if (*pxMutex == NULL) {
|
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("sys_mutex_new: out of mem\r\n"));
|
|
|
|
return ERR_MEM;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2016-10-27 06:11:01 +00:00
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("sys_mutex_new: m=%p\n", *pxMutex));
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
return ERR_OK;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Lock a mutex
|
|
|
|
*
|
|
|
|
* @param pxMutex pointer of mutex to lock
|
|
|
|
*/
|
|
|
|
void
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_mutex_lock(sys_mutex_t *pxMutex)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
BaseType_t ret = xSemaphoreTake(*pxMutex, portMAX_DELAY);
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
LWIP_ASSERT("failed to take the mutex", ret == pdTRUE);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Unlock a mutex
|
|
|
|
*
|
|
|
|
* @param pxMutex pointer of mutex to unlock
|
|
|
|
*/
|
|
|
|
void
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_mutex_unlock(sys_mutex_t *pxMutex)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
BaseType_t ret = xSemaphoreGive(*pxMutex);
|
|
|
|
|
|
|
|
LWIP_ASSERT("failed to give the mutex", ret == pdTRUE);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Delete a mutex
|
|
|
|
*
|
|
|
|
* @param pxMutex pointer of mutex to delete
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
void
|
|
|
|
sys_mutex_free(sys_mutex_t *pxMutex)
|
|
|
|
{
|
2016-10-27 06:11:01 +00:00
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("sys_mutex_free: m=%p\n", *pxMutex));
|
2019-09-29 10:10:48 +00:00
|
|
|
vSemaphoreDelete(*pxMutex);
|
|
|
|
*pxMutex = NULL;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
#endif /* !LWIP_COMPAT_MUTEX */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Creates a new semaphore
|
|
|
|
*
|
|
|
|
* @param sem pointer of the semaphore
|
|
|
|
* @param count initial state of the semaphore
|
|
|
|
* @return err_t
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
err_t
|
|
|
|
sys_sem_new(sys_sem_t *sem, u8_t count)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
LWIP_ASSERT("initial_count invalid (neither 0 nor 1)",
|
|
|
|
(count == 0) || (count == 1));
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
*sem = xSemaphoreCreateBinary();
|
|
|
|
if (*sem == NULL) {
|
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("sys_sem_new: out of mem\r\n"));
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
if (count == 1) {
|
|
|
|
BaseType_t ret = xSemaphoreGive(*sem);
|
|
|
|
LWIP_ASSERT("sys_sem_new: initial give failed", ret == pdTRUE);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
return ERR_OK;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Signals a semaphore
|
|
|
|
*
|
|
|
|
* @param sem pointer of the semaphore
|
|
|
|
*/
|
|
|
|
void
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_sem_signal(sys_sem_t *sem)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
BaseType_t ret = xSemaphoreGive(*sem);
|
|
|
|
/* queue full is OK, this is a signal only... */
|
|
|
|
LWIP_ASSERT("sys_sem_signal: sane return value",
|
|
|
|
(ret == pdTRUE) || (ret == errQUEUE_FULL));
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 08:41:10 +00:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
// Signals a semaphore (from ISR)
|
2019-09-29 10:10:48 +00:00
|
|
|
int
|
|
|
|
sys_sem_signal_isr(sys_sem_t *sem)
|
2018-05-03 08:41:10 +00:00
|
|
|
{
|
|
|
|
BaseType_t woken = pdFALSE;
|
|
|
|
xSemaphoreGiveFromISR(*sem, &woken);
|
|
|
|
return woken == pdTRUE;
|
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Wait for a semaphore to be signaled
|
|
|
|
*
|
|
|
|
* @param sem pointer of the semaphore
|
|
|
|
* @param timeout if zero, will wait infinitely, or will wait for milliseconds specify by this argument
|
|
|
|
* @return SYS_ARCH_TIMEOUT when timeout, 0 otherwise
|
|
|
|
*/
|
|
|
|
u32_t
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
BaseType_t ret;
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
if (!timeout) {
|
|
|
|
/* wait infinite */
|
|
|
|
ret = xSemaphoreTake(*sem, portMAX_DELAY);
|
|
|
|
LWIP_ASSERT("taking semaphore failed", ret == pdTRUE);
|
|
|
|
} else {
|
|
|
|
TickType_t timeout_ticks = timeout / portTICK_RATE_MS;
|
|
|
|
ret = xSemaphoreTake(*sem, timeout_ticks);
|
|
|
|
if (ret == errQUEUE_EMPTY) {
|
|
|
|
/* timed out */
|
|
|
|
return SYS_ARCH_TIMEOUT;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
2019-09-29 10:10:48 +00:00
|
|
|
LWIP_ASSERT("taking semaphore failed", ret == pdTRUE);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
return 0;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Delete a semaphore
|
|
|
|
*
|
|
|
|
* @param sem pointer of the semaphore to delete
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
void
|
|
|
|
sys_sem_free(sys_sem_t *sem)
|
|
|
|
{
|
|
|
|
vSemaphoreDelete(*sem);
|
2019-09-29 10:10:48 +00:00
|
|
|
*sem = NULL;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Create an empty mailbox.
|
|
|
|
*
|
|
|
|
* @param mbox pointer of the mailbox
|
|
|
|
* @param size size of the mailbox
|
|
|
|
* @return ERR_OK on success, ERR_MEM when out of memory
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
err_t
|
|
|
|
sys_mbox_new(sys_mbox_t *mbox, int size)
|
|
|
|
{
|
2017-09-30 07:28:41 +00:00
|
|
|
*mbox = mem_malloc(sizeof(struct sys_mbox_s));
|
2016-08-17 15:08:22 +00:00
|
|
|
if (*mbox == NULL){
|
2016-10-27 06:11:01 +00:00
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("fail to new *mbox\n"));
|
2016-08-17 15:08:22 +00:00
|
|
|
return ERR_MEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*mbox)->os_mbox = xQueueCreate(size, sizeof(void *));
|
|
|
|
|
|
|
|
if ((*mbox)->os_mbox == NULL) {
|
2019-09-29 10:10:48 +00:00
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("fail to new (*mbox)->os_mbox\n"));
|
2016-08-17 15:08:22 +00:00
|
|
|
free(*mbox);
|
|
|
|
return ERR_MEM;
|
|
|
|
}
|
|
|
|
|
2018-11-07 02:52:33 +00:00
|
|
|
#if ESP_THREAD_SAFE
|
|
|
|
(*mbox)->owner = NULL;
|
|
|
|
#endif
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2018-11-07 02:52:33 +00:00
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("new *mbox ok mbox=%p os_mbox=%p\n", *mbox, (*mbox)->os_mbox));
|
2016-08-17 15:08:22 +00:00
|
|
|
return ERR_OK;
|
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Send message to mailbox
|
|
|
|
*
|
|
|
|
* @param mbox pointer of the mailbox
|
|
|
|
* @param msg pointer of the message to send
|
|
|
|
*/
|
|
|
|
void
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_mbox_post(sys_mbox_t *mbox, void *msg)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
BaseType_t ret = xQueueSendToBack((*mbox)->os_mbox, &msg, portMAX_DELAY);
|
|
|
|
LWIP_ASSERT("mbox post failed", ret == pdTRUE);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Try to post a message to mailbox
|
|
|
|
*
|
|
|
|
* @param mbox pointer of the mailbox
|
|
|
|
* @param msg pointer of the message to send
|
|
|
|
* @return ERR_OK on success, ERR_MEM when mailbox is full
|
|
|
|
*/
|
|
|
|
err_t
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_mbox_trypost(sys_mbox_t *mbox, void *msg)
|
|
|
|
{
|
|
|
|
err_t xReturn;
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
if (xQueueSend((*mbox)->os_mbox, &msg, 0) == pdTRUE) {
|
2016-08-17 15:08:22 +00:00
|
|
|
xReturn = ERR_OK;
|
|
|
|
} else {
|
2016-10-27 06:11:01 +00:00
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("trypost mbox=%p fail\n", (*mbox)->os_mbox));
|
2016-08-17 15:08:22 +00:00
|
|
|
xReturn = ERR_MEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
return xReturn;
|
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Try to post a message to mailbox from ISR
|
|
|
|
*
|
|
|
|
* @param mbox pointer of the mailbox
|
|
|
|
* @param msg pointer of the message to send
|
|
|
|
* @return ERR_OK on success
|
|
|
|
* ERR_MEM when mailbox is full
|
|
|
|
* ERR_NEED_SCHED when high priority task wakes up
|
|
|
|
*/
|
|
|
|
err_t
|
|
|
|
sys_mbox_trypost_fromisr(sys_mbox_t *mbox, void *msg)
|
2016-08-17 15:08:22 +00:00
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
BaseType_t ret;
|
|
|
|
BaseType_t xHigherPriorityTaskWoken = pdFALSE;
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
ret = xQueueSendFromISR((*mbox)->os_mbox, &msg, &xHigherPriorityTaskWoken);
|
|
|
|
if (ret == pdTRUE) {
|
|
|
|
if (xHigherPriorityTaskWoken == pdTRUE) {
|
|
|
|
return ERR_NEED_SCHED;
|
|
|
|
}
|
|
|
|
return ERR_OK;
|
|
|
|
} else {
|
|
|
|
LWIP_ASSERT("mbox trypost failed", ret == errQUEUE_FULL);
|
|
|
|
return ERR_MEM;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
2019-09-29 10:10:48 +00:00
|
|
|
}
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Fetch message from mailbox
|
|
|
|
*
|
|
|
|
* @param mbox pointer of mailbox
|
|
|
|
* @param msg pointer of the received message, could be NULL to indicate the message should be dropped
|
|
|
|
* @param timeout if zero, will wait infinitely; or will wait milliseconds specify by this argument
|
|
|
|
* @return SYS_ARCH_TIMEOUT when timeout, 0 otherwise
|
|
|
|
*/
|
|
|
|
u32_t
|
|
|
|
sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout)
|
|
|
|
{
|
|
|
|
BaseType_t ret;
|
|
|
|
void *msg_dummy;
|
|
|
|
|
|
|
|
if (msg == NULL) {
|
|
|
|
msg = &msg_dummy;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-07 02:52:33 +00:00
|
|
|
if (timeout == 0) {
|
2019-09-29 10:10:48 +00:00
|
|
|
/* wait infinite */
|
|
|
|
ret = xQueueReceive((*mbox)->os_mbox, &(*msg), portMAX_DELAY);
|
|
|
|
LWIP_ASSERT("mbox fetch failed", ret == pdTRUE);
|
2018-11-07 02:52:33 +00:00
|
|
|
} else {
|
2019-09-29 10:10:48 +00:00
|
|
|
TickType_t timeout_ticks = timeout / portTICK_RATE_MS;
|
|
|
|
ret = xQueueReceive((*mbox)->os_mbox, &(*msg), timeout_ticks);
|
|
|
|
if (ret == errQUEUE_EMPTY) {
|
|
|
|
/* timed out */
|
|
|
|
*msg = NULL;
|
|
|
|
return SYS_ARCH_TIMEOUT;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
2019-09-29 10:10:48 +00:00
|
|
|
LWIP_ASSERT("mbox fetch failed", ret == pdTRUE);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
return 0;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief try to fetch message from mailbox
|
|
|
|
*
|
|
|
|
* @param mbox pointer of mailbox
|
|
|
|
* @param msg pointer of the received message
|
|
|
|
* @return SYS_MBOX_EMPTY if mailbox is empty, 1 otherwise
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
u32_t
|
|
|
|
sys_arch_mbox_tryfetch(sys_mbox_t *mbox, void **msg)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
BaseType_t ret;
|
|
|
|
void *msg_dummy;
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
if (msg == NULL) {
|
2019-09-29 10:10:48 +00:00
|
|
|
msg = &msg_dummy;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
2019-09-29 10:10:48 +00:00
|
|
|
ret = xQueueReceive((*mbox)->os_mbox, &(*msg), 0);
|
|
|
|
if (ret == errQUEUE_EMPTY) {
|
|
|
|
*msg = NULL;
|
|
|
|
return SYS_MBOX_EMPTY;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
2019-09-29 10:10:48 +00:00
|
|
|
LWIP_ASSERT("mbox fetch failed", ret == pdTRUE);
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
return 0;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-07 02:52:33 +00:00
|
|
|
void
|
|
|
|
sys_mbox_set_owner(sys_mbox_t *mbox, void* owner)
|
|
|
|
{
|
|
|
|
if (mbox && *mbox) {
|
|
|
|
(*mbox)->owner = owner;
|
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("set mbox=%p owner=%p", *mbox, owner));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Delete a mailbox
|
|
|
|
*
|
|
|
|
* @param mbox pointer of the mailbox to delete
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
void
|
|
|
|
sys_mbox_free(sys_mbox_t *mbox)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
if ((NULL == mbox) || (NULL == *mbox)) {
|
|
|
|
return;
|
2018-11-07 02:52:33 +00:00
|
|
|
}
|
2019-09-29 10:10:48 +00:00
|
|
|
UBaseType_t msgs_waiting = uxQueueMessagesWaiting((*mbox)->os_mbox);
|
|
|
|
LWIP_ASSERT("mbox quence not empty", msgs_waiting == 0);
|
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
vQueueDelete((*mbox)->os_mbox);
|
|
|
|
free(*mbox);
|
|
|
|
*mbox = NULL;
|
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Create a new thread
|
|
|
|
*
|
|
|
|
* @param name thread name
|
|
|
|
* @param thread thread function
|
|
|
|
* @param arg thread arguments
|
|
|
|
* @param stacksize stacksize of the thread
|
|
|
|
* @param prio priority of the thread
|
|
|
|
* @return thread ID
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_thread_t
|
|
|
|
sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
TaskHandle_t rtos_task;
|
|
|
|
BaseType_t ret;
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/* LwIP's lwip_thread_fn matches FreeRTOS' TaskFunction_t, so we can pass the
|
|
|
|
thread function without adaption here. */
|
|
|
|
ret = xTaskCreatePinnedToCore(thread, name, stacksize, arg, prio, &rtos_task,
|
2019-04-29 12:30:13 +00:00
|
|
|
CONFIG_LWIP_TCPIP_TASK_AFFINITY);
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
if (ret != pdTRUE) {
|
2016-08-17 15:08:22 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-08-01 09:33:43 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
return (sys_thread_t)rtos_task;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Initialize the sys_arch layer
|
|
|
|
*
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
void
|
|
|
|
sys_init(void)
|
|
|
|
{
|
2020-02-15 05:14:08 +00:00
|
|
|
if (!g_lwip_protect_mutex) {
|
|
|
|
if (ERR_OK != sys_mutex_new(&g_lwip_protect_mutex)) {
|
|
|
|
ESP_LOGE(TAG, "sys_init: failed to init lwip protect mutex\n");
|
|
|
|
}
|
2019-09-29 10:10:48 +00:00
|
|
|
}
|
2017-10-04 04:52:19 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
// Create the pthreads key for the per-thread semaphore storage
|
|
|
|
pthread_key_create(&sys_thread_sem_key, sys_thread_sem_free);
|
2017-10-04 04:52:19 +00:00
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
esp_vfs_lwip_sockets_register();
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Get system ticks
|
|
|
|
*
|
|
|
|
* @return system tick counts
|
|
|
|
*/
|
2017-01-20 11:05:38 +00:00
|
|
|
u32_t
|
|
|
|
sys_jiffies(void)
|
|
|
|
{
|
|
|
|
return xTaskGetTickCount();
|
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Get current time, in miliseconds
|
|
|
|
*
|
|
|
|
* @return current time
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
u32_t
|
|
|
|
sys_now(void)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
return xTaskGetTickCount() * portTICK_PERIOD_MS;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Protect critical region
|
|
|
|
*
|
|
|
|
* @note This function is only called during very short critical regions.
|
|
|
|
*
|
|
|
|
* @return previous protection level
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_prot_t
|
|
|
|
sys_arch_protect(void)
|
|
|
|
{
|
2020-02-15 05:14:08 +00:00
|
|
|
if (unlikely(!g_lwip_protect_mutex)) {
|
|
|
|
sys_mutex_new(&g_lwip_protect_mutex);
|
|
|
|
}
|
2017-03-20 08:30:35 +00:00
|
|
|
sys_mutex_lock(&g_lwip_protect_mutex);
|
2016-08-17 15:08:22 +00:00
|
|
|
return (sys_prot_t) 1;
|
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
/**
|
|
|
|
* @brief Unprotect critical region
|
|
|
|
*
|
|
|
|
* @param pval protection level
|
|
|
|
*/
|
2016-08-17 15:08:22 +00:00
|
|
|
void
|
|
|
|
sys_arch_unprotect(sys_prot_t pval)
|
|
|
|
{
|
2019-09-29 10:10:48 +00:00
|
|
|
LWIP_UNUSED_ARG(pval);
|
2017-03-20 08:30:35 +00:00
|
|
|
sys_mutex_unlock(&g_lwip_protect_mutex);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2017-10-04 04:52:19 +00:00
|
|
|
/*
|
2019-09-29 10:10:48 +00:00
|
|
|
* get per thread semaphore
|
2016-08-19 09:23:04 +00:00
|
|
|
*/
|
2019-09-29 10:10:48 +00:00
|
|
|
sys_sem_t*
|
|
|
|
sys_thread_sem_get(void)
|
2016-08-19 09:23:04 +00:00
|
|
|
{
|
2017-10-04 04:52:19 +00:00
|
|
|
sys_sem_t *sem = pthread_getspecific(sys_thread_sem_key);
|
|
|
|
|
|
|
|
if (!sem) {
|
|
|
|
sem = sys_thread_sem_init();
|
2016-08-19 09:23:04 +00:00
|
|
|
}
|
2016-10-27 06:11:01 +00:00
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("sem_get s=%p\n", sem));
|
2016-08-19 09:23:04 +00:00
|
|
|
return sem;
|
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
static void
|
|
|
|
sys_thread_sem_free(void* data) // destructor for TLS semaphore
|
2016-08-24 08:33:30 +00:00
|
|
|
{
|
|
|
|
sys_sem_t *sem = (sys_sem_t*)(data);
|
|
|
|
|
|
|
|
if (sem && *sem){
|
2017-10-04 04:52:19 +00:00
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("sem del, sem=%p\n", *sem));
|
2016-08-24 08:33:30 +00:00
|
|
|
vSemaphoreDelete(*sem);
|
|
|
|
}
|
|
|
|
|
2017-10-04 04:52:19 +00:00
|
|
|
if (sem) {
|
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("sem pointer del, sem_p=%p\n", sem));
|
2016-08-24 08:33:30 +00:00
|
|
|
free(sem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
sys_sem_t*
|
|
|
|
sys_thread_sem_init(void)
|
2016-08-17 15:08:22 +00:00
|
|
|
{
|
2017-09-30 07:28:41 +00:00
|
|
|
sys_sem_t *sem = (sys_sem_t*)mem_malloc(sizeof(sys_sem_t*));
|
2016-08-19 09:23:04 +00:00
|
|
|
|
|
|
|
if (!sem){
|
2017-03-20 08:30:35 +00:00
|
|
|
ESP_LOGE(TAG, "thread_sem_init: out of memory");
|
2016-08-19 09:23:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
*sem = xSemaphoreCreateBinary();
|
|
|
|
if (!(*sem)){
|
|
|
|
free(sem);
|
2017-03-20 08:30:35 +00:00
|
|
|
ESP_LOGE(TAG, "thread_sem_init: out of memory");
|
2016-08-19 09:23:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-10-04 04:52:19 +00:00
|
|
|
pthread_setspecific(sys_thread_sem_key, sem);
|
2016-08-17 13:05:29 +00:00
|
|
|
return sem;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
void
|
|
|
|
sys_thread_sem_deinit(void)
|
2016-08-19 09:23:04 +00:00
|
|
|
{
|
2017-10-04 04:52:19 +00:00
|
|
|
sys_sem_t *sem = pthread_getspecific(sys_thread_sem_key);
|
|
|
|
if (sem != NULL) {
|
|
|
|
sys_thread_sem_free(sem);
|
|
|
|
pthread_setspecific(sys_thread_sem_key, NULL);
|
|
|
|
}
|
2016-08-19 09:23:04 +00:00
|
|
|
}
|
|
|
|
|
2019-09-29 10:10:48 +00:00
|
|
|
void
|
|
|
|
sys_delay_ms(uint32_t ms)
|
2016-08-17 15:08:22 +00:00
|
|
|
{
|
2016-12-22 01:42:21 +00:00
|
|
|
vTaskDelay(ms / portTICK_PERIOD_MS);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|