3 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5 * Permission is hereby granted, free of charge, to any person obtaining a copy of
6 * this software and associated documentation files (the "Software"), to deal in
7 * the Software without restriction, including without limitation the rights to
8 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 * the Software, and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 * http://www.FreeRTOS.org
23 * http://aws.amazon.com/freertos
28 /* ****************************************************************************
29 * This project includes a lot of tasks and tests and is therefore complex.
30 * If you would prefer a much simpler project to get started with then select
31 * the 'Blinky' build configuration within the HEW IDE. The Blinky build
32 * configuration uses main-blinky.c instead of main-full.c.
33 * ****************************************************************************
35 * Creates all the demo application tasks, then starts the scheduler. The web
36 * documentation provides more details of the standard demo application tasks,
37 * which provide no particular functionality but do provide a good example of
38 * how to use the FreeRTOS API.
40 * In addition to the standard demo tasks, the following tasks and tests are
41 * defined and/or created within this file:
43 * "Reg test" tasks - These fill the registers with known values, then
44 * repeatedly check that each register still contains its expected value for
45 * the lifetime of the tasks. Each task uses different values. The tasks run
46 * with very low priority so get preempted very frequently. A check variable
47 * is incremented on each iteration of the test loop. A register containing an
48 * unexpected value is indicative of an error in the context switching
49 * mechanism and will result in a branch to a null loop - which in turn will
50 * prevent the check variable from incrementing any further and allow the check
51 * timer (described below) to determine that an error has occurred. The nature
52 * of the reg test tasks necessitates that they are written in assembly code.
54 * "Check Timer" and Callback Function - The check timer period is initially
55 * set to five seconds. The check timer callback function checks that all the
56 * standard demo tasks are not only still executing, but are executing without
57 * reporting any errors. If the check timer discovers that a task has either
58 * stalled, or reported an error, then it changes its own period from the
59 * initial five seconds, to just 200ms. The check timer callback function
60 * also toggles LED 3 each time it is called. This provides a visual
61 * indication of the system status: If the LED toggles every five seconds,
62 * then no issues have been discovered. If the LED toggles every 200ms, then
63 * an issue has been discovered with at least one task.
65 * "High frequency timer test" - A high frequency periodic interrupt is
66 * generated using a timer - the interrupt is assigned a priority above
67 * configMAX_SYSCALL_INTERRUPT_PRIORITY, so will not be effected by anything
68 * the kernel is doing. The frequency and priority of the interrupt, in
69 * combination with other standard tests executed in this demo, will result
70 * in interrupts nesting at least 3 and probably 4 deep. This test is only
71 * included in build configurations that have the optimiser switched on.
73 * "Button and LCD test" - This creates two tasks. The first simply scrolls
74 * a message back and forth along the top line of the LCD display. If no
75 * buttons are pushed, the second also scrolls a message back and forth, but
76 * along the bottom line of the display. The automatic scrolling of the second
77 * line of the display can be started and stopped using button SW2. Once
78 * stopped it can then be manually nudged left using button SW3, and manually
79 * nudged right using button SW1. Button pushes generate an interrupt, and the
80 * interrupt communicates with the task using a queue.
82 * *NOTE 1* vApplicationSetupTimerInterrupt() is called by the kernel to let
83 * the application set up a timer to generate the tick interrupt. In this
84 * example a compare match timer is used for this purpose.
86 * *NOTE 2* The CPU must be in Supervisor mode when the scheduler is started.
87 * The PowerON_Reset_PC() supplied in resetprg.c with this demo has
88 * Change_PSW_PM_to_UserMode() commented out to ensure this is the case.
90 * *NOTE 3* The IntQueue common demo tasks test interrupt nesting and make use
91 * of all the 8bit timers (as two cascaded 16bit units).
94 /* Standard includes. */
97 /* Hardware specific includes. */
100 /* Kernel includes. */
101 #include "FreeRTOS.h"
106 /* Standard demo includes. */
109 #include "IntQueue.h"
113 #include "blocktim.h"
116 #include "GenQTest.h"
118 #include "recmutex.h"
120 /* Demo specific tasks. */
121 #include "ButtonAndLCD.h"
123 /* Peripheral includes. */
126 /* Values that are passed into the reg test tasks using the task parameter.
127 The tasks check that the values are passed in correctly. */
128 #define mainREG_TEST_1_PARAMETER ( 0x12121212UL )
129 #define mainREG_TEST_2_PARAMETER ( 0x12345678UL )
131 /* Priorities at which the tasks are created. */
132 #define mainQUEUE_POLL_PRIORITY ( tskIDLE_PRIORITY + 1 )
133 #define mainSEM_TEST_PRIORITY ( tskIDLE_PRIORITY + 1 )
134 #define mainBLOCK_Q_PRIORITY ( tskIDLE_PRIORITY + 2 )
135 #define mainCREATOR_TASK_PRIORITY ( tskIDLE_PRIORITY + 3 )
136 #define mainFLASH_TASK_PRIORITY ( tskIDLE_PRIORITY + 1 )
137 #define mainINTEGER_TASK_PRIORITY ( tskIDLE_PRIORITY )
138 #define mainGEN_QUEUE_TASK_PRIORITY ( tskIDLE_PRIORITY )
139 #define mainFLOP_TASK_PRIORITY ( tskIDLE_PRIORITY )
141 /* The LED toggled by the check timer. */
142 #define mainCHECK_LED ( 3 )
144 /* The period at which the check timer will expire, in ms, provided no errors
145 have been reported by any of the standard demo tasks. ms are converted to the
146 equivalent in ticks using the portTICK_PERIOD_MS constant. */
147 #define mainCHECK_TIMER_PERIOD_MS ( 5000UL / portTICK_PERIOD_MS )
149 /* The period at which the check timer will expire, in ms, if an error has been
150 reported in one of the standard demo tasks. ms are converted to the equivalent
151 in ticks using the portTICK_PERIOD_MS constant. */
152 #define mainERROR_CHECK_TIMER_PERIOD_MS ( 200UL / portTICK_PERIOD_MS )
154 /* A block time of zero simple means "Don't Block". */
155 #define mainDONT_BLOCK ( 0UL )
158 * vApplicationMallocFailedHook() will only be called if
159 * configUSE_MALLOC_FAILED_HOOK is set to 1 in FreeRTOSConfig.h. It is a hook
160 * function that will execute if a call to pvPortMalloc() fails.
161 * pvPortMalloc() is called internally by the kernel whenever a task, queue or
162 * semaphore is created. It is also called by various parts of the demo
165 void vApplicationMallocFailedHook( void );
168 * vApplicationIdleHook() will only be called if configUSE_IDLE_HOOK is set to 1
169 * in FreeRTOSConfig.h. It is a hook function that is called on each iteration
170 * of the idle task. It is essential that code added to this hook function
171 * never attempts to block in any way (for example, call xQueueReceive() with
172 * a block time specified). If the application makes use of the vTaskDelete()
173 * API function (as this demo application does) then it is also important that
174 * vApplicationIdleHook() is permitted to return to its calling function because
175 * it is the responsibility of the idle task to clean up memory allocated by the
176 * kernel to any task that has since been deleted.
178 void vApplicationIdleHook( void );
181 * vApplicationStackOverflowHook() will only be called if
182 * configCHECK_FOR_STACK_OVERFLOW is set to a non-zero value. The handle and
183 * name of the offending task should be passed in the function parameters, but
184 * it is possible that the stack overflow will have corrupted these - in which
185 * case pxCurrentTCB can be inspected to find the same information.
187 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName );
190 * The reg test tasks as described at the top of this file.
192 static void prvRegTest1Task( void *pvParameters );
193 static void prvRegTest2Task( void *pvParameters );
196 * The actual implementation of the reg test functionality, which, because of
197 * the direct register access, have to be in assembly.
199 static void prvRegTest1Implementation( void );
200 static void prvRegTest2Implementation( void );
203 * The check timer callback function, as described at the top of this file.
205 static void prvCheckTimerCallback( TimerHandle_t xTimer );
208 /*-----------------------------------------------------------*/
210 /* Variables that are incremented on each iteration of the reg test tasks -
211 provided the tasks have not reported any errors. The check timer inspects these
212 variables to ensure they are still incrementing as expected. If a variable
213 stops incrementing then it is likely that its associate task has stalled. */
214 unsigned long ulRegTest1CycleCount = 0UL, ulRegTest2CycleCount = 0UL;
216 /* The check timer. This uses prvCheckTimerCallback() as its callback
218 static TimerHandle_t xCheckTimer = NULL;
220 /*-----------------------------------------------------------*/
224 extern void HardwareSetup( void );
226 /* Renesas provided CPU configuration routine. The clocks are configured in
230 /* Turn all LEDs off. */
231 vParTestInitialise();
233 /* Start the reg test tasks which test the context switching mechanism. */
234 xTaskCreate( prvRegTest1Task, "RegTst1", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_1_PARAMETER, tskIDLE_PRIORITY, NULL );
235 xTaskCreate( prvRegTest2Task, "RegTst2", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_2_PARAMETER, tskIDLE_PRIORITY, NULL );
237 /* The button and LCD tasks, as described at the top of this file. */
238 vStartButtonAndLCDDemo();
240 /* Create the standard demo tasks. */
241 vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );
242 vCreateBlockTimeTasks();
243 vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );
244 vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );
245 vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );
246 vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );
247 vStartLEDFlashTasks( mainFLASH_TASK_PRIORITY );
248 vStartQueuePeekTasks();
249 vStartRecursiveMutexTasks();
250 vStartInterruptQueueTasks();
252 /* The suicide tasks must be created last as they need to know how many
253 tasks were running prior to their creation in order to ascertain whether
254 or not the correct/expected number of tasks are running at any given time. */
255 vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );
257 /* Create the software timer that performs the 'check' functionality,
258 as described at the top of this file. */
259 xCheckTimer = xTimerCreate( "CheckTimer",/* A text name, purely to help debugging. */
260 ( mainCHECK_TIMER_PERIOD_MS ), /* The timer period, in this case 5000ms (5s). */
261 pdTRUE, /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */
262 ( void * ) 0, /* The ID is not used, so can be set to anything. */
263 prvCheckTimerCallback /* The callback function that inspects the status of all the other tasks. */
266 configASSERT( xCheckTimer );
268 /* Start the check timer. It will actually start when the scheduler is
270 xTimerStart( xCheckTimer, mainDONT_BLOCK );
272 /* Start the tasks running. */
273 vTaskStartScheduler();
275 /* If all is well we will never reach here as the scheduler will now be
276 running. If we do reach here then it is likely that there was insufficient
277 heap available for the idle task to be created. */
280 /*-----------------------------------------------------------*/
282 static void prvCheckTimerCallback( TimerHandle_t xTimer )
284 static long lChangedTimerPeriodAlready = pdFALSE, lErrorStatus = pdPASS;
285 static volatile unsigned long ulLastRegTest1CycleCount = 0UL, ulLastRegTest2CycleCount = 0UL;
287 /* Check the standard demo tasks are running without error. */
288 if( xAreGenericQueueTasksStillRunning() != pdTRUE )
290 lErrorStatus = pdFAIL;
292 else if( xAreQueuePeekTasksStillRunning() != pdTRUE )
294 lErrorStatus = pdFAIL;
296 else if( xAreBlockingQueuesStillRunning() != pdTRUE )
298 lErrorStatus = pdFAIL;
300 else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )
302 lErrorStatus = pdFAIL;
304 else if( xAreSemaphoreTasksStillRunning() != pdTRUE )
306 lErrorStatus = pdFAIL;
308 else if( xArePollingQueuesStillRunning() != pdTRUE )
310 lErrorStatus = pdFAIL;
312 else if( xIsCreateTaskStillRunning() != pdTRUE )
314 lErrorStatus = pdFAIL;
316 else if( xAreIntegerMathsTaskStillRunning() != pdTRUE )
318 lErrorStatus = pdFAIL;
320 else if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )
322 lErrorStatus = pdFAIL;
324 else if( xAreIntQueueTasksStillRunning() != pdPASS )
326 lErrorStatus = pdFAIL;
329 /* Check the reg test tasks are still cycling. They will stop incrementing
330 their loop counters if they encounter an error. */
331 if( ulRegTest1CycleCount == ulLastRegTest1CycleCount )
333 lErrorStatus = pdFAIL;
336 if( ulRegTest2CycleCount == ulLastRegTest2CycleCount )
338 lErrorStatus = pdFAIL;
341 ulLastRegTest1CycleCount = ulRegTest1CycleCount;
342 ulLastRegTest2CycleCount = ulRegTest2CycleCount;
344 /* Toggle the check LED to give an indication of the system status. If
345 the LED toggles every 5 seconds then everything is ok. A faster toggle
346 indicates an error. */
347 vParTestToggleLED( mainCHECK_LED );
349 /* Was an error detected this time through the callback execution? */
350 if( lErrorStatus != pdPASS )
352 if( lChangedTimerPeriodAlready == pdFALSE )
354 lChangedTimerPeriodAlready = pdTRUE;
356 /* This call to xTimerChangePeriod() uses a zero block time.
357 Functions called from inside of a timer callback function must
358 *never* attempt to block. */
359 xTimerChangePeriod( xCheckTimer, ( mainERROR_CHECK_TIMER_PERIOD_MS ), mainDONT_BLOCK );
363 /*-----------------------------------------------------------*/
365 /* The RX port uses this callback function to configure its tick interrupt.
366 This allows the application to choose the tick interrupt source. */
367 void vApplicationSetupTimerInterrupt( void )
369 /* Enable compare match timer 0. */
372 /* Interrupt on compare match. */
373 CMT0.CMCR.BIT.CMIE = 1;
375 /* Set the compare match value. */
376 CMT0.CMCOR = ( unsigned short ) ( ( ( configPERIPHERAL_CLOCK_HZ / configTICK_RATE_HZ ) -1 ) / 8 );
378 /* Divide the PCLK by 8. */
379 CMT0.CMCR.BIT.CKS = 0;
381 /* Enable the interrupt... */
382 _IEN( _CMT0_CMI0 ) = 1;
384 /* ...and set its priority to the application defined kernel priority. */
385 _IPR( _CMT0_CMI0 ) = configKERNEL_INTERRUPT_PRIORITY;
387 /* Start the timer. */
388 CMT.CMSTR0.BIT.STR0 = 1;
390 /*-----------------------------------------------------------*/
392 /* This function is explained by the comments above its prototype at the top
394 void vApplicationMallocFailedHook( void )
398 /*-----------------------------------------------------------*/
400 /* This function is explained by the comments above its prototype at the top
402 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )
406 /*-----------------------------------------------------------*/
408 /* This function is explained by the comments above its prototype at the top
410 void vApplicationIdleHook( void )
412 /* If this is being executed then the kernel has been started. Start the high
413 frequency timer test as described at the top of this file. This is only
414 included in the optimised build configuration - otherwise it takes up too much
415 CPU time and can disrupt other tests. */
416 #ifdef INCLUDE_HIGH_FREQUENCY_TIMER_TEST
417 static portBASE_TYPE xTimerTestStarted = pdFALSE;
418 extern void vSetupHighFrequencyTimer( void );
419 if( xTimerTestStarted == pdFALSE )
421 vSetupHighFrequencyTimer();
422 xTimerTestStarted = pdTRUE;
426 /*-----------------------------------------------------------*/
428 /* This function is explained in the comments at the top of this file. */
429 static void prvRegTest1Task( void *pvParameters )
431 if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_1_PARAMETER )
433 /* The parameter did not contain the expected value. */
436 /* Stop the tick interrupt so its obvious something has gone wrong. */
437 taskDISABLE_INTERRUPTS();
441 /* This is an inline asm function that never returns. */
442 prvRegTest1Implementation();
444 /*-----------------------------------------------------------*/
446 /* This function is explained in the comments at the top of this file. */
447 static void prvRegTest2Task( void *pvParameters )
449 if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_2_PARAMETER )
451 /* The parameter did not contain the expected value. */
454 /* Stop the tick interrupt so its obvious something has gone wrong. */
455 taskDISABLE_INTERRUPTS();
459 /* This is an inline asm function that never returns. */
460 prvRegTest2Implementation();
462 /*-----------------------------------------------------------*/
464 /* This function is explained in the comments at the top of this file. */
465 #pragma inline_asm prvRegTest1Implementation
466 static void prvRegTest1Implementation( void )
468 ; Put a known value in each register.
485 ; Loop, checking each iteration that each register still contains the
489 ; Push the registers that are going to get clobbered.
492 ; Increment the loop counter to show this task is still getting CPU time.
493 MOV.L #_ulRegTest1CycleCount, R14
498 ; Yield to extend the text coverage. Set the bit in the ITU SWINTR register.
505 ; Restore the clobbered registers.
508 ; Now compare each register to ensure it still contains the value that was
509 ; set before this loop was entered.
541 ; All comparisons passed, start a new itteratio of this loop.
545 ; A compare failed, just loop here so the loop counter stops incrementing
546 ; causing the check timer to indicate the error.
549 /*-----------------------------------------------------------*/
551 /* This function is explained in the comments at the top of this file. */
552 #pragma inline_asm prvRegTest2Implementation
553 static void prvRegTest2Implementation( void )
555 ; Put a known value in each register.
572 ; Loop, checking on each iteration that each register still contains the
576 ; Push the registers that are going to get clobbered.
579 ; Increment the loop counter to show this task is still getting CPU time.
580 MOV.L #_ulRegTest2CycleCount, R14
585 ; Restore the clobbered registers.
619 ; All comparisons passed, start a new itteratio of this loop.
623 ; A compare failed, just loop here so the loop counter stops incrementing
624 ; - causing the check timer to indicate the error.
627 /*-----------------------------------------------------------*/