12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013 |
- /*
- * 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. */
- #include "lwip/debug.h"
- #include "lwip/def.h"
- #include "lwip/sys.h"
- #include "lwip/mem.h"
- #include "lwip/stats.h"
- #include "FreeRTOS.h"
- #include "task.h"
- xTaskHandle xTaskGetCurrentTaskHandle( void ) PRIVILEGED_FUNCTION;
- /* This is the number of threads that can be started with sys_thread_new() */
- #define SYS_THREAD_MAX 6
- static u16_t s_nextthread = 0;
- /*-----------------------------------------------------------------------------------*/
- // Creates an empty mailbox.
- err_t sys_mbox_new(sys_mbox_t *mbox, int size)
- {
- //(void ) size;
-
- //*mbox = xQueueCreate( archMESG_QUEUE_LENGTH, sizeof( void * ) );
- *mbox = xQueueCreate( size, sizeof( void * ) );
- #if SYS_STATS
- ++lwip_stats.sys.mbox.used;
- if (lwip_stats.sys.mbox.max < lwip_stats.sys.mbox.used) {
- lwip_stats.sys.mbox.max = lwip_stats.sys.mbox.used;
- }
- #endif /* SYS_STATS */
- if (*mbox == NULL)
- return ERR_MEM;
-
- return ERR_OK;
- }
- /*-----------------------------------------------------------------------------------*/
- /*
- 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)
- {
- if( uxQueueMessagesWaiting( *mbox ) )
- {
- /* Line for breakpoint. Should never break here! */
- portNOP();
- #if SYS_STATS
- lwip_stats.sys.mbox.err++;
- #endif /* SYS_STATS */
-
- // TODO notify the user of failure.
- }
- vQueueDelete( *mbox );
- #if SYS_STATS
- --lwip_stats.sys.mbox.used;
- #endif /* SYS_STATS */
- }
- /*-----------------------------------------------------------------------------------*/
- // Posts the "msg" to the mailbox.
- void sys_mbox_post(sys_mbox_t *mbox, void *data)
- {
- while ( xQueueSendToBack(*mbox, &data, portMAX_DELAY ) != pdTRUE ){}
- }
- /*-----------------------------------------------------------------------------------*/
- // Try to post the "msg" to the mailbox.
- err_t sys_mbox_trypost(sys_mbox_t *mbox, void *msg)
- {
- err_t result;
- if ( xQueueSend( *mbox, &msg, 0 ) == pdPASS )
- {
- result = ERR_OK;
- }
- else {
- // could not post, queue must be full
- result = ERR_MEM;
-
- #if SYS_STATS
- lwip_stats.sys.mbox.err++;
- #endif /* SYS_STATS */
-
- }
- return result;
- }
- /*-----------------------------------------------------------------------------------*/
- /*
- 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.
- */
- u32_t sys_arch_mbox_fetch(sys_mbox_t *mbox, void **msg, u32_t timeout)
- {
- void *dummyptr;
- portTickType StartTime, EndTime, Elapsed;
- StartTime = xTaskGetTickCount();
- if ( msg == NULL )
- {
- msg = &dummyptr;
- }
-
- if ( timeout != 0 )
- {
- if ( pdTRUE == xQueueReceive( *mbox, &(*msg), timeout / portTICK_RATE_MS ) )
- {
- EndTime = xTaskGetTickCount();
- Elapsed = (EndTime - StartTime) * portTICK_RATE_MS;
-
- return ( Elapsed );
- }
- else // timed out blocking for message
- {
- *msg = NULL;
-
- return SYS_ARCH_TIMEOUT;
- }
- }
- else // block forever for a message.
- {
- while( pdTRUE != xQueueReceive( *mbox, &(*msg), portMAX_DELAY ) ){} // time is arbitrary
- EndTime = xTaskGetTickCount();
- Elapsed = (EndTime - StartTime) * portTICK_RATE_MS;
-
- return ( Elapsed ); // return time blocked TODO test
- }
- }
- /*-----------------------------------------------------------------------------------*/
- /*
- Similar to sys_arch_mbox_fetch, but if message is not ready immediately, we'll
- return with SYS_MBOX_EMPTY. On success, 0 is returned.
- */
- u32_t sys_arch_mbox_tryfetch(sys_mbox_t *mbox, void **msg)
- {
- void *dummyptr;
- if ( msg == NULL )
- {
- msg = &dummyptr;
- }
- if ( pdTRUE == xQueueReceive( *mbox, &(*msg), 0 ) )
- {
- return ERR_OK;
- }
- else
- {
- return SYS_MBOX_EMPTY;
- }
- }
- /*----------------------------------------------------------------------------------*/
- int sys_mbox_valid(sys_mbox_t *mbox)
- {
- if (*mbox == SYS_MBOX_NULL)
- return 0;
- else
- return 1;
- }
- /*-----------------------------------------------------------------------------------*/
- void sys_mbox_set_invalid(sys_mbox_t *mbox)
- {
- *mbox = SYS_MBOX_NULL;
- }
- /*-----------------------------------------------------------------------------------*/
- // Creates a new semaphore. The "count" argument specifies
- // the initial state of the semaphore.
- err_t sys_sem_new(sys_sem_t *sem, u8_t count)
- {
- vSemaphoreCreateBinary(*sem );
- if(*sem == NULL)
- {
- #if SYS_STATS
- ++lwip_stats.sys.sem.err;
- #endif /* SYS_STATS */
- return ERR_MEM;
- }
-
- if(count == 0) // Means it can't be taken
- {
- xSemaphoreTake(*sem,1);
- }
- #if SYS_STATS
- ++lwip_stats.sys.sem.used;
- if (lwip_stats.sys.sem.max < lwip_stats.sys.sem.used) {
- lwip_stats.sys.sem.max = lwip_stats.sys.sem.used;
- }
- #endif /* SYS_STATS */
-
- return ERR_OK;
- }
- /*-----------------------------------------------------------------------------------*/
- /*
- 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.
- */
- u32_t sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout)
- {
- portTickType StartTime, EndTime, Elapsed;
- StartTime = xTaskGetTickCount();
- if( timeout != 0)
- {
- if( xSemaphoreTake( *sem, timeout / portTICK_RATE_MS ) == pdTRUE )
- {
- EndTime = xTaskGetTickCount();
- Elapsed = (EndTime - StartTime) * portTICK_RATE_MS;
-
- return (Elapsed); // return time blocked TODO test
- }
- else
- {
- return SYS_ARCH_TIMEOUT;
- }
- }
- else // must block without a timeout
- {
- while( xSemaphoreTake(*sem, portMAX_DELAY) != pdTRUE){}
- EndTime = xTaskGetTickCount();
- Elapsed = (EndTime - StartTime) * portTICK_RATE_MS;
- return ( Elapsed ); // return time blocked
-
- }
- }
- /*-----------------------------------------------------------------------------------*/
- // Signals a semaphore
- void sys_sem_signal(sys_sem_t *sem)
- {
- xSemaphoreGive(*sem);
- }
- /*-----------------------------------------------------------------------------------*/
- // Deallocates a semaphore
- void sys_sem_free(sys_sem_t *sem)
- {
- #if SYS_STATS
- --lwip_stats.sys.sem.used;
- #endif /* SYS_STATS */
-
- vQueueDelete(*sem);
- }
- /*-----------------------------------------------------------------------------------*/
- int sys_sem_valid(sys_sem_t *sem)
- {
- if (*sem == SYS_SEM_NULL)
- return 0;
- else
- return 1;
- }
- /*-----------------------------------------------------------------------------------*/
- void sys_sem_set_invalid(sys_sem_t *sem)
- {
- *sem = SYS_SEM_NULL;
- }
- /*-----------------------------------------------------------------------------------*/
- // Initialize sys arch
- void sys_init(void)
- {
- // keep track of how many threads have been created
- s_nextthread = 0;
- }
- /*-----------------------------------------------------------------------------------*/
- /* Mutexes*/
- /*-----------------------------------------------------------------------------------*/
- /*-----------------------------------------------------------------------------------*/
- #if LWIP_COMPAT_MUTEX == 0
- /* Create a new mutex*/
- err_t sys_mutex_new(sys_mutex_t *mutex) {
- *mutex = xSemaphoreCreateMutex();
- if(*mutex == NULL)
- {
- #if SYS_STATS
- ++lwip_stats.sys.mutex.err;
- #endif /* SYS_STATS */
- return ERR_MEM;
- }
- #if SYS_STATS
- ++lwip_stats.sys.mutex.used;
- if (lwip_stats.sys.mutex.max < lwip_stats.sys.mutex.used) {
- lwip_stats.sys.mutex.max = lwip_stats.sys.mutex.used;
- }
- #endif /* SYS_STATS */
- return ERR_OK;
- }
- /*-----------------------------------------------------------------------------------*/
- /* Deallocate a mutex*/
- void sys_mutex_free(sys_mutex_t *mutex)
- {
- #if SYS_STATS
- --lwip_stats.sys.mutex.used;
- #endif /* SYS_STATS */
-
- vQueueDelete(*mutex);
- }
- /*-----------------------------------------------------------------------------------*/
- /* Lock a mutex*/
- void sys_mutex_lock(sys_mutex_t *mutex)
- {
- sys_arch_sem_wait(mutex, 0);
- }
- /*-----------------------------------------------------------------------------------*/
- /* Unlock a mutex*/
- void sys_mutex_unlock(sys_mutex_t *mutex)
- {
- xSemaphoreGive(*mutex);
- }
- #endif /*LWIP_COMPAT_MUTEX*/
- /*-----------------------------------------------------------------------------------*/
- // TODO
- /*-----------------------------------------------------------------------------------*/
- /*
- 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)
- {
- xTaskHandle CreatedTask;
- int result;
- if ( s_nextthread < SYS_THREAD_MAX )
- {
- result = xTaskCreate( thread, name, stacksize, arg, prio, &CreatedTask );
- // For each task created, store the task handle (pid) in the timers array.
- // This scheme doesn't allow for threads to be deleted
- //s_timeoutlist[s_nextthread++].pid = CreatedTask;
- if(result == pdPASS)
- {
- return CreatedTask;
- }
- else
- {
- return NULL;
- }
- }
- else
- {
- return NULL;
- }
- }
- /*
- 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)
- {
- vPortEnterCritical();
- return 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)
- {
- ( void ) pval;
- vPortExitCritical();
- }
- /*
- * Prints an assertion messages and aborts execution.
- */
- void sys_assert( const char *msg )
- {
- ( void ) msg;
- /*FSL:only needed for debugging
- printf(msg);
- printf("\n\r");
- */
- vPortEnterCritical( );
- for(;;)
- ;
- }
- u32_t sys_jiffies(void)
- {
- return (u32_t)(xTaskGetTickCount()*portTICK_RATE_MS);
- }
- u32_t sys_now(void)
- {
- return xTaskGetTickCount();
- }
- #if 0
- /*
- * Copyright (c) 2017 Simon Goldschmidt
- * 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: Simon Goldschmidt
- *
- */
- #include <lwip/opt.h>
- #include <lwip/arch.h>
- #if !NO_SYS
- #include "sys_arch.h"
- #endif
- #include <lwip/stats.h>
- #include <lwip/debug.h>
- #include <lwip/sys.h>
- #include <string.h>
- #define SYS_THREAD_MAX 6
- static u16_t s_nextthread = 0;
- u32_t lwip_sys_now;
- u32_t
- sys_jiffies(void)
- {
- return lwip_sys_now;
- }
- u32_t
- sys_now(void)
- {
- return lwip_sys_now;
- }
- void
- sys_init(void)
- {
- }
- #if !NO_SYS
- test_sys_arch_waiting_fn the_waiting_fn;
- void
- test_sys_arch_wait_callback(test_sys_arch_waiting_fn waiting_fn)
- {
- the_waiting_fn = waiting_fn;
- }
- err_t
- sys_sem_new(sys_sem_t *sem, u8_t count)
- {
- // LWIP_ASSERT("sem != NULL", sem != NULL);
- // *sem = count + 1;
- *sem = xSemaphoreCreateBinary();/* 创建二值信号量 */
-
- if(*sem == NULL)
- {
- return ERR_BUF;
- }
- if(count == 0)
- {
- xSemaphoreTake(*sem,0);/* 获取信号量 */
- }
- else
- {
- xSemaphoreGive(*sem);/* 释放信号量 */
- }
- return ERR_OK;
- }
- void
- sys_sem_free(sys_sem_t *sem)
- {
- // LWIP_ASSERT("sem != NULL", sem != NULL);
- // *sem = 0;
- vSemaphoreDelete(*sem);/* 删除信号量 */
- }
- void
- sys_sem_set_invalid(sys_sem_t *sem)
- {
- LWIP_ASSERT("sem != NULL", sem != NULL);
- *sem = 0;
- }
- /* semaphores are 1-based because RAM is initialized as 0, which would be valid */
- u32_t
- sys_arch_sem_wait(sys_sem_t *sem, u32_t timeout)
- {
- portTickType StartTime,Endtime,Elapsed;
- StartTime = xTaskGetTickCount();
- if(timeout != 0 )/* 有超时时间设定 */
- {
- if(xSemaphoreTake(*sem,timeout/portTICK_RATE_MS) == pdTRUE)
- {
- Endtime = xTaskGetTickCount();
- Elapsed = (Endtime - StartTime) * portTICK_RATE_MS;
-
- return Elapsed;
- }
- else
- {
- return SYS_ARCH_TIMEOUT;
- }
- }
- else/* 无超时时间,死等 */
- {
- xSemaphoreTake(*sem,portMAX_DELAY);
- Endtime = xTaskGetTickCount();
- Elapsed = (Endtime - StartTime) * portTICK_RATE_MS;
- return Elapsed;
- }
- #if 0
- u32_t ret = 0;
- LWIP_ASSERT("sem != NULL", sem != NULL);
- LWIP_ASSERT("*sem > 0", *sem > 0);
- if (*sem == 1) {
- /* need to wait */
- if(!timeout)
- {
- /* wait infinite */
- LWIP_ASSERT("cannot wait without waiting callback", the_waiting_fn != NULL);
- do {
- int expectSomething = the_waiting_fn(sem, NULL);
- LWIP_ASSERT("*sem > 0", *sem > 0);
- LWIP_ASSERT("expecting a semaphore count but it's 0", !expectSomething || (*sem > 1));
- ret++;
- if (ret == SYS_ARCH_TIMEOUT) {
- ret--;
- }
- } while(*sem == 1);
- }
- else
- {
- if (the_waiting_fn) {
- int expectSomething = the_waiting_fn(sem, NULL);
- LWIP_ASSERT("expecting a semaphore count but it's 0", !expectSomething || (*sem > 1));
- }
- LWIP_ASSERT("*sem > 0", *sem > 0);
- if (*sem == 1) {
- return SYS_ARCH_TIMEOUT;
- }
- ret = 1;
- }
- }
- LWIP_ASSERT("*sem > 0", *sem > 0);
- (*sem)--;
- LWIP_ASSERT("*sem > 0", *sem > 0);
- /* return the time we waited for the sem */
- return ret;
- #endif
- }
- void
- sys_sem_signal(sys_sem_t *sem)
- {
- // LWIP_ASSERT("sem != NULL", sem != NULL);
- // LWIP_ASSERT("*sem > 0", *sem > 0);
- // (*sem)++;
- // LWIP_ASSERT("*sem > 0", *sem > 0);
- xSemaphoreGive(*sem);/* 释放信号量 */
- }
- int sys_sem_valid(sys_sem_t *sem)
- {
- return ERR_OK;
- }
-
- err_t
- sys_mutex_new(sys_mutex_t *mutex)
- {
- // LWIP_ASSERT("mutex != NULL", mutex != NULL);
- // *mutex = 1; /* 1 allocated */
-
- return ERR_OK;
- }
- void
- sys_mutex_free(sys_mutex_t *mutex)
- {
- /* parameter check */
- // LWIP_ASSERT("mutex != NULL", mutex != NULL);
- // LWIP_ASSERT("*mutex >= 1", *mutex >= 1);
- // *mutex = 0;
- }
- void
- sys_mutex_set_invalid(sys_mutex_t *mutex)
- {
- // LWIP_ASSERT("mutex != NULL", mutex != NULL);
- // *mutex = 0;
- }
- void
- sys_mutex_lock(sys_mutex_t *mutex)
- {
- /* nothing to do, no multithreading supported */
- #if 0
- LWIP_ASSERT("mutex != NULL", mutex != NULL);
- /* check that the mutext is valid and unlocked (no nested locking) */
- LWIP_ASSERT("*mutex >= 1", *mutex == 1);
- /* we count up just to check the correct pairing of lock/unlock */
- (*mutex)++;
- LWIP_ASSERT("*mutex >= 1", *mutex >= 1);
- #endif
- }
- void
- sys_mutex_unlock(sys_mutex_t *mutex)
- {
- /* nothing to do, no multithreading supported */
- #if 0
- LWIP_ASSERT("mutex != NULL", mutex != NULL);
- LWIP_ASSERT("*mutex >= 1", *mutex >= 1);
- /* we count down just to check the correct pairing of lock/unlock */
- (*mutex)--;
- LWIP_ASSERT("*mutex >= 1", *mutex >= 1);
- #endif
- }
- sys_thread_t
- sys_thread_new(const char *name, lwip_thread_fn function, void *arg, int stacksize, int prio)
- {
- xTaskHandle network_task;
- int result;
- if(s_nextthread < SYS_THREAD_MAX)
- result = xTaskCreate(function,(portCHAR *)name,stacksize,arg,prio,&network_task);
- if(result == pdPASS)
- return network_task;
- else
- return NULL;
- #if 0
- LWIP_UNUSED_ARG(name);
- LWIP_UNUSED_ARG(function);
- LWIP_UNUSED_ARG(arg);
- LWIP_UNUSED_ARG(stacksize);
- LWIP_UNUSED_ARG(prio);
- /* threads not supported */
- return 0;
- #endif
- }
- err_t
- sys_mbox_new(sys_mbox_t *mbox, int size)
- {
- *mbox = xQueueCreate(size,sizeof(void *));
- #if 0
- int mboxsize = size;
- LWIP_ASSERT("mbox != NULL", mbox != NULL);
- LWIP_ASSERT("size >= 0", size >= 0);
- if (size == 0) {
- mboxsize = 1024;
- }
- mbox->head = mbox->tail = 0;
- mbox->sem = mbox; /* just point to something for sys_mbox_valid() */
- mbox->q_mem = (void**)malloc(sizeof(void*)*mboxsize);
- mbox->size = mboxsize;
- mbox->used = 0;
- memset(mbox->q_mem, 0, sizeof(void*)*mboxsize);
- #endif
- return ERR_OK;
- }
- void
- sys_mbox_free(sys_mbox_t *mbox)
- {
- if(uxQueueMessagesWaiting(*mbox))
- {
- portNOP();
- }
- vQueueDelete(*mbox);
- /* parameter check */
- #if 0
- LWIP_ASSERT("mbox != NULL", mbox != NULL);
- LWIP_ASSERT("mbox->sem != NULL", mbox->sem != NULL);
- LWIP_ASSERT("mbox->sem == mbox", mbox->sem == mbox);
- LWIP_ASSERT("mbox->q_mem != NULL", mbox->q_mem != NULL);
- mbox->sem = NULL;
- free(mbox->q_mem);
- mbox->q_mem = NULL;
- #endif
- }
- void
- sys_mbox_set_invalid(sys_mbox_t *mbox)
- {
- #if 0
- LWIP_ASSERT("mbox != NULL", mbox != NULL);
- LWIP_ASSERT("mbox->q_mem == NULL", mbox->q_mem == NULL);
- mbox->sem = NULL;
- mbox->q_mem = NULL;
- #endif
- }
- void
- sys_mbox_post(sys_mbox_t *q, void *msg)
- {
- while(xQueueSendToBack(*q,&msg,portMAX_DELAY) != pdTRUE);
- #if 0
- LWIP_ASSERT("q != SYS_MBOX_NULL", q != SYS_MBOX_NULL);
- LWIP_ASSERT("q->sem == q", q->sem == q);
- LWIP_ASSERT("q->q_mem != NULL", q->q_mem != NULL);
- LWIP_ASSERT("q->used >= 0", q->used >= 0);
- LWIP_ASSERT("q->size > 0", q->size > 0);
- LWIP_ASSERT("mbox already full", q->used < q->size);
- q->q_mem[q->head] = msg;
- q->head++;
- if (q->head >= (unsigned int)q->size) {
- q->head = 0;
- }
- LWIP_ASSERT("mbox is full!", q->head != q->tail);
- q->used++;
- #endif
- }
- err_t
- sys_mbox_trypost(sys_mbox_t *q, void *msg)
- {
- if(xQueueSend(*q,&msg,0) == pdPASS)
- return ERR_OK;
- else
- return ERR_MEM;
- #if 0
- LWIP_ASSERT("q != SYS_MBOX_NULL", q != SYS_MBOX_NULL);
- LWIP_ASSERT("q->sem == q", q->sem == q);
- LWIP_ASSERT("q->q_mem != NULL", q->q_mem != NULL);
- LWIP_ASSERT("q->used >= 0", q->used >= 0);
- LWIP_ASSERT("q->size > 0", q->size > 0);
- LWIP_ASSERT("q->used <= q->size", q->used <= q->size);
- if (q->used == q->size) {
- return ERR_MEM;
- }
- sys_mbox_post(q, msg);
- return ERR_OK;
- #endif
- }
- err_t
- sys_mbox_trypost_fromisr(sys_mbox_t *q, void *msg)
- {
- return sys_mbox_trypost(q, msg);
- }
- u32_t
- sys_arch_mbox_fetch(sys_mbox_t *q, void **msg, u32_t timeout)
- {
- portTickType StartTime,Endtime,Elapsed;
- void *dummuyptr;
- StartTime = xTaskGetTickCount();
- if(msg == NULL)
- msg = &dummuyptr;
-
- if(timeout != 0)
- {
- if(pdTRUE == xQueueReceive(*q,&(*msg),timeout/portTICK_RATE_MS))
- {
- Endtime = xTaskGetTickCount();
- Elapsed = (Endtime - StartTime)*portTICK_RATE_MS;
- return Elapsed;
- }
- else
- {
- *msg = NULL;
- return SYS_ARCH_TIMEOUT;
- }
- }
- else
- {
- while(pdTRUE != xQueueReceive(*q,&(*msg),portMAX_DELAY));
- Endtime = xTaskGetTickCount();
- Elapsed = (Endtime - StartTime)*portTICK_RATE_MS;
- return Elapsed;
- }
- #if 0
- u32_t ret = 0;
- u32_t ret2;
- LWIP_ASSERT("q != SYS_MBOX_NULL", q != SYS_MBOX_NULL);
- LWIP_ASSERT("q->sem == q", q->sem == q);
- LWIP_ASSERT("q->q_mem != NULL", q->q_mem != NULL);
- LWIP_ASSERT("q->used >= 0", q->used >= 0);
- LWIP_ASSERT("q->size > 0", q->size > 0);
- if (q->used == 0) {
- /* need to wait */
- /* need to wait */
- if(!timeout)
- {
- /* wait infinite */
- LWIP_ASSERT("cannot wait without waiting callback", the_waiting_fn != NULL);
- do {
- int expectSomething = the_waiting_fn(NULL, q);
- LWIP_ASSERT("q->used >= 0", q->used >= 0);
- LWIP_ASSERT("expecting item available but it's 0", !expectSomething || (q->used > 0));
- ret++;
- if (ret == SYS_ARCH_TIMEOUT) {
- ret--;
- }
- } while(q->used == 0);
- }
- else
- {
- if (the_waiting_fn) {
- int expectSomething = the_waiting_fn(NULL, q);
- LWIP_ASSERT("expecting item available count but it's 0", !expectSomething || (q->used > 0));
- }
- LWIP_ASSERT("q->used >= 0", q->used >= 0);
- if (q->used == 0) {
- if(msg) {
- *msg = NULL;
- }
- return SYS_ARCH_TIMEOUT;
- }
- ret = 1;
- }
- }
- LWIP_ASSERT("q->used > 0", q->used > 0);
- ret2 = sys_arch_mbox_tryfetch(q, msg);
- LWIP_ASSERT("got no message", ret2 == 0);
- return ret;
- #endif
- }
- u32_t
- sys_arch_mbox_tryfetch(sys_mbox_t *q, void **msg)
- {
- void *dummuyptr;
- if(msg == NULL)
- msg = &dummuyptr;
- if(pdTRUE == xQueueReceive(*q,&(*msg),0))
- {
- return ERR_OK;
- }
- else
- {
- return SYS_MBOX_EMPTY;
- }
- #if 0
- LWIP_ASSERT("q != SYS_MBOX_NULL", q != SYS_MBOX_NULL);
- LWIP_ASSERT("q->sem == q", q->sem == q);
- LWIP_ASSERT("q->q_mem != NULL", q->q_mem != NULL);
- LWIP_ASSERT("q->used >= 0", q->used >= 0);
- LWIP_ASSERT("q->size > 0", q->size > 0);
- if (!q->used) {
- return SYS_ARCH_TIMEOUT;
- }
- if(msg) {
- *msg = q->q_mem[q->tail];
- }
- q->tail++;
- if (q->tail >= (unsigned int)q->size) {
- q->tail = 0;
- }
- q->used--;
- LWIP_ASSERT("q->used >= 0", q->used >= 0);
- return 0;
- #endif
- }
- sys_prot_t sys_arch_protect(void)
- {
- vPortEnterCritical();
- return 1;
- }
- void sys_arch_unprotect(sys_prot_t pval)
- {
- (void) pval;
- vPortExitCritical();
- }
- void sys_assert(const char *msg)
- {
- (void)msg;
- vPortEnterCritical();
- for(;;);
- }
- int sys_mbox_valid(sys_mbox_t *mbox)
- {
- //return ERR_OK;
- if(mbox == NULL) {
- return 0;
- }
- else {
- return 1;
- }
- }
- #if LWIP_NETCONN_SEM_PER_THREAD
- #error LWIP_NETCONN_SEM_PER_THREAD==1 not supported
- #endif /* LWIP_NETCONN_SEM_PER_THREAD */
- #endif /* !NO_SYS */
- #endif
|