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"
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
/* This is the number of threads that can be started with sys_thread_new() */
|
|
|
|
#define SYS_THREAD_MAX 4
|
2017-03-20 08:30:35 +00:00
|
|
|
#define 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
|
|
|
|
/** Create a new mutex
|
|
|
|
* @param mutex pointer to the mutex to create
|
|
|
|
* @return a new mutex */
|
|
|
|
err_t
|
|
|
|
sys_mutex_new(sys_mutex_t *pxMutex)
|
|
|
|
{
|
|
|
|
err_t xReturn = ERR_MEM;
|
|
|
|
|
|
|
|
*pxMutex = xSemaphoreCreateMutex();
|
|
|
|
|
|
|
|
if (*pxMutex != NULL) {
|
|
|
|
xReturn = ERR_OK;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
|
|
|
return xReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Lock a mutex
|
|
|
|
* @param mutex the mutex to lock */
|
2018-01-23 07:17:46 +00:00
|
|
|
void ESP_IRAM_ATTR
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_mutex_lock(sys_mutex_t *pxMutex)
|
|
|
|
{
|
|
|
|
while (xSemaphoreTake(*pxMutex, portMAX_DELAY) != pdPASS);
|
|
|
|
}
|
|
|
|
|
|
|
|
err_t
|
|
|
|
sys_mutex_trylock(sys_mutex_t *pxMutex)
|
|
|
|
{
|
|
|
|
if (xSemaphoreTake(*pxMutex, 0) == pdPASS) return 0;
|
|
|
|
else return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Unlock a mutex
|
|
|
|
* @param mutex the mutex to unlock */
|
2018-01-23 07:17:46 +00:00
|
|
|
void ESP_IRAM_ATTR
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_mutex_unlock(sys_mutex_t *pxMutex)
|
|
|
|
{
|
|
|
|
xSemaphoreGive(*pxMutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Delete a semaphore
|
|
|
|
* @param mutex the mutex to delete */
|
|
|
|
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));
|
2016-08-17 15:08:22 +00:00
|
|
|
vQueueDelete(*pxMutex);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
// Creates and returns a new semaphore. The "count" argument specifies
|
|
|
|
// the initial state of the semaphore. TBD finish and test
|
|
|
|
err_t
|
|
|
|
sys_sem_new(sys_sem_t *sem, u8_t count)
|
|
|
|
{
|
|
|
|
err_t xReturn = ERR_MEM;
|
|
|
|
vSemaphoreCreateBinary(*sem);
|
|
|
|
|
|
|
|
if ((*sem) != NULL) {
|
|
|
|
if (count == 0) { // Means it can't be taken
|
|
|
|
xSemaphoreTake(*sem, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
xReturn = ERR_OK;
|
|
|
|
} else {
|
|
|
|
; // TBD need assert
|
|
|
|
}
|
|
|
|
|
|
|
|
return xReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
// Signals a semaphore
|
2018-01-23 07:17:46 +00:00
|
|
|
void ESP_IRAM_ATTR
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_sem_signal(sys_sem_t *sem)
|
|
|
|
{
|
2016-12-15 06:37:21 +00:00
|
|
|
xSemaphoreGive(*sem);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2018-05-03 08:41:10 +00:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
// Signals a semaphore (from ISR)
|
|
|
|
int sys_sem_signal_isr(sys_sem_t *sem)
|
|
|
|
{
|
|
|
|
BaseType_t woken = pdFALSE;
|
|
|
|
xSemaphoreGiveFromISR(*sem, &woken);
|
|
|
|
return woken == pdTRUE;
|
|
|
|
}
|
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
|
|
Blocks the thread while waiting for the semaphore to be
|
|
|
|
signaled. If the "timeout" argument is non-zero, the thread should
|
|
|
|
only be blocked for the specified time (measured in
|
|
|
|
milliseconds).
|
|
|
|
|
|
|
|
If the timeout argument is non-zero, the return value is the number of
|
|
|
|
milliseconds spent waiting for the semaphore to be signaled. If the
|
|
|
|
semaphore wasn't signaled within the specified time, the return value is
|
|
|
|
SYS_ARCH_TIMEOUT. If the thread didn't have to wait for the semaphore
|
|
|
|
(i.e., it was already signaled), the function may return zero.
|
|
|
|
|
|
|
|
Notice that lwIP implements a function with a similar name,
|
|
|
|
sys_sem_wait(), that uses the sys_arch_sem_wait() function.
|
|
|
|
*/
|
2018-01-23 07:17:46 +00:00
|
|
|
u32_t ESP_IRAM_ATTR
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout)
|
|
|
|
{
|
|
|
|
portTickType StartTime, EndTime, Elapsed;
|
|
|
|
unsigned long ulReturn;
|
|
|
|
|
|
|
|
StartTime = xTaskGetTickCount();
|
|
|
|
|
|
|
|
if (timeout != 0) {
|
2016-12-22 01:42:21 +00:00
|
|
|
if (xSemaphoreTake(*sem, timeout / portTICK_PERIOD_MS) == pdTRUE) {
|
2016-08-17 15:08:22 +00:00
|
|
|
EndTime = xTaskGetTickCount();
|
2016-12-22 01:42:21 +00:00
|
|
|
Elapsed = (EndTime - StartTime) * portTICK_PERIOD_MS;
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
if (Elapsed == 0) {
|
|
|
|
Elapsed = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ulReturn = Elapsed;
|
|
|
|
} else {
|
|
|
|
ulReturn = SYS_ARCH_TIMEOUT;
|
|
|
|
}
|
|
|
|
} else { // must block without a timeout
|
|
|
|
while (xSemaphoreTake(*sem, portMAX_DELAY) != pdTRUE);
|
|
|
|
|
|
|
|
EndTime = xTaskGetTickCount();
|
2016-12-22 01:42:21 +00:00
|
|
|
Elapsed = (EndTime - StartTime) * portTICK_PERIOD_MS;
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
if (Elapsed == 0) {
|
|
|
|
Elapsed = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ulReturn = Elapsed;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ulReturn ; // return time blocked
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
// Deallocates a semaphore
|
|
|
|
void
|
|
|
|
sys_sem_free(sys_sem_t *sem)
|
|
|
|
{
|
|
|
|
vSemaphoreDelete(*sem);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
// Creates an empty mailbox.
|
|
|
|
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) {
|
2016-10-27 06:11:01 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
// Posts the "msg" to the mailbox.
|
2018-01-23 07:17:46 +00:00
|
|
|
void ESP_IRAM_ATTR
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_mbox_post(sys_mbox_t *mbox, void *msg)
|
|
|
|
{
|
|
|
|
while (xQueueSendToBack((*mbox)->os_mbox, &msg, portMAX_DELAY) != pdTRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
2018-01-23 07:17:46 +00:00
|
|
|
err_t ESP_IRAM_ATTR
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_mbox_trypost(sys_mbox_t *mbox, void *msg)
|
|
|
|
{
|
|
|
|
err_t xReturn;
|
|
|
|
|
|
|
|
if (xQueueSend((*mbox)->os_mbox, &msg, (portTickType)0) == pdPASS) {
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
|
|
Blocks the thread until a message arrives in the mailbox, but does
|
|
|
|
not block the thread longer than "timeout" milliseconds (similar to
|
|
|
|
the sys_arch_sem_wait() function). The "msg" argument is a result
|
|
|
|
parameter that is set by the function (i.e., by doing "*msg =
|
|
|
|
ptr"). The "msg" parameter maybe NULL to indicate that the message
|
|
|
|
should be dropped.
|
|
|
|
|
|
|
|
The return values are the same as for the sys_arch_sem_wait() function:
|
|
|
|
Number of milliseconds spent waiting or SYS_ARCH_TIMEOUT if there was a
|
|
|
|
timeout.
|
|
|
|
|
|
|
|
Note that a function with a similar name, sys_mbox_fetch(), is
|
|
|
|
implemented by lwIP.
|
|
|
|
*/
|
2018-01-23 07:17:46 +00:00
|
|
|
u32_t ESP_IRAM_ATTR
|
2016-08-17 15:08:22 +00:00
|
|
|
sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout)
|
|
|
|
{
|
|
|
|
void *dummyptr;
|
|
|
|
portTickType StartTime, EndTime, Elapsed;
|
|
|
|
unsigned long ulReturn;
|
|
|
|
|
|
|
|
StartTime = xTaskGetTickCount();
|
|
|
|
if (msg == NULL) {
|
|
|
|
msg = &dummyptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*mbox == NULL){
|
|
|
|
*msg = NULL;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2018-11-07 02:52:33 +00:00
|
|
|
if (timeout == 0) {
|
|
|
|
timeout = portMAX_DELAY;
|
|
|
|
} else {
|
|
|
|
timeout = timeout / portTICK_PERIOD_MS;
|
|
|
|
}
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2018-11-07 02:52:33 +00:00
|
|
|
*msg = NULL;
|
|
|
|
if (pdTRUE == xQueueReceive((*mbox)->os_mbox, &(*msg), timeout)) {
|
2016-08-17 15:08:22 +00:00
|
|
|
EndTime = xTaskGetTickCount();
|
2016-12-22 01:42:21 +00:00
|
|
|
Elapsed = (EndTime - StartTime) * portTICK_PERIOD_MS;
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
if (Elapsed == 0) {
|
|
|
|
Elapsed = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ulReturn = Elapsed;
|
2018-11-07 02:52:33 +00:00
|
|
|
} else { // timed out blocking for message
|
|
|
|
ulReturn = SYS_ARCH_TIMEOUT;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ulReturn ; // return time blocked TBD test
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
u32_t
|
|
|
|
sys_arch_mbox_tryfetch(sys_mbox_t *mbox, void **msg)
|
|
|
|
{
|
|
|
|
void *pvDummy;
|
|
|
|
unsigned long ulReturn;
|
|
|
|
|
|
|
|
if (msg == NULL) {
|
|
|
|
msg = &pvDummy;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pdTRUE == xQueueReceive((*mbox)->os_mbox, &(*msg), 0)) {
|
|
|
|
ulReturn = ERR_OK;
|
|
|
|
} else {
|
|
|
|
ulReturn = SYS_MBOX_EMPTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ulReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
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));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
/*
|
|
|
|
Deallocates a mailbox. If there are messages still present in the
|
|
|
|
mailbox when the mailbox is deallocated, it is an indication of a
|
|
|
|
programming error in lwIP and the developer should be notified.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
sys_mbox_free(sys_mbox_t *mbox)
|
|
|
|
{
|
2018-11-07 02:52:33 +00:00
|
|
|
uint32_t mbox_message_num = 0;
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2018-11-07 02:52:33 +00:00
|
|
|
if ( (NULL == mbox) || (NULL == *mbox) ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mbox_message_num = uxQueueMessagesWaiting((*mbox)->os_mbox);
|
|
|
|
|
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("mbox free: mbox=%p os_mbox=%p owner=%p msg_num=%d\n",
|
|
|
|
*mbox, (*mbox)->os_mbox, (*mbox)->owner, mbox_message_num));
|
|
|
|
|
|
|
|
#if ESP_THREAD_SAFE
|
|
|
|
if ((*mbox)->owner) {
|
|
|
|
if (0 == mbox_message_num) {
|
|
|
|
/*
|
|
|
|
* If mbox->owner is not NULL, it indicates the mbox is recvmbox or acceptmbox,
|
|
|
|
* we need to post a NULL message to mbox in case some application tasks are blocked
|
|
|
|
* on this mbox
|
|
|
|
*/
|
|
|
|
if (sys_mbox_trypost(mbox, NULL) != ERR_OK) {
|
|
|
|
/* Should never be here because post a message to empty mbox should always be successful */
|
|
|
|
ESP_LOGW(TAG, "WARNING: failed to post NULL msg to mbox\n");
|
2016-08-17 15:08:22 +00:00
|
|
|
} else {
|
2018-11-07 02:52:33 +00:00
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("mbox free: post null successfully\n"));
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
}
|
2018-11-07 02:52:33 +00:00
|
|
|
(*mbox)->owner = NULL;
|
|
|
|
} else {
|
|
|
|
if (mbox_message_num > 1) {
|
|
|
|
ESP_LOGW(TAG, "WARNING: mbox has %d message, potential memory leaking\n", mbox_message_num);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2018-11-07 02:52:33 +00:00
|
|
|
if (mbox_message_num > 0) {
|
|
|
|
LWIP_DEBUGF(ESP_THREAD_SAFE_DEBUG, ("mbox free: reset mbox queue\n"));
|
|
|
|
xQueueReset((*mbox)->os_mbox);
|
|
|
|
}
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2018-11-07 02:52:33 +00:00
|
|
|
/* For recvmbox or acceptmbox, free them in netconn_free() when all sockets' API are returned */
|
|
|
|
vQueueDelete((*mbox)->os_mbox);
|
|
|
|
free(*mbox);
|
2018-12-20 06:03:11 +00:00
|
|
|
*mbox = NULL;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
2018-11-07 02:52:33 +00:00
|
|
|
#else
|
2016-08-17 15:08:22 +00:00
|
|
|
vQueueDelete((*mbox)->os_mbox);
|
|
|
|
free(*mbox);
|
|
|
|
*mbox = NULL;
|
2018-12-20 06:03:11 +00:00
|
|
|
#endif
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
|
|
Starts a new thread with priority "prio" that will begin its execution in the
|
|
|
|
function "thread()". The "arg" argument will be passed as an argument to the
|
|
|
|
thread() function. The id of the new thread is returned. Both the id and
|
|
|
|
the priority are system dependent.
|
|
|
|
*/
|
|
|
|
sys_thread_t
|
|
|
|
sys_thread_new(const char *name, lwip_thread_fn thread, void *arg, int stacksize, int prio)
|
|
|
|
{
|
2018-08-01 09:33:43 +00:00
|
|
|
xTaskHandle created_task;
|
2016-08-17 15:08:22 +00:00
|
|
|
portBASE_TYPE result;
|
|
|
|
|
2018-08-01 09:33:43 +00:00
|
|
|
result = xTaskCreatePinnedToCore(thread, name, stacksize, arg, prio, &created_task,
|
|
|
|
CONFIG_TCPIP_TASK_AFFINITY);
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2018-08-01 09:33:43 +00:00
|
|
|
if (result != pdPASS) {
|
2016-08-17 15:08:22 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2018-08-01 09:33:43 +00:00
|
|
|
|
|
|
|
return created_task;
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
// Initialize sys arch
|
|
|
|
void
|
|
|
|
sys_init(void)
|
|
|
|
{
|
2017-03-20 08:30:35 +00:00
|
|
|
if (ERR_OK != sys_mutex_new(&g_lwip_protect_mutex)) {
|
|
|
|
ESP_LOGE(TAG, "sys_init: failed to init lwip protect mutex\n");
|
|
|
|
}
|
2017-10-04 04:52:19 +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-03 05:56:55 +00:00
|
|
|
esp_vfs_lwip_sockets_register();
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
2017-01-20 11:05:38 +00:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
u32_t
|
|
|
|
sys_jiffies(void)
|
|
|
|
{
|
|
|
|
return xTaskGetTickCount();
|
|
|
|
}
|
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
u32_t
|
|
|
|
sys_now(void)
|
|
|
|
{
|
2017-09-04 06:47:11 +00:00
|
|
|
return (xTaskGetTickCount()*portTICK_PERIOD_MS);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
This optional function does a "fast" critical region protection and returns
|
|
|
|
the previous protection level. This function is only called during very short
|
|
|
|
critical regions. An embedded system which supports ISR-based drivers might
|
|
|
|
want to implement this function by disabling interrupts. Task-based systems
|
|
|
|
might want to implement this by using a mutex or disabling tasking. This
|
|
|
|
function should support recursive calls from the same task or interrupt. In
|
|
|
|
other words, sys_arch_protect() could be called while already protected. In
|
|
|
|
that case the return value indicates that it is already protected.
|
|
|
|
|
|
|
|
sys_arch_protect() is only required if your port is supporting an operating
|
|
|
|
system.
|
|
|
|
*/
|
|
|
|
sys_prot_t
|
|
|
|
sys_arch_protect(void)
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------------------*/
|
|
|
|
/*
|
|
|
|
This optional function does a "fast" set of critical region protection to the
|
|
|
|
value specified by pval. See the documentation for sys_arch_protect() for
|
|
|
|
more information. This function is only required if your port is supporting
|
|
|
|
an operating system.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
sys_arch_unprotect(sys_prot_t 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
|
|
|
/*
|
2016-08-19 09:23:04 +00:00
|
|
|
* get per thread semphore
|
|
|
|
*/
|
|
|
|
sys_sem_t* sys_thread_sem_get(void)
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
2017-10-04 04:52:19 +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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-19 09:23:04 +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
|
|
|
}
|
|
|
|
|
2016-08-19 09:23:04 +00:00
|
|
|
void sys_thread_sem_deinit(void)
|
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
void sys_delay_ms(uint32_t ms)
|
|
|
|
{
|
2016-12-22 01:42:21 +00:00
|
|
|
vTaskDelay(ms / portTICK_PERIOD_MS);
|
2016-08-17 15:08:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|