]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/timers.c
Changes in common files:
[freertos] / FreeRTOS / Source / timers.c
1 /*\r
2     FreeRTOS V8.2.2 - Copyright (C) 2015 Real Time Engineers Ltd.\r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     This file is part of the FreeRTOS distribution.\r
8 \r
9     FreeRTOS is free software; you can redistribute it and/or modify it under\r
10     the terms of the GNU General Public License (version 2) as published by the\r
11     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
12 \r
13     ***************************************************************************\r
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
16     >>!   obliged to provide the source code for proprietary components     !<<\r
17     >>!   outside of the FreeRTOS kernel.                                   !<<\r
18     ***************************************************************************\r
19 \r
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
23     link: http://www.freertos.org/a00114.html\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    FreeRTOS provides completely free yet professionally developed,    *\r
28      *    robust, strictly quality controlled, supported, and cross          *\r
29      *    platform software that is more than just the market leader, it     *\r
30      *    is the industry's de facto standard.                               *\r
31      *                                                                       *\r
32      *    Help yourself get started quickly while simultaneously helping     *\r
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
34      *    tutorial book, reference manual, or both:                          *\r
35      *    http://www.FreeRTOS.org/Documentation                              *\r
36      *                                                                       *\r
37     ***************************************************************************\r
38 \r
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
40     the FAQ page "My application does not run, what could be wrong?".  Have you\r
41     defined configASSERT()?\r
42 \r
43     http://www.FreeRTOS.org/support - In return for receiving this top quality\r
44     embedded software for free we request you assist our global community by\r
45     participating in the support forum.\r
46 \r
47     http://www.FreeRTOS.org/training - Investing in training allows your team to\r
48     be as productive as possible as early as possible.  Now you can receive\r
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
50     Ltd, and the world's leading authority on the world's leading RTOS.\r
51 \r
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
55 \r
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
58 \r
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
61     licenses offer ticketed support, indemnification and commercial middleware.\r
62 \r
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
64     engineered and independently SIL3 certified version for use in safety and\r
65     mission critical applications that require provable dependability.\r
66 \r
67     1 tab == 4 spaces!\r
68 */\r
69 \r
70 /* Standard includes. */\r
71 #include <stdlib.h>\r
72 \r
73 /* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining\r
74 all the API functions to use the MPU wrappers.  That should only be done when\r
75 task.h is included from an application file. */\r
76 #define MPU_WRAPPERS_INCLUDED_FROM_API_FILE\r
77 \r
78 #include "FreeRTOS.h"\r
79 #include "task.h"\r
80 #include "queue.h"\r
81 #include "timers.h"\r
82 \r
83 #if ( INCLUDE_xTimerPendFunctionCall == 1 ) && ( configUSE_TIMERS == 0 )\r
84         #error configUSE_TIMERS must be set to 1 to make the xTimerPendFunctionCall() function available.\r
85 #endif\r
86 \r
87 /* Lint e961 and e750 are suppressed as a MISRA exception justified because the\r
88 MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the\r
89 header files above, but not in this file, in order to generate the correct\r
90 privileged Vs unprivileged linkage and placement. */\r
91 #undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */\r
92 \r
93 \r
94 /* This entire source file will be skipped if the application is not configured\r
95 to include software timer functionality.  This #if is closed at the very bottom\r
96 of this file.  If you want to include software timer functionality then ensure\r
97 configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */\r
98 #if ( configUSE_TIMERS == 1 )\r
99 \r
100 /* Misc definitions. */\r
101 #define tmrNO_DELAY             ( TickType_t ) 0U\r
102 \r
103 /* The definition of the timers themselves. */\r
104 typedef struct tmrTimerControl\r
105 {\r
106         const char                              *pcTimerName;           /*<< Text name.  This is not used by the kernel, it is included simply to make debugging easier. */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */\r
107         ListItem_t                              xTimerListItem;         /*<< Standard linked list item as used by all kernel features for event management. */\r
108         TickType_t                              xTimerPeriodInTicks;/*<< How quickly and often the timer expires. */\r
109         UBaseType_t                             uxAutoReload;           /*<< Set to pdTRUE if the timer should be automatically restarted once expired.  Set to pdFALSE if the timer is, in effect, a one-shot timer. */\r
110         void                                    *pvTimerID;                     /*<< An ID to identify the timer.  This allows the timer to be identified when the same callback is used for multiple timers. */\r
111         TimerCallbackFunction_t pxCallbackFunction;     /*<< The function that will be called when the timer expires. */\r
112         #if( configUSE_TRACE_FACILITY == 1 )\r
113                 UBaseType_t                     uxTimerNumber;          /*<< An ID assigned by trace tools such as FreeRTOS+Trace */\r
114         #endif\r
115 } xTIMER;\r
116 \r
117 /* The old xTIMER name is maintained above then typedefed to the new Timer_t\r
118 name below to enable the use of older kernel aware debuggers. */\r
119 typedef xTIMER Timer_t;\r
120 \r
121 /* The definition of messages that can be sent and received on the timer queue.\r
122 Two types of message can be queued - messages that manipulate a software timer,\r
123 and messages that request the execution of a non-timer related callback.  The\r
124 two message types are defined in two separate structures, xTimerParametersType\r
125 and xCallbackParametersType respectively. */\r
126 typedef struct tmrTimerParameters\r
127 {\r
128         TickType_t                      xMessageValue;          /*<< An optional value used by a subset of commands, for example, when changing the period of a timer. */\r
129         Timer_t *                       pxTimer;                        /*<< The timer to which the command will be applied. */\r
130 } TimerParameter_t;\r
131 \r
132 \r
133 typedef struct tmrCallbackParameters\r
134 {\r
135         PendedFunction_t        pxCallbackFunction;     /* << The callback function to execute. */\r
136         void *pvParameter1;                                             /* << The value that will be used as the callback functions first parameter. */\r
137         uint32_t ulParameter2;                                  /* << The value that will be used as the callback functions second parameter. */\r
138 } CallbackParameters_t;\r
139 \r
140 /* The structure that contains the two message types, along with an identifier\r
141 that is used to determine which message type is valid. */\r
142 typedef struct tmrTimerQueueMessage\r
143 {\r
144         BaseType_t                      xMessageID;                     /*<< The command being sent to the timer service task. */\r
145         union\r
146         {\r
147                 TimerParameter_t xTimerParameters;\r
148 \r
149                 /* Don't include xCallbackParameters if it is not going to be used as\r
150                 it makes the structure (and therefore the timer queue) larger. */\r
151                 #if ( INCLUDE_xTimerPendFunctionCall == 1 )\r
152                         CallbackParameters_t xCallbackParameters;\r
153                 #endif /* INCLUDE_xTimerPendFunctionCall */\r
154         } u;\r
155 } DaemonTaskMessage_t;\r
156 \r
157 /*lint -e956 A manual analysis and inspection has been used to determine which\r
158 static variables must be declared volatile. */\r
159 \r
160 /* The list in which active timers are stored.  Timers are referenced in expire\r
161 time order, with the nearest expiry time at the front of the list.  Only the\r
162 timer service task is allowed to access these lists. */\r
163 PRIVILEGED_DATA static List_t xActiveTimerList1;\r
164 PRIVILEGED_DATA static List_t xActiveTimerList2;\r
165 PRIVILEGED_DATA static List_t *pxCurrentTimerList;\r
166 PRIVILEGED_DATA static List_t *pxOverflowTimerList;\r
167 \r
168 /* A queue that is used to send commands to the timer service task. */\r
169 PRIVILEGED_DATA static QueueHandle_t xTimerQueue = NULL;\r
170 \r
171 #if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )\r
172 \r
173         PRIVILEGED_DATA static TaskHandle_t xTimerTaskHandle = NULL;\r
174 \r
175 #endif\r
176 \r
177 /*lint +e956 */\r
178 \r
179 /*-----------------------------------------------------------*/\r
180 \r
181 /*\r
182  * Initialise the infrastructure used by the timer service task if it has not\r
183  * been initialised already.\r
184  */\r
185 static void prvCheckForValidListAndQueue( void ) PRIVILEGED_FUNCTION;\r
186 \r
187 /*\r
188  * The timer service task (daemon).  Timer functionality is controlled by this\r
189  * task.  Other tasks communicate with the timer service task using the\r
190  * xTimerQueue queue.\r
191  */\r
192 static void prvTimerTask( void *pvParameters ) PRIVILEGED_FUNCTION;\r
193 \r
194 /*\r
195  * Called by the timer service task to interpret and process a command it\r
196  * received on the timer queue.\r
197  */\r
198 static void prvProcessReceivedCommands( void ) PRIVILEGED_FUNCTION;\r
199 \r
200 /*\r
201  * Insert the timer into either xActiveTimerList1, or xActiveTimerList2,\r
202  * depending on if the expire time causes a timer counter overflow.\r
203  */\r
204 static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime ) PRIVILEGED_FUNCTION;\r
205 \r
206 /*\r
207  * An active timer has reached its expire time.  Reload the timer if it is an\r
208  * auto reload timer, then call its callback.\r
209  */\r
210 static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow ) PRIVILEGED_FUNCTION;\r
211 \r
212 /*\r
213  * The tick count has overflowed.  Switch the timer lists after ensuring the\r
214  * current timer list does not still reference some timers.\r
215  */\r
216 static void prvSwitchTimerLists( void ) PRIVILEGED_FUNCTION;\r
217 \r
218 /*\r
219  * Obtain the current tick count, setting *pxTimerListsWereSwitched to pdTRUE\r
220  * if a tick count overflow occurred since prvSampleTimeNow() was last called.\r
221  */\r
222 static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched ) PRIVILEGED_FUNCTION;\r
223 \r
224 /*\r
225  * If the timer list contains any active timers then return the expire time of\r
226  * the timer that will expire first and set *pxListWasEmpty to false.  If the\r
227  * timer list does not contain any timers then return 0 and set *pxListWasEmpty\r
228  * to pdTRUE.\r
229  */\r
230 static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty ) PRIVILEGED_FUNCTION;\r
231 \r
232 /*\r
233  * If a timer has expired, process it.  Otherwise, block the timer service task\r
234  * until either a timer does expire or a command is received.\r
235  */\r
236 static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, const BaseType_t xListWasEmpty ) PRIVILEGED_FUNCTION;\r
237 \r
238 /*-----------------------------------------------------------*/\r
239 \r
240 BaseType_t xTimerCreateTimerTask( void )\r
241 {\r
242 BaseType_t xReturn = pdFAIL;\r
243 \r
244         /* This function is called when the scheduler is started if\r
245         configUSE_TIMERS is set to 1.  Check that the infrastructure used by the\r
246         timer service task has been created/initialised.  If timers have already\r
247         been created then the initialisation will already have been performed. */\r
248         prvCheckForValidListAndQueue();\r
249 \r
250         if( xTimerQueue != NULL )\r
251         {\r
252                 #if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )\r
253                 {\r
254                         /* Create the timer task, storing its handle in xTimerTaskHandle so\r
255                         it can be returned by the xTimerGetTimerDaemonTaskHandle() function. */\r
256                         xReturn = xTaskCreate( prvTimerTask, "Tmr Svc", ( uint16_t ) configTIMER_TASK_STACK_DEPTH, NULL, ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, &xTimerTaskHandle );\r
257                 }\r
258                 #else\r
259                 {\r
260                         /* Create the timer task without storing its handle. */\r
261                         xReturn = xTaskCreate( prvTimerTask, "Tmr Svc", ( uint16_t ) configTIMER_TASK_STACK_DEPTH, NULL, ( ( UBaseType_t ) configTIMER_TASK_PRIORITY ) | portPRIVILEGE_BIT, NULL);\r
262                 }\r
263                 #endif\r
264         }\r
265         else\r
266         {\r
267                 mtCOVERAGE_TEST_MARKER();\r
268         }\r
269 \r
270         configASSERT( xReturn );\r
271         return xReturn;\r
272 }\r
273 /*-----------------------------------------------------------*/\r
274 \r
275 TimerHandle_t xTimerCreate( const char * const pcTimerName, const TickType_t xTimerPeriodInTicks, const UBaseType_t uxAutoReload, void * const pvTimerID, TimerCallbackFunction_t pxCallbackFunction ) /*lint !e971 Unqualified char types are allowed for strings and single characters only. */\r
276 {\r
277 Timer_t *pxNewTimer;\r
278 \r
279         /* Allocate the timer structure. */\r
280         if( xTimerPeriodInTicks == ( TickType_t ) 0U )\r
281         {\r
282                 pxNewTimer = NULL;\r
283         }\r
284         else\r
285         {\r
286                 pxNewTimer = ( Timer_t * ) pvPortMalloc( sizeof( Timer_t ) );\r
287                 if( pxNewTimer != NULL )\r
288                 {\r
289                         /* Ensure the infrastructure used by the timer service task has been\r
290                         created/initialised. */\r
291                         prvCheckForValidListAndQueue();\r
292 \r
293                         /* Initialise the timer structure members using the function parameters. */\r
294                         pxNewTimer->pcTimerName = pcTimerName;\r
295                         pxNewTimer->xTimerPeriodInTicks = xTimerPeriodInTicks;\r
296                         pxNewTimer->uxAutoReload = uxAutoReload;\r
297                         pxNewTimer->pvTimerID = pvTimerID;\r
298                         pxNewTimer->pxCallbackFunction = pxCallbackFunction;\r
299                         vListInitialiseItem( &( pxNewTimer->xTimerListItem ) );\r
300 \r
301                         traceTIMER_CREATE( pxNewTimer );\r
302                 }\r
303                 else\r
304                 {\r
305                         traceTIMER_CREATE_FAILED();\r
306                 }\r
307         }\r
308 \r
309         /* 0 is not a valid value for xTimerPeriodInTicks. */\r
310         configASSERT( ( xTimerPeriodInTicks > 0 ) );\r
311 \r
312         return ( TimerHandle_t ) pxNewTimer;\r
313 }\r
314 /*-----------------------------------------------------------*/\r
315 \r
316 BaseType_t xTimerGenericCommand( TimerHandle_t xTimer, const BaseType_t xCommandID, const TickType_t xOptionalValue, BaseType_t * const pxHigherPriorityTaskWoken, const TickType_t xTicksToWait )\r
317 {\r
318 BaseType_t xReturn = pdFAIL;\r
319 DaemonTaskMessage_t xMessage;\r
320 \r
321         configASSERT( xTimer );\r
322 \r
323         /* Send a message to the timer service task to perform a particular action\r
324         on a particular timer definition. */\r
325         if( xTimerQueue != NULL )\r
326         {\r
327                 /* Send a command to the timer service task to start the xTimer timer. */\r
328                 xMessage.xMessageID = xCommandID;\r
329                 xMessage.u.xTimerParameters.xMessageValue = xOptionalValue;\r
330                 xMessage.u.xTimerParameters.pxTimer = ( Timer_t * ) xTimer;\r
331 \r
332                 if( xCommandID < tmrFIRST_FROM_ISR_COMMAND )\r
333                 {\r
334                         if( xTaskGetSchedulerState() == taskSCHEDULER_RUNNING )\r
335                         {\r
336                                 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait );\r
337                         }\r
338                         else\r
339                         {\r
340                                 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY );\r
341                         }\r
342                 }\r
343                 else\r
344                 {\r
345                         xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken );\r
346                 }\r
347 \r
348                 traceTIMER_COMMAND_SEND( xTimer, xCommandID, xOptionalValue, xReturn );\r
349         }\r
350         else\r
351         {\r
352                 mtCOVERAGE_TEST_MARKER();\r
353         }\r
354 \r
355         return xReturn;\r
356 }\r
357 /*-----------------------------------------------------------*/\r
358 \r
359 #if ( INCLUDE_xTimerGetTimerDaemonTaskHandle == 1 )\r
360 \r
361         TaskHandle_t xTimerGetTimerDaemonTaskHandle( void )\r
362         {\r
363                 /* If xTimerGetTimerDaemonTaskHandle() is called before the scheduler has been\r
364                 started, then xTimerTaskHandle will be NULL. */\r
365                 configASSERT( ( xTimerTaskHandle != NULL ) );\r
366                 return xTimerTaskHandle;\r
367         }\r
368 \r
369 #endif\r
370 /*-----------------------------------------------------------*/\r
371 \r
372 const char * pcTimerGetTimerName( TimerHandle_t xTimer )\r
373 {\r
374 Timer_t *pxTimer = ( Timer_t * ) xTimer;\r
375 \r
376         configASSERT( xTimer );\r
377         return pxTimer->pcTimerName;\r
378 }\r
379 /*-----------------------------------------------------------*/\r
380 \r
381 static void prvProcessExpiredTimer( const TickType_t xNextExpireTime, const TickType_t xTimeNow )\r
382 {\r
383 BaseType_t xResult;\r
384 Timer_t * const pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList );\r
385 \r
386         /* Remove the timer from the list of active timers.  A check has already\r
387         been performed to ensure the list is not empty. */\r
388         ( void ) uxListRemove( &( pxTimer->xTimerListItem ) );\r
389         traceTIMER_EXPIRED( pxTimer );\r
390 \r
391         /* If the timer is an auto reload timer then calculate the next\r
392         expiry time and re-insert the timer in the list of active timers. */\r
393         if( pxTimer->uxAutoReload == ( UBaseType_t ) pdTRUE )\r
394         {\r
395                 /* The timer is inserted into a list using a time relative to anything\r
396                 other than the current time.  It will therefore be inserted into the\r
397                 correct list relative to the time this task thinks it is now. */\r
398                 if( prvInsertTimerInActiveList( pxTimer, ( xNextExpireTime + pxTimer->xTimerPeriodInTicks ), xTimeNow, xNextExpireTime ) == pdTRUE )\r
399                 {\r
400                         /* The timer expired before it was added to the active timer\r
401                         list.  Reload it now.  */\r
402                         xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY );\r
403                         configASSERT( xResult );\r
404                         ( void ) xResult;\r
405                 }\r
406                 else\r
407                 {\r
408                         mtCOVERAGE_TEST_MARKER();\r
409                 }\r
410         }\r
411         else\r
412         {\r
413                 mtCOVERAGE_TEST_MARKER();\r
414         }\r
415 \r
416         /* Call the timer callback. */\r
417         pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer );\r
418 }\r
419 /*-----------------------------------------------------------*/\r
420 \r
421 static void prvTimerTask( void *pvParameters )\r
422 {\r
423 TickType_t xNextExpireTime;\r
424 BaseType_t xListWasEmpty;\r
425 \r
426         /* Just to avoid compiler warnings. */\r
427         ( void ) pvParameters;\r
428 \r
429         for( ;; )\r
430         {\r
431                 /* Query the timers list to see if it contains any timers, and if so,\r
432                 obtain the time at which the next timer will expire. */\r
433                 xNextExpireTime = prvGetNextExpireTime( &xListWasEmpty );\r
434 \r
435                 /* If a timer has expired, process it.  Otherwise, block this task\r
436                 until either a timer does expire, or a command is received. */\r
437                 prvProcessTimerOrBlockTask( xNextExpireTime, xListWasEmpty );\r
438 \r
439                 /* Empty the command queue. */\r
440                 prvProcessReceivedCommands();\r
441         }\r
442 }\r
443 /*-----------------------------------------------------------*/\r
444 \r
445 static void prvProcessTimerOrBlockTask( const TickType_t xNextExpireTime, const BaseType_t xListWasEmpty )\r
446 {\r
447 TickType_t xTimeNow;\r
448 BaseType_t xTimerListsWereSwitched;\r
449 \r
450         vTaskSuspendAll();\r
451         {\r
452                 /* Obtain the time now to make an assessment as to whether the timer\r
453                 has expired or not.  If obtaining the time causes the lists to switch\r
454                 then don't process this timer as any timers that remained in the list\r
455                 when the lists were switched will have been processed within the\r
456                 prvSampleTimeNow() function. */\r
457                 xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched );\r
458                 if( xTimerListsWereSwitched == pdFALSE )\r
459                 {\r
460                         /* The tick count has not overflowed, has the timer expired? */\r
461                         if( ( xListWasEmpty == pdFALSE ) && ( xNextExpireTime <= xTimeNow ) )\r
462                         {\r
463                                 ( void ) xTaskResumeAll();\r
464                                 prvProcessExpiredTimer( xNextExpireTime, xTimeNow );\r
465                         }\r
466                         else\r
467                         {\r
468                                 /* The tick count has not overflowed, and the next expire\r
469                                 time has not been reached yet.  This task should therefore\r
470                                 block to wait for the next expire time or a command to be\r
471                                 received - whichever comes first.  The following line cannot\r
472                                 be reached unless xNextExpireTime > xTimeNow, except in the\r
473                                 case when the current timer list is empty. */\r
474                                 vQueueWaitForMessageRestricted( xTimerQueue, ( xNextExpireTime - xTimeNow ), xListWasEmpty );\r
475 \r
476                                 if( xTaskResumeAll() == pdFALSE )\r
477                                 {\r
478                                         /* Yield to wait for either a command to arrive, or the\r
479                                         block time to expire.  If a command arrived between the\r
480                                         critical section being exited and this yield then the yield\r
481                                         will not cause the task to block. */\r
482                                         portYIELD_WITHIN_API();\r
483                                 }\r
484                                 else\r
485                                 {\r
486                                         mtCOVERAGE_TEST_MARKER();\r
487                                 }\r
488                         }\r
489                 }\r
490                 else\r
491                 {\r
492                         ( void ) xTaskResumeAll();\r
493                 }\r
494         }\r
495 }\r
496 /*-----------------------------------------------------------*/\r
497 \r
498 static TickType_t prvGetNextExpireTime( BaseType_t * const pxListWasEmpty )\r
499 {\r
500 TickType_t xNextExpireTime;\r
501 \r
502         /* Timers are listed in expiry time order, with the head of the list\r
503         referencing the task that will expire first.  Obtain the time at which\r
504         the timer with the nearest expiry time will expire.  If there are no\r
505         active timers then just set the next expire time to 0.  That will cause\r
506         this task to unblock when the tick count overflows, at which point the\r
507         timer lists will be switched and the next expiry time can be\r
508         re-assessed.  */\r
509         *pxListWasEmpty = listLIST_IS_EMPTY( pxCurrentTimerList );\r
510         if( *pxListWasEmpty == pdFALSE )\r
511         {\r
512                 xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList );\r
513         }\r
514         else\r
515         {\r
516                 /* Ensure the task unblocks when the tick count rolls over. */\r
517                 xNextExpireTime = ( TickType_t ) 0U;\r
518         }\r
519 \r
520         return xNextExpireTime;\r
521 }\r
522 /*-----------------------------------------------------------*/\r
523 \r
524 static TickType_t prvSampleTimeNow( BaseType_t * const pxTimerListsWereSwitched )\r
525 {\r
526 TickType_t xTimeNow;\r
527 PRIVILEGED_DATA static TickType_t xLastTime = ( TickType_t ) 0U; /*lint !e956 Variable is only accessible to one task. */\r
528 \r
529         xTimeNow = xTaskGetTickCount();\r
530 \r
531         if( xTimeNow < xLastTime )\r
532         {\r
533                 prvSwitchTimerLists();\r
534                 *pxTimerListsWereSwitched = pdTRUE;\r
535         }\r
536         else\r
537         {\r
538                 *pxTimerListsWereSwitched = pdFALSE;\r
539         }\r
540 \r
541         xLastTime = xTimeNow;\r
542 \r
543         return xTimeNow;\r
544 }\r
545 /*-----------------------------------------------------------*/\r
546 \r
547 static BaseType_t prvInsertTimerInActiveList( Timer_t * const pxTimer, const TickType_t xNextExpiryTime, const TickType_t xTimeNow, const TickType_t xCommandTime )\r
548 {\r
549 BaseType_t xProcessTimerNow = pdFALSE;\r
550 \r
551         listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xNextExpiryTime );\r
552         listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer );\r
553 \r
554         if( xNextExpiryTime <= xTimeNow )\r
555         {\r
556                 /* Has the expiry time elapsed between the command to start/reset a\r
557                 timer was issued, and the time the command was processed? */\r
558                 if( ( xTimeNow - xCommandTime ) >= pxTimer->xTimerPeriodInTicks )\r
559                 {\r
560                         /* The time between a command being issued and the command being\r
561                         processed actually exceeds the timers period.  */\r
562                         xProcessTimerNow = pdTRUE;\r
563                 }\r
564                 else\r
565                 {\r
566                         vListInsert( pxOverflowTimerList, &( pxTimer->xTimerListItem ) );\r
567                 }\r
568         }\r
569         else\r
570         {\r
571                 if( ( xTimeNow < xCommandTime ) && ( xNextExpiryTime >= xCommandTime ) )\r
572                 {\r
573                         /* If, since the command was issued, the tick count has overflowed\r
574                         but the expiry time has not, then the timer must have already passed\r
575                         its expiry time and should be processed immediately. */\r
576                         xProcessTimerNow = pdTRUE;\r
577                 }\r
578                 else\r
579                 {\r
580                         vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) );\r
581                 }\r
582         }\r
583 \r
584         return xProcessTimerNow;\r
585 }\r
586 /*-----------------------------------------------------------*/\r
587 \r
588 static void     prvProcessReceivedCommands( void )\r
589 {\r
590 DaemonTaskMessage_t xMessage;\r
591 Timer_t *pxTimer;\r
592 BaseType_t xTimerListsWereSwitched, xResult;\r
593 TickType_t xTimeNow;\r
594 \r
595         while( xQueueReceive( xTimerQueue, &xMessage, tmrNO_DELAY ) != pdFAIL ) /*lint !e603 xMessage does not have to be initialised as it is passed out, not in, and it is not used unless xQueueReceive() returns pdTRUE. */\r
596         {\r
597                 #if ( INCLUDE_xTimerPendFunctionCall == 1 )\r
598                 {\r
599                         /* Negative commands are pended function calls rather than timer\r
600                         commands. */\r
601                         if( xMessage.xMessageID < ( BaseType_t ) 0 )\r
602                         {\r
603                                 const CallbackParameters_t * const pxCallback = &( xMessage.u.xCallbackParameters );\r
604 \r
605                                 /* The timer uses the xCallbackParameters member to request a\r
606                                 callback be executed.  Check the callback is not NULL. */\r
607                                 configASSERT( pxCallback );\r
608 \r
609                                 /* Call the function. */\r
610                                 pxCallback->pxCallbackFunction( pxCallback->pvParameter1, pxCallback->ulParameter2 );\r
611                         }\r
612                         else\r
613                         {\r
614                                 mtCOVERAGE_TEST_MARKER();\r
615                         }\r
616                 }\r
617                 #endif /* INCLUDE_xTimerPendFunctionCall */\r
618 \r
619                 /* Commands that are positive are timer commands rather than pended\r
620                 function calls. */\r
621                 if( xMessage.xMessageID >= ( BaseType_t ) 0 )\r
622                 {\r
623                         /* The messages uses the xTimerParameters member to work on a\r
624                         software timer. */\r
625                         pxTimer = xMessage.u.xTimerParameters.pxTimer;\r
626 \r
627                         if( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) == pdFALSE )\r
628                         {\r
629                                 /* The timer is in a list, remove it. */\r
630                                 ( void ) uxListRemove( &( pxTimer->xTimerListItem ) );\r
631                         }\r
632                         else\r
633                         {\r
634                                 mtCOVERAGE_TEST_MARKER();\r
635                         }\r
636 \r
637                         traceTIMER_COMMAND_RECEIVED( pxTimer, xMessage.xMessageID, xMessage.u.xTimerParameters.xMessageValue );\r
638 \r
639                         /* In this case the xTimerListsWereSwitched parameter is not used, but\r
640                         it must be present in the function call.  prvSampleTimeNow() must be\r
641                         called after the message is received from xTimerQueue so there is no\r
642                         possibility of a higher priority task adding a message to the message\r
643                         queue with a time that is ahead of the timer daemon task (because it\r
644                         pre-empted the timer daemon task after the xTimeNow value was set). */\r
645                         xTimeNow = prvSampleTimeNow( &xTimerListsWereSwitched );\r
646 \r
647                         switch( xMessage.xMessageID )\r
648                         {\r
649                                 case tmrCOMMAND_START :\r
650                             case tmrCOMMAND_START_FROM_ISR :\r
651                             case tmrCOMMAND_RESET :\r
652                             case tmrCOMMAND_RESET_FROM_ISR :\r
653                                 case tmrCOMMAND_START_DONT_TRACE :\r
654                                         /* Start or restart a timer. */\r
655                                         if( prvInsertTimerInActiveList( pxTimer,  xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, xTimeNow, xMessage.u.xTimerParameters.xMessageValue ) == pdTRUE )\r
656                                         {\r
657                                                 /* The timer expired before it was added to the active\r
658                                                 timer list.  Process it now. */\r
659                                                 pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer );\r
660                                                 traceTIMER_EXPIRED( pxTimer );\r
661 \r
662                                                 if( pxTimer->uxAutoReload == ( UBaseType_t ) pdTRUE )\r
663                                                 {\r
664                                                         xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xMessage.u.xTimerParameters.xMessageValue + pxTimer->xTimerPeriodInTicks, NULL, tmrNO_DELAY );\r
665                                                         configASSERT( xResult );\r
666                                                         ( void ) xResult;\r
667                                                 }\r
668                                                 else\r
669                                                 {\r
670                                                         mtCOVERAGE_TEST_MARKER();\r
671                                                 }\r
672                                         }\r
673                                         else\r
674                                         {\r
675                                                 mtCOVERAGE_TEST_MARKER();\r
676                                         }\r
677                                         break;\r
678 \r
679                                 case tmrCOMMAND_STOP :\r
680                                 case tmrCOMMAND_STOP_FROM_ISR :\r
681                                         /* The timer has already been removed from the active list.\r
682                                         There is nothing to do here. */\r
683                                         break;\r
684 \r
685                                 case tmrCOMMAND_CHANGE_PERIOD :\r
686                                 case tmrCOMMAND_CHANGE_PERIOD_FROM_ISR :\r
687                                         pxTimer->xTimerPeriodInTicks = xMessage.u.xTimerParameters.xMessageValue;\r
688                                         configASSERT( ( pxTimer->xTimerPeriodInTicks > 0 ) );\r
689 \r
690                                         /* The new period does not really have a reference, and can be\r
691                                         longer or shorter than the old one.  The command time is\r
692                                         therefore set to the current time, and as the period cannot be\r
693                                         zero the next expiry time can only be in the future, meaning\r
694                                         (unlike for the xTimerStart() case above) there is no fail case\r
695                                         that needs to be handled here. */\r
696                                         ( void ) prvInsertTimerInActiveList( pxTimer, ( xTimeNow + pxTimer->xTimerPeriodInTicks ), xTimeNow, xTimeNow );\r
697                                         break;\r
698 \r
699                                 case tmrCOMMAND_DELETE :\r
700                                         /* The timer has already been removed from the active list,\r
701                                         just free up the memory. */\r
702                                         vPortFree( pxTimer );\r
703                                         break;\r
704 \r
705                                 default :\r
706                                         /* Don't expect to get here. */\r
707                                         break;\r
708                         }\r
709                 }\r
710         }\r
711 }\r
712 /*-----------------------------------------------------------*/\r
713 \r
714 static void prvSwitchTimerLists( void )\r
715 {\r
716 TickType_t xNextExpireTime, xReloadTime;\r
717 List_t *pxTemp;\r
718 Timer_t *pxTimer;\r
719 BaseType_t xResult;\r
720 \r
721         /* The tick count has overflowed.  The timer lists must be switched.\r
722         If there are any timers still referenced from the current timer list\r
723         then they must have expired and should be processed before the lists\r
724         are switched. */\r
725         while( listLIST_IS_EMPTY( pxCurrentTimerList ) == pdFALSE )\r
726         {\r
727                 xNextExpireTime = listGET_ITEM_VALUE_OF_HEAD_ENTRY( pxCurrentTimerList );\r
728 \r
729                 /* Remove the timer from the list. */\r
730                 pxTimer = ( Timer_t * ) listGET_OWNER_OF_HEAD_ENTRY( pxCurrentTimerList );\r
731                 ( void ) uxListRemove( &( pxTimer->xTimerListItem ) );\r
732                 traceTIMER_EXPIRED( pxTimer );\r
733 \r
734                 /* Execute its callback, then send a command to restart the timer if\r
735                 it is an auto-reload timer.  It cannot be restarted here as the lists\r
736                 have not yet been switched. */\r
737                 pxTimer->pxCallbackFunction( ( TimerHandle_t ) pxTimer );\r
738 \r
739                 if( pxTimer->uxAutoReload == ( UBaseType_t ) pdTRUE )\r
740                 {\r
741                         /* Calculate the reload value, and if the reload value results in\r
742                         the timer going into the same timer list then it has already expired\r
743                         and the timer should be re-inserted into the current list so it is\r
744                         processed again within this loop.  Otherwise a command should be sent\r
745                         to restart the timer to ensure it is only inserted into a list after\r
746                         the lists have been swapped. */\r
747                         xReloadTime = ( xNextExpireTime + pxTimer->xTimerPeriodInTicks );\r
748                         if( xReloadTime > xNextExpireTime )\r
749                         {\r
750                                 listSET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ), xReloadTime );\r
751                                 listSET_LIST_ITEM_OWNER( &( pxTimer->xTimerListItem ), pxTimer );\r
752                                 vListInsert( pxCurrentTimerList, &( pxTimer->xTimerListItem ) );\r
753                         }\r
754                         else\r
755                         {\r
756                                 xResult = xTimerGenericCommand( pxTimer, tmrCOMMAND_START_DONT_TRACE, xNextExpireTime, NULL, tmrNO_DELAY );\r
757                                 configASSERT( xResult );\r
758                                 ( void ) xResult;\r
759                         }\r
760                 }\r
761                 else\r
762                 {\r
763                         mtCOVERAGE_TEST_MARKER();\r
764                 }\r
765         }\r
766 \r
767         pxTemp = pxCurrentTimerList;\r
768         pxCurrentTimerList = pxOverflowTimerList;\r
769         pxOverflowTimerList = pxTemp;\r
770 }\r
771 /*-----------------------------------------------------------*/\r
772 \r
773 static void prvCheckForValidListAndQueue( void )\r
774 {\r
775         /* Check that the list from which active timers are referenced, and the\r
776         queue used to communicate with the timer service, have been\r
777         initialised. */\r
778         taskENTER_CRITICAL();\r
779         {\r
780                 if( xTimerQueue == NULL )\r
781                 {\r
782                         vListInitialise( &xActiveTimerList1 );\r
783                         vListInitialise( &xActiveTimerList2 );\r
784                         pxCurrentTimerList = &xActiveTimerList1;\r
785                         pxOverflowTimerList = &xActiveTimerList2;\r
786                         xTimerQueue = xQueueCreate( ( UBaseType_t ) configTIMER_QUEUE_LENGTH, sizeof( DaemonTaskMessage_t ) );\r
787                         configASSERT( xTimerQueue );\r
788 \r
789                         #if ( configQUEUE_REGISTRY_SIZE > 0 )\r
790                         {\r
791                                 if( xTimerQueue != NULL )\r
792                                 {\r
793                                         vQueueAddToRegistry( xTimerQueue, "TmrQ" );\r
794                                 }\r
795                                 else\r
796                                 {\r
797                                         mtCOVERAGE_TEST_MARKER();\r
798                                 }\r
799                         }\r
800                         #endif /* configQUEUE_REGISTRY_SIZE */\r
801                 }\r
802                 else\r
803                 {\r
804                         mtCOVERAGE_TEST_MARKER();\r
805                 }\r
806         }\r
807         taskEXIT_CRITICAL();\r
808 }\r
809 /*-----------------------------------------------------------*/\r
810 \r
811 BaseType_t xTimerIsTimerActive( TimerHandle_t xTimer )\r
812 {\r
813 BaseType_t xTimerIsInActiveList;\r
814 Timer_t *pxTimer = ( Timer_t * ) xTimer;\r
815 \r
816         configASSERT( xTimer );\r
817 \r
818         /* Is the timer in the list of active timers? */\r
819         taskENTER_CRITICAL();\r
820         {\r
821                 /* Checking to see if it is in the NULL list in effect checks to see if\r
822                 it is referenced from either the current or the overflow timer lists in\r
823                 one go, but the logic has to be reversed, hence the '!'. */\r
824                 xTimerIsInActiveList = ( BaseType_t ) !( listIS_CONTAINED_WITHIN( NULL, &( pxTimer->xTimerListItem ) ) );\r
825         }\r
826         taskEXIT_CRITICAL();\r
827 \r
828         return xTimerIsInActiveList;\r
829 } /*lint !e818 Can't be pointer to const due to the typedef. */\r
830 /*-----------------------------------------------------------*/\r
831 \r
832 void *pvTimerGetTimerID( const TimerHandle_t xTimer )\r
833 {\r
834 Timer_t * const pxTimer = ( Timer_t * ) xTimer;\r
835 void *pvReturn;\r
836 \r
837         configASSERT( xTimer );\r
838 \r
839         taskENTER_CRITICAL();\r
840         {\r
841                 pvReturn = pxTimer->pvTimerID;\r
842         }\r
843         taskEXIT_CRITICAL();\r
844 \r
845         return pvReturn;\r
846 }\r
847 /*-----------------------------------------------------------*/\r
848 \r
849 void vTimerSetTimerID( TimerHandle_t xTimer, void *pvNewID )\r
850 {\r
851 Timer_t * const pxTimer = ( Timer_t * ) xTimer;\r
852 \r
853         configASSERT( xTimer );\r
854 \r
855         taskENTER_CRITICAL();\r
856         {\r
857                 pxTimer->pvTimerID = pvNewID;\r
858         }\r
859         taskEXIT_CRITICAL();\r
860 }\r
861 /*-----------------------------------------------------------*/\r
862 \r
863 #if( INCLUDE_xTimerPendFunctionCall == 1 )\r
864 \r
865         BaseType_t xTimerPendFunctionCallFromISR( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, BaseType_t *pxHigherPriorityTaskWoken )\r
866         {\r
867         DaemonTaskMessage_t xMessage;\r
868         BaseType_t xReturn;\r
869 \r
870                 /* Complete the message with the function parameters and post it to the\r
871                 daemon task. */\r
872                 xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK_FROM_ISR;\r
873                 xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend;\r
874                 xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1;\r
875                 xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2;\r
876 \r
877                 xReturn = xQueueSendFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken );\r
878 \r
879                 tracePEND_FUNC_CALL_FROM_ISR( xFunctionToPend, pvParameter1, ulParameter2, xReturn );\r
880 \r
881                 return xReturn;\r
882         }\r
883 \r
884 #endif /* INCLUDE_xTimerPendFunctionCall */\r
885 /*-----------------------------------------------------------*/\r
886 \r
887 #if( INCLUDE_xTimerPendFunctionCall == 1 )\r
888 \r
889         BaseType_t xTimerPendFunctionCall( PendedFunction_t xFunctionToPend, void *pvParameter1, uint32_t ulParameter2, TickType_t xTicksToWait )\r
890         {\r
891         DaemonTaskMessage_t xMessage;\r
892         BaseType_t xReturn;\r
893 \r
894                 /* This function can only be called after a timer has been created or\r
895                 after the scheduler has been started because, until then, the timer\r
896                 queue does not exist. */\r
897                 configASSERT( xTimerQueue );\r
898 \r
899                 /* Complete the message with the function parameters and post it to the\r
900                 daemon task. */\r
901                 xMessage.xMessageID = tmrCOMMAND_EXECUTE_CALLBACK;\r
902                 xMessage.u.xCallbackParameters.pxCallbackFunction = xFunctionToPend;\r
903                 xMessage.u.xCallbackParameters.pvParameter1 = pvParameter1;\r
904                 xMessage.u.xCallbackParameters.ulParameter2 = ulParameter2;\r
905 \r
906                 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait );\r
907 \r
908                 tracePEND_FUNC_CALL( xFunctionToPend, pvParameter1, ulParameter2, xReturn );\r
909 \r
910                 return xReturn;\r
911         }\r
912 \r
913 #endif /* INCLUDE_xTimerPendFunctionCall */\r
914 /*-----------------------------------------------------------*/\r
915 \r
916 /* This entire source file will be skipped if the application is not configured\r
917 to include software timer functionality.  If you want to include software timer\r
918 functionality then ensure configUSE_TIMERS is set to 1 in FreeRTOSConfig.h. */\r
919 #endif /* configUSE_TIMERS == 1 */\r
920 \r
921 \r
922 \r