2 FreeRTOS V7.0.2 - Copyright (C) 2011 Real Time Engineers Ltd.
\r
5 ***************************************************************************
\r
7 * FreeRTOS tutorial books are available in pdf and paperback. *
\r
8 * Complete, revised, and edited pdf reference manuals are also *
\r
11 * Purchasing FreeRTOS documentation will not only help you, by *
\r
12 * ensuring you get running as quickly as possible and with an *
\r
13 * in-depth knowledge of how to use FreeRTOS, it will also help *
\r
14 * the FreeRTOS project to continue with its mission of providing *
\r
15 * professional grade, cross platform, de facto standard solutions *
\r
16 * for microcontrollers - completely free of charge! *
\r
18 * >>> See http://www.FreeRTOS.org/Documentation for details. <<< *
\r
20 * Thank you for using FreeRTOS, and thank you for your support! *
\r
22 ***************************************************************************
\r
25 This file is part of the FreeRTOS distribution.
\r
27 FreeRTOS is free software; you can redistribute it and/or modify it under
\r
28 the terms of the GNU General Public License (version 2) as published by the
\r
29 Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
\r
30 >>>NOTE<<< The modification to the GPL is included to allow you to
\r
31 distribute a combined work that includes FreeRTOS without being obliged to
\r
32 provide the source code for proprietary components outside of the FreeRTOS
\r
33 kernel. FreeRTOS is distributed in the hope that it will be useful, but
\r
34 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
\r
35 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
\r
36 more details. You should have received a copy of the GNU General Public
\r
37 License and the FreeRTOS license exception along with FreeRTOS; if not it
\r
38 can be viewed here: http://www.freertos.org/a00114.html and also obtained
\r
39 by writing to Richard Barry, contact details for whom are available on the
\r
44 http://www.FreeRTOS.org - Documentation, latest information, license and
\r
47 http://www.SafeRTOS.com - A version that is certified for use in safety
\r
50 http://www.OpenRTOS.com - Commercial support, development, porting,
\r
51 licensing and training services.
\r
54 /* ****************************************************************************
\r
55 * This project includes a lot of tasks and tests and is therefore complex.
\r
56 * If you would prefer a much simpler project to get started with then select
\r
57 * the 'Blinky' build configuration within the HEW IDE. The Blinky build
\r
58 * configuration uses main-blinky.c instead of main-full.c.
\r
59 * ****************************************************************************
\r
61 * Creates all the demo application tasks, then starts the scheduler. The web
\r
62 * documentation provides more details of the standard demo application tasks,
\r
63 * which provide no particular functionality but do provide a good example of
\r
64 * how to use the FreeRTOS API.
\r
66 * In addition to the standard demo tasks, the following tasks and tests are
\r
67 * defined and/or created within this file:
\r
69 * "Reg test" tasks - These fill the registers with known values, then
\r
70 * repeatedly check that each register still contains its expected value for
\r
71 * the lifetime of the tasks. Each task uses different values. The tasks run
\r
72 * with very low priority so get preempted very frequently. A check variable
\r
73 * is incremented on each iteration of the test loop. A register containing an
\r
74 * unexpected value is indicative of an error in the context switching
\r
75 * mechanism and will result in a branch to a null loop - which in turn will
\r
76 * prevent the check variable from incrementing any further and allow the check
\r
77 * timer (described below) to determine that an error has occurred. The nature
\r
78 * of the reg test tasks necessitates that they are written in assembly code.
\r
80 * "Check Timer" and Callback Function - The check timer period is initially
\r
81 * set to five seconds. The check timer callback function checks that all the
\r
82 * standard demo tasks are not only still executing, but are executing without
\r
83 * reporting any errors. If the check timer discovers that a task has either
\r
84 * stalled, or reported an error, then it changes its own period from the
\r
85 * initial three seconds, to just 200ms. The check timer callback function
\r
86 * also toggles LED 3 each time it is called. This provides a visual
\r
87 * indication of the system status: If the LED toggles every five seconds,
\r
88 * then no issues have been discovered. If the LED toggles every 200ms, then
\r
89 * an issue has been discovered with at least one task.
\r
91 * "High frequency timer test" - A high frequency periodic interrupt is
\r
92 * generated using a timer - the interrupt is assigned a priority above
\r
93 * configMAX_SYSCALL_INTERRUPT_PRIORITY, so will not be effected by anything
\r
94 * the kernel is doing. The frequency and priority of the interrupt, in
\r
95 * combination with other standard tests executed in this demo, will result
\r
96 * in interrupts nesting at least 3 and probably 4 deep. This test is only
\r
97 * included in build configurations that have the optimiser switched on.
\r
99 * "Button and LCD test" - This creates two tasks. The first simply scrolls
\r
100 * a message back and forth along the top line of the LCD display. If no
\r
101 * buttons are pushed, the second also scrolls a message back and forth, but
\r
102 * along the bottom line of the display. The automatic scrolling of the second
\r
103 * line of the display can be started and stopped using button SW2. Once
\r
104 * stopped it can then be manually nudged left using button SW3, and manually
\r
105 * nudged right using button SW1. Button pushes generate an interrupt, and the
\r
106 * interrupt communicates with the task using a queue.
\r
108 * *NOTE 1* vApplicationSetupTimerInterrupt() is called by the kernel to let
\r
109 * the application set up a timer to generate the tick interrupt. In this
\r
110 * example a compare match timer is used for this purpose.
\r
112 * *NOTE 2* The CPU must be in Supervisor mode when the scheduler is started.
\r
113 * The PowerON_Reset_PC() supplied in resetprg.c with this demo has
\r
114 * Change_PSW_PM_to_UserMode() commented out to ensure this is the case.
\r
116 * *NOTE 3* The IntQueue common demo tasks test interrupt nesting and make use
\r
117 * of all the 8bit timers (as two cascaded 16bit units).
\r
120 /* Standard includes. */
\r
121 #include <string.h>
\r
123 /* Hardware specific includes. */
\r
124 #include "iodefine.h"
\r
126 /* Kernel includes. */
\r
127 #include "FreeRTOS.h"
\r
129 #include "timers.h"
\r
130 #include "semphr.h"
\r
132 /* Standard demo includes. */
\r
133 #include "partest.h"
\r
135 #include "IntQueue.h"
\r
136 #include "BlockQ.h"
\r
138 #include "integer.h"
\r
139 #include "blocktim.h"
\r
140 #include "semtest.h"
\r
142 #include "GenQTest.h"
\r
144 #include "recmutex.h"
\r
146 /* Demo specific tasks. */
\r
147 #include "ButtonAndLCD.h"
\r
149 /* Peripheral includes. */
\r
152 /* Values that are passed into the reg test tasks using the task parameter.
\r
153 The tasks check that the values are passed in correctly. */
\r
154 #define mainREG_TEST_1_PARAMETER ( 0x12121212UL )
\r
155 #define mainREG_TEST_2_PARAMETER ( 0x12345678UL )
\r
157 /* Priorities at which the tasks are created. */
\r
158 #define mainQUEUE_POLL_PRIORITY ( tskIDLE_PRIORITY + 1 )
\r
159 #define mainSEM_TEST_PRIORITY ( tskIDLE_PRIORITY + 1 )
\r
160 #define mainBLOCK_Q_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
161 #define mainCREATOR_TASK_PRIORITY ( tskIDLE_PRIORITY + 3 )
\r
162 #define mainFLASH_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )
\r
163 #define mainINTEGER_TASK_PRIORITY ( tskIDLE_PRIORITY )
\r
164 #define mainGEN_QUEUE_TASK_PRIORITY ( tskIDLE_PRIORITY )
\r
165 #define mainFLOP_TASK_PRIORITY ( tskIDLE_PRIORITY )
\r
167 /* The LED toggled by the check task. */
\r
168 #define mainCHECK_LED ( 3 )
\r
170 /* The period at which the check timer will expire, in ms, provided no errors
\r
171 have been reported by any of the standard demo tasks. ms are converted to the
\r
172 equivalent in ticks using the portTICK_RATE_MS constant. */
\r
173 #define mainCHECK_TIMER_PERIOD_MS ( 5000UL / portTICK_RATE_MS )
\r
175 /* The period at which the check timer will expire, in ms, if an error has been
\r
176 reported in one of the standard demo tasks. ms are converted to the equivalent
\r
177 in ticks using the portTICK_RATE_MS constant. */
\r
178 #define mainERROR_CHECK_TIMER_PERIOD_MS ( 200UL / portTICK_RATE_MS )
\r
180 /* A block time of zero simple means "Don't Block". */
\r
181 #define mainDONT_BLOCK ( 0UL )
\r
184 * vApplicationMallocFailedHook() will only be called if
\r
185 * configUSE_MALLOC_FAILED_HOOK is set to 1 in FreeRTOSConfig.h. It is a hook
\r
186 * function that will execute if a call to pvPortMalloc() fails.
\r
187 * pvPortMalloc() is called internally by the kernel whenever a task, queue or
\r
188 * semaphore is created. It is also called by various parts of the demo
\r
191 void vApplicationMallocFailedHook( void );
\r
194 * vApplicationIdleHook() will only be called if configUSE_IDLE_HOOK is set to 1
\r
195 * in FreeRTOSConfig.h. It is a hook function that is called on each iteration
\r
196 * of the idle task. It is essential that code added to this hook function
\r
197 * never attempts to block in any way (for example, call xQueueReceive() with
\r
198 * a block time specified). If the application makes use of the vTaskDelete()
\r
199 * API function (as this demo application does) then it is also important that
\r
200 * vApplicationIdleHook() is permitted to return to its calling function because
\r
201 * it is the responsibility of the idle task to clean up memory allocated by the
\r
202 * kernel to any task that has since been deleted.
\r
204 void vApplicationIdleHook( void );
\r
207 * vApplicationStackOverflowHook() will only be called if
\r
208 * configCHECK_FOR_STACK_OVERFLOW is set to a non-zero value. The handle and
\r
209 * name of the offending task should be passed in the function parameters, but
\r
210 * it is possible that the stack overflow will have corrupted these - in which
\r
211 * case pxCurrentTCB can be inspected to find the same information.
\r
213 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName );
\r
216 * The reg test tasks as described at the top of this file.
\r
218 static void prvRegTest1Task( void *pvParameters );
\r
219 static void prvRegTest2Task( void *pvParameters );
\r
222 * The actual implementation of the reg test functionality, which, because of
\r
223 * the direct register access, have to be in assembly.
\r
225 static void prvRegTest1Implementation( void );
\r
226 static void prvRegTest2Implementation( void );
\r
229 * The check timer callback function, as described at the top of this file.
\r
231 static void prvCheckTimerCallback( xTimerHandle xTimer );
\r
234 /*-----------------------------------------------------------*/
\r
236 /* Variables that are incremented on each iteration of the reg test tasks -
\r
237 provided the tasks have not reported any errors. The check task inspects these
\r
238 variables to ensure they are still incrementing as expected. If a variable
\r
239 stops incrementing then it is likely that its associate task has stalled. */
\r
240 unsigned long ulRegTest1CycleCount = 0UL, ulRegTest2CycleCount = 0UL;
\r
242 /* The check timer. This uses prvCheckTimerCallback() as its callback
\r
244 static xTimerHandle xCheckTimer = NULL;
\r
246 /*-----------------------------------------------------------*/
\r
250 extern void HardwareSetup( void );
\r
252 /* Renesas provided CPU configuration routine. The clocks are configured in
\r
256 /* Turn all LEDs off. */
\r
257 vParTestInitialise();
\r
259 /* Start the reg test tasks which test the context switching mechanism. */
\r
260 xTaskCreate( prvRegTest1Task, "RegTst1", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_1_PARAMETER, tskIDLE_PRIORITY, NULL );
\r
261 xTaskCreate( prvRegTest2Task, "RegTst2", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_2_PARAMETER, tskIDLE_PRIORITY, NULL );
\r
263 /* The button and LCD tasks, as described at the top of this file. */
\r
264 vStartButtonAndLCDDemo();
\r
266 /* Create the standard demo tasks. */
\r
267 vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );
\r
268 vCreateBlockTimeTasks();
\r
269 vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );
\r
270 vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );
\r
271 vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );
\r
272 vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );
\r
273 vStartLEDFlashTasks( mainFLASH_TASK_PRIORITY );
\r
274 vStartQueuePeekTasks();
\r
275 vStartRecursiveMutexTasks();
\r
276 vStartInterruptQueueTasks();
\r
278 /* The suicide tasks must be created last as they need to know how many
\r
279 tasks were running prior to their creation in order to ascertain whether
\r
280 or not the correct/expected number of tasks are running at any given time. */
\r
281 vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );
\r
283 /* Create the software timer that performs the 'check' functionality,
\r
284 as described at the top of this file. */
\r
285 xCheckTimer = xTimerCreate( ( const signed char * ) "CheckTimer",/* A text name, purely to help debugging. */
\r
286 ( mainCHECK_TIMER_PERIOD_MS ), /* The timer period, in this case 5000ms (5s). */
\r
287 pdTRUE, /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */
\r
288 ( void * ) 0, /* The ID is not used, so can be set to anything. */
\r
289 prvCheckTimerCallback /* The callback function that inspects the status of all the other tasks. */
\r
292 configASSERT( xCheckTimer );
\r
294 /* Start the check timer. It will actually start when the scheduler is
\r
296 xTimerStart( xCheckTimer, mainDONT_BLOCK );
\r
298 /* Start the tasks running. */
\r
299 vTaskStartScheduler();
\r
301 /* If all is well we will never reach here as the scheduler will now be
\r
302 running. If we do reach here then it is likely that there was insufficient
\r
303 heap available for the idle task to be created. */
\r
306 /*-----------------------------------------------------------*/
\r
307 volatile long temp = 0;
\r
308 static void prvCheckTimerCallback( xTimerHandle xTimer )
\r
310 static long lChangedTimerPeriodAlready = pdFALSE, lErrorStatus = pdPASS;
\r
311 static volatile unsigned long ulLastRegTest1CycleCount = 0UL, ulLastRegTest2CycleCount = 0UL;
\r
312 volatile long temp2;
\r
313 /* Check the standard demo tasks are running without error. */
\r
314 if( xAreGenericQueueTasksStillRunning() != pdTRUE )
\r
316 lErrorStatus = pdFAIL;
\r
319 else if( xAreQueuePeekTasksStillRunning() != pdTRUE )
\r
321 lErrorStatus = pdFAIL;
\r
324 else if( xAreBlockingQueuesStillRunning() != pdTRUE )
\r
326 lErrorStatus = pdFAIL;
\r
329 else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )
\r
331 lErrorStatus = pdFAIL;
\r
334 else if( xAreSemaphoreTasksStillRunning() != pdTRUE )
\r
336 lErrorStatus = pdFAIL;
\r
339 else if( xArePollingQueuesStillRunning() != pdTRUE )
\r
341 lErrorStatus = pdFAIL;
\r
344 else if( xIsCreateTaskStillRunning() != pdTRUE )
\r
346 lErrorStatus = pdFAIL;
\r
349 else if( xAreIntegerMathsTaskStillRunning() != pdTRUE )
\r
351 lErrorStatus = pdFAIL;
\r
354 else if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )
\r
356 lErrorStatus = pdFAIL;
\r
359 else if( xAreIntQueueTasksStillRunning() != pdPASS )
\r
361 lErrorStatus = pdFAIL;
\r
365 /* Check the reg test tasks are still cycling. They will stop incrementing
\r
366 their loop counters if they encounter an error. */
\r
367 if( ulRegTest1CycleCount == ulLastRegTest1CycleCount )
\r
369 lErrorStatus = pdFAIL;
\r
373 if( ulRegTest2CycleCount == ulLastRegTest2CycleCount )
\r
375 lErrorStatus = pdFAIL;
\r
379 ulLastRegTest1CycleCount = ulRegTest1CycleCount;
\r
380 ulLastRegTest2CycleCount = ulRegTest2CycleCount;
\r
382 /* Toggle the check LED to give an indication of the system status. If
\r
383 the LED toggles every 5 seconds then everything is ok. A faster toggle
\r
384 indicates an error. */
\r
385 vParTestToggleLED( mainCHECK_LED );
\r
387 /* Was an error detected this time through the callback execution? */
\r
388 if( lErrorStatus != pdPASS )
\r
391 if( lChangedTimerPeriodAlready == pdFALSE )
\r
393 lChangedTimerPeriodAlready = pdTRUE;
\r
395 /* This call to xTimerChangePeriod() uses a zero block time.
\r
396 Functions called from inside of a timer callback function must
\r
397 *never* attempt to block. */
\r
398 xTimerChangePeriod( xCheckTimer, ( mainERROR_CHECK_TIMER_PERIOD_MS ), mainDONT_BLOCK );
\r
402 /*-----------------------------------------------------------*/
\r
404 /* The RX port uses this callback function to configure its tick interrupt.
\r
405 This allows the application to choose the tick interrupt source. */
\r
406 void vApplicationSetupTimerInterrupt( void )
\r
408 /* Enable compare match timer 0. */
\r
411 /* Interrupt on compare match. */
\r
412 CMT0.CMCR.BIT.CMIE = 1;
\r
414 /* Set the compare match value. */
\r
415 CMT0.CMCOR = ( unsigned short ) ( ( ( configPERIPHERAL_CLOCK_HZ / configTICK_RATE_HZ ) -1 ) / 8 );
\r
417 /* Divide the PCLK by 8. */
\r
418 CMT0.CMCR.BIT.CKS = 0;
\r
420 /* Enable the interrupt... */
\r
421 _IEN( _CMT0_CMI0 ) = 1;
\r
423 /* ...and set its priority to the application defined kernel priority. */
\r
424 _IPR( _CMT0_CMI0 ) = configKERNEL_INTERRUPT_PRIORITY;
\r
426 /* Start the timer. */
\r
427 CMT.CMSTR0.BIT.STR0 = 1;
\r
429 /*-----------------------------------------------------------*/
\r
431 /* This function is explained by the comments above its prototype at the top
\r
433 void vApplicationMallocFailedHook( void )
\r
437 /*-----------------------------------------------------------*/
\r
439 /* This function is explained by the comments above its prototype at the top
\r
441 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName )
\r
445 /*-----------------------------------------------------------*/
\r
447 /* This function is explained by the comments above its prototype at the top
\r
449 void vApplicationIdleHook( void )
\r
451 /* If this is being executed then the kernel has been started. Start the high
\r
452 frequency timer test as described at the top of this file. This is only
\r
453 included in the optimised build configuration - otherwise it takes up too much
\r
454 CPU time and can disrupt other tests. */
\r
455 #ifdef INCLUDE_HIGH_FREQUENCY_TIMER_TEST
\r
456 static portBASE_TYPE xTimerTestStarted = pdFALSE;
\r
457 extern void vSetupHighFrequencyTimer( void );
\r
458 if( xTimerTestStarted == pdFALSE )
\r
460 vSetupHighFrequencyTimer();
\r
461 xTimerTestStarted = pdTRUE;
\r
465 /*-----------------------------------------------------------*/
\r
467 /* This function is explained in the comments at the top of this file. */
\r
468 static void prvRegTest1Task( void *pvParameters )
\r
470 if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_1_PARAMETER )
\r
472 /* The parameter did not contain the expected value. */
\r
475 /* Stop the tick interrupt so its obvious something has gone wrong. */
\r
476 taskDISABLE_INTERRUPTS();
\r
480 /* This is an inline asm function that never returns. */
\r
481 prvRegTest1Implementation();
\r
483 /*-----------------------------------------------------------*/
\r
485 /* This function is explained in the comments at the top of this file. */
\r
486 static void prvRegTest2Task( void *pvParameters )
\r
488 if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_2_PARAMETER )
\r
490 /* The parameter did not contain the expected value. */
\r
493 /* Stop the tick interrupt so its obvious something has gone wrong. */
\r
494 taskDISABLE_INTERRUPTS();
\r
498 /* This is an inline asm function that never returns. */
\r
499 prvRegTest2Implementation();
\r
501 /*-----------------------------------------------------------*/
\r
503 /* This function is explained in the comments at the top of this file. */
\r
504 #pragma inline_asm prvRegTest1Implementation
\r
505 static void prvRegTest1Implementation( void )
\r
507 ; Put a known value in each register.
\r
524 ; Loop, checking each itteration that each register still contains the
\r
528 ; Push the registers that are going to get clobbered.
\r
531 ; Increment the loop counter to show this task is still getting CPU time.
\r
532 MOV.L #_ulRegTest1CycleCount, R14
\r
537 ; Yield to extend the text coverage. Set the bit in the ITU SWINTR register.
\r
539 MOV.L #0872E0H, R15
\r
544 ; Restore the clobbered registers.
\r
547 ; Now compare each register to ensure it still contains the value that was
\r
548 ; set before this loop was entered.
\r
580 ; All comparisons passed, start a new itteratio of this loop.
\r
584 ; A compare failed, just loop here so the loop counter stops incrementing
\r
585 ; causing the check task to indicate the error.
\r
588 /*-----------------------------------------------------------*/
\r
590 /* This function is explained in the comments at the top of this file. */
\r
591 #pragma inline_asm prvRegTest2Implementation
\r
592 static void prvRegTest2Implementation( void )
\r
594 ; Put a known value in each register.
\r
611 ; Loop, checking on each itteration that each register still contains the
\r
615 ; Push the registers that are going to get clobbered.
\r
618 ; Increment the loop counter to show this task is still getting CPU time.
\r
619 MOV.L #_ulRegTest2CycleCount, R14
\r
624 ; Restore the clobbered registers.
\r
658 ; All comparisons passed, start a new itteratio of this loop.
\r
662 ; A compare failed, just loop here so the loop counter stops incrementing
\r
663 ; - causing the check task to indicate the error.
\r
666 /*-----------------------------------------------------------*/
\r