blob: 3cfb6f43a74730909a125f5deaf375267aed60a3 [file] [log] [blame]
/*
FreeRTOS V7.4.2 - Copyright (C) 2013 Real Time Engineers Ltd.
FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME. PLEASE VISIT
http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
***************************************************************************
* *
* FreeRTOS tutorial books are available in pdf and paperback. *
* Complete, revised, and edited pdf reference manuals are also *
* available. *
* *
* Purchasing FreeRTOS documentation will not only help you, by *
* ensuring you get running as quickly as possible and with an *
* in-depth knowledge of how to use FreeRTOS, it will also help *
* the FreeRTOS project to continue with its mission of providing *
* professional grade, cross platform, de facto standard solutions *
* for microcontrollers - completely free of charge! *
* *
* >>> See http://www.FreeRTOS.org/Documentation for details. <<< *
* *
* Thank you for using FreeRTOS, and thank you for your support! *
* *
***************************************************************************
This file is part of the FreeRTOS distribution.
FreeRTOS is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License (version 2) as published by the
Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
>>>>>>NOTE<<<<<< The modification to the GPL is included to allow you to
distribute a combined work that includes FreeRTOS without being obliged to
provide the source code for proprietary components outside of the FreeRTOS
kernel.
FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
details. You should have received a copy of the GNU General Public License
and the FreeRTOS license exception along with FreeRTOS; if not it can be
viewed here: http://www.freertos.org/a00114.html and also obtained by
writing to Real Time Engineers Ltd., contact details for whom are available
on the FreeRTOS WEB site.
1 tab == 4 spaces!
***************************************************************************
* *
* Having a problem? Start by reading the FAQ "My application does *
* not run, what could be wrong?" *
* *
* http://www.FreeRTOS.org/FAQHelp.html *
* *
***************************************************************************
http://www.FreeRTOS.org - Documentation, books, training, latest versions,
license and Real Time Engineers Ltd. contact details.
http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
including FreeRTOS+Trace - an indispensable productivity tool, and our new
fully thread aware and reentrant UDP/IP stack.
http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High
Integrity Systems, who sell the code with commercial support,
indemnification and middleware, under the OpenRTOS brand.
http://www.SafeRTOS.com - High Integrity Systems also provide a safety
engineered and independently SIL3 certified version for use in safety and
mission critical applications that require provable dependability.
*/
/* ****************************************************************************
* This project includes a lot of tasks and tests and is therefore complex.
* If you would prefer a much simpler project to get started with then select
* the 'low power' demo by setting configCREATE_LOW_POWER_DEMO to 1 in
* FreeRTOSConfig.h. When configCREATE_LOW_POWER_DEMO is set to 1 main() will
* call main_low_power() instead of main_full().
* ****************************************************************************
*
* Creates all the demo application tasks, then starts the scheduler. The web
* documentation provides more details of the standard demo application tasks,
* which provide no particular functionality but do provide a good example of
* how to use the FreeRTOS API.
*
* In addition to the standard demo tasks, the following tasks and tests are
* defined and/or created within this file:
*
* "Reg test" tasks - These fill the registers with known values, then
* repeatedly check that each register still contains its expected value for
* the lifetime of the tasks. Each task uses different values. The tasks run
* with very low priority so get preempted very frequently. A check variable
* is incremented on each iteration of the test loop. A register containing an
* unexpected value is indicative of an error in the context switching
* mechanism and will result in a branch to a null loop - which in turn will
* prevent the check variable from incrementing any further and allow the check
* timer (described below) to determine that an error has occurred. The nature
* of the reg test tasks necessitates that they are written in assembly code.
*
* "Check Timer" and Callback Function - The check timer period is initially
* set to three seconds. The check timer callback function checks that all the
* standard demo tasks are not only still executing, but are executing without
* reporting any errors. If the check timer discovers that a task has either
* stalled, or reported an error, then it changes its own period from the
* initial three seconds, to just 200ms. The check timer callback function
* also toggles LED 0 each time it is called. This provides a visual
* indication of the system status: If the LED toggles every three seconds,
* then no issues have been discovered. If the LED toggles every 200ms, then
* an issue has been discovered with at least one task.
*
* *NOTE 1* The CPU must be in Supervisor mode when the scheduler is started.
* The PowerON_Reset_PC() supplied in resetprg.c with this demo has
* Change_PSW_PM_to_UserMode() commented out to ensure this is the case.
*/
/* Standard includes. */
#include <string.h>
/* Hardware specific includes. */
#include "iodefine.h"
/* Kernel includes. */
#include "FreeRTOS.h"
#include "task.h"
#include "timers.h"
#include "semphr.h"
/* Standard demo includes. */
#include "partest.h"
#include "death.h"
#include "blocktim.h"
#include "GenQTest.h"
#include "recmutex.h"
/* The code in this file is only built when configCREATE_LOW_POWER_DEMO is set
to 0, otherwise the code in main_low_power.c is used. */
#if configCREATE_LOW_POWER_DEMO == 0
/* Values that are passed into the reg test tasks using the task parameter.
The tasks check that the values are passed in correctly. */
#define mainREG_TEST_1_PARAMETER ( 0x12121212UL )
#define mainREG_TEST_2_PARAMETER ( 0x12345678UL )
/* Priorities at which the standard demo tasks are created. */
#define mainGEN_QUEUE_TASK_PRIORITY ( tskIDLE_PRIORITY )
#define mainCREATOR_TASK_PRIORITY ( tskIDLE_PRIORITY + 3 )
/* The LED toggled by the check timer. */
#define mainCHECK_LED ( 0 )
/* The period at which the check timer will expire, in ms, provided no errors
have been reported by any of the standard demo tasks. ms are converted to the
equivalent in ticks using the portTICK_RATE_MS constant. */
#define mainCHECK_TIMER_PERIOD_MS ( 3000UL / portTICK_RATE_MS )
/* The period at which the check timer will expire, in ms, if an error has been
reported in one of the standard demo tasks. ms are converted to the equivalent
in ticks using the portTICK_RATE_MS constant. */
#define mainERROR_CHECK_TIMER_PERIOD_MS ( 200UL / portTICK_RATE_MS )
/* A block time of zero simple means "Don't Block". */
#define mainDONT_BLOCK ( 0UL )
/*
* The reg test tasks as described at the top of this file.
*/
static void prvRegTest1Task( void *pvParameters );
static void prvRegTest2Task( void *pvParameters );
/*
* The actual implementation of the reg test functionality, which, because of
* the direct register access, have to be in assembly.
*/
static void prvRegTest1Implementation( void ) __attribute__(( naked ));
static void prvRegTest2Implementation( void ) __attribute__(( naked ));
/*
* The check timer callback function, as described at the top of this file.
*/
static void prvCheckTimerCallback( xTimerHandle xTimer );
/*-----------------------------------------------------------*/
/* Variables that are incremented on each iteration of the reg test tasks -
provided the tasks have not reported any errors. The check timer inspects these
variables to ensure they are still incrementing as expected. If a variable
stops incrementing then it is likely that its associated task has stalled. */
unsigned long ulRegTest1CycleCount = 0UL, ulRegTest2CycleCount = 0UL;
/* The check timer. This uses prvCheckTimerCallback() as its callback
function. */
static xTimerHandle xCheckTimer = NULL;
/*-----------------------------------------------------------*/
void main_full( void )
{
/* Start the reg test tasks which test the context switching mechanism. */
xTaskCreate( prvRegTest1Task, "RegTst1", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_1_PARAMETER, tskIDLE_PRIORITY, NULL );
xTaskCreate( prvRegTest2Task, "RegTst2", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_2_PARAMETER, tskIDLE_PRIORITY, NULL );
/* Create the standard demo tasks. */
vCreateBlockTimeTasks();
vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );
vStartRecursiveMutexTasks();
/* The suicide tasks must be created last as they need to know how many
tasks were running prior to their creation in order to ascertain whether
or not the correct/expected number of tasks are running at any given time. */
vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );
/* Create the software timer that performs the 'check' functionality,
as described at the top of this file. */
xCheckTimer = xTimerCreate( ( const signed char * ) "CheckTimer",/* A text name, purely to help debugging. */
( mainCHECK_TIMER_PERIOD_MS ), /* The timer period, in this case 5000ms (5s). */
pdTRUE, /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */
( void * ) 0, /* The ID is not used, so can be set to anything. */
prvCheckTimerCallback /* The callback function that inspects the status of all the other tasks. */
);
configASSERT( xCheckTimer );
/* Start the check timer. It will actually start when the scheduler is
started. */
xTimerStart( xCheckTimer, mainDONT_BLOCK );
/* Start the tasks running. */
vTaskStartScheduler();
/* If all is well execution will never reach here as the scheduler will be
running. If this null loop is reached then it is likely there was
insufficient FreeRTOS heap available for the idle task and/or timer task to
be created. See http://www.freertos.org/a00111.html. */
for( ;; );
}
/*-----------------------------------------------------------*/
static void prvCheckTimerCallback( xTimerHandle xTimer )
{
static long lChangedTimerPeriodAlready = pdFALSE, lErrorStatus = pdPASS;
static volatile unsigned long ulLastRegTest1CycleCount = 0UL, ulLastRegTest2CycleCount = 0UL;
/* Remove compiler warnings about unused parameters. */
( void ) xTimer;
/* Check the standard demo tasks are running without error. */
if( xAreGenericQueueTasksStillRunning() != pdTRUE )
{
lErrorStatus = pdFAIL;
}
else if( xIsCreateTaskStillRunning() != pdTRUE )
{
lErrorStatus = pdFAIL;
}
else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )
{
lErrorStatus = pdFAIL;
}
else if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )
{
lErrorStatus = pdFAIL;
}
/* Check the reg test tasks are still cycling. They will stop incrementing
their loop counters if they encounter an error. */
if( ulRegTest1CycleCount == ulLastRegTest1CycleCount )
{
lErrorStatus = pdFAIL;
}
if( ulRegTest2CycleCount == ulLastRegTest2CycleCount )
{
lErrorStatus = pdFAIL;
}
/* Remember the loop counter values this time around so they can be checked
again the next time this callback function executes. */
ulLastRegTest1CycleCount = ulRegTest1CycleCount;
ulLastRegTest2CycleCount = ulRegTest2CycleCount;
/* Toggle the check LED to give an indication of the system status. If
the LED toggles every three seconds then everything is ok. A faster toggle
indicates an error. */
vParTestToggleLED( mainCHECK_LED );
/* Was an error detected this time through the callback execution? */
if( lErrorStatus != pdPASS )
{
if( lChangedTimerPeriodAlready == pdFALSE )
{
lChangedTimerPeriodAlready = pdTRUE;
/* This call to xTimerChangePeriod() uses a zero block time.
Functions called from inside of a timer callback function must
*never* attempt to block. */
xTimerChangePeriod( xCheckTimer, ( mainERROR_CHECK_TIMER_PERIOD_MS ), mainDONT_BLOCK );
}
}
}
/*-----------------------------------------------------------*/
/* This function is explained in the comments at the top of this file. */
static void prvRegTest1Task( void *pvParameters )
{
if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_1_PARAMETER )
{
/* The parameter did not contain the expected value. */
for( ;; )
{
/* Stop the tick interrupt so its obvious something has gone wrong. */
taskDISABLE_INTERRUPTS();
}
}
/* This is an inline asm function that never returns. */
prvRegTest1Implementation();
}
/*-----------------------------------------------------------*/
/* This function is explained in the comments at the top of this file. */
static void prvRegTest2Task( void *pvParameters )
{
if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_2_PARAMETER )
{
/* The parameter did not contain the expected value. */
for( ;; )
{
/* Stop the tick interrupt so its obvious something has gone wrong. */
taskDISABLE_INTERRUPTS();
}
}
/* This is an inline asm function that never returns. */
prvRegTest2Implementation();
}
/*-----------------------------------------------------------*/
/* This function is explained in the comments at the top of this file. */
static void prvRegTest1Implementation( void )
{
__asm volatile
(
/* Set each register to a known value. */
" MOV.L #0x33333333, R15 \n\t"
" MVTACHI R15 \n\t"
" MOV.L #0x44444444, R15 \n\t"
" MVTACLO R15 \n\t"
" MOV.L #1, R1 \n\t"
" MOV.L #2, R2 \n\t"
" MOV.L #3, R3 \n\t"
" MOV.L #4, R4 \n\t"
" MOV.L #5, R5 \n\t"
" MOV.L #6, R6 \n\t"
" MOV.L #7, R7 \n\t"
" MOV.L #8, R8 \n\t"
" MOV.L #9, R9 \n\t"
" MOV.L #10, R10 \n\t"
" MOV.L #11, R11 \n\t"
" MOV.L #12, R12 \n\t"
" MOV.L #13, R13 \n\t"
" MOV.L #14, R14 \n\t"
" MOV.L #15, R15 \n\t"
" \n\t"
/* Loop, checking each iteration that each register still contains the
expected value. */
"TestLoop1: \n\t"
" \n\t"
/* Push the registers that are going to get clobbered. */
" PUSHM R14-R15 \n\t"
" \n\t"
/* Increment the loop counter to show this task is still getting CPU
time. */
" MOV.L #_ulRegTest1CycleCount, R14 \n\t"
" MOV.L [ R14 ], R15 \n\t"
" ADD #1, R15 \n\t"
" MOV.L R15, [ R14 ] \n\t"
" \n\t"
/* Yield to extend the text coverage. Set the bit in the ITU SWINTR
register. */
" MOV.L #1, R14 \n\t"
" MOV.L #0872E0H, R15 \n\t"
" MOV.B R14, [R15] \n\t"
" NOP \n\t"
" NOP \n\t"
" \n\t"
/* Check the accumulator value. */
" MVFACHI R15 \n\t"
" CMP #0x33333333, R15 \n\t"
" BNE RegTest2Error \n\t"
" MVFACMI R15 \n\t"
" CMP #0x33334444, R15 \n\t"
" BNE RegTest2Error \n\t"
" \n\t"
/* Restore the clobbered registers. */
" POPM R14-R15 \n\t"
" \n\t"
/* Now compare each register to ensure it still contains the value that
was set before this loop was entered. */
" CMP #1, R1 \n\t"
" BNE RegTest1Error \n\t"
" CMP #2, R2 \n\t"
" BNE RegTest1Error \n\t"
" CMP #3, R3 \n\t"
" BNE RegTest1Error \n\t"
" CMP #4, R4 \n\t"
" BNE RegTest1Error \n\t"
" CMP #5, R5 \n\t"
" BNE RegTest1Error \n\t"
" CMP #6, R6 \n\t"
" BNE RegTest1Error \n\t"
" CMP #7, R7 \n\t"
" BNE RegTest1Error \n\t"
" CMP #8, R8 \n\t"
" BNE RegTest1Error \n\t"
" CMP #9, R9 \n\t"
" BNE RegTest1Error \n\t"
" CMP #10, R10 \n\t"
" BNE RegTest1Error \n\t"
" CMP #11, R11 \n\t"
" BNE RegTest1Error \n\t"
" CMP #12, R12 \n\t"
" BNE RegTest1Error \n\t"
" CMP #13, R13 \n\t"
" BNE RegTest1Error \n\t"
" CMP #14, R14 \n\t"
" BNE RegTest1Error \n\t"
" CMP #15, R15 \n\t"
" BNE RegTest1Error \n\t"
" \n\t"
/* All comparisons passed, start a new iteration of this loop. */
" BRA TestLoop1 \n\t"
" \n\t"
/* A compare failed, just loop here so the loop counter stops
incrementing causing the check timer to indicate the error. */
"RegTest1Error: \n\t"
" BRA RegTest1Error "
);
}
/*-----------------------------------------------------------*/
/* This function is explained in the comments at the top of this file. */
static void prvRegTest2Implementation( void )
{
__asm volatile
(
/* Set each register to a known value. */
" MOV.L #0x11111111, R15 \n\t"
" MVTACHI R15 \n\t"
" MOV.L #0x22222222, R15 \n\t"
" MVTACLO R15 \n\t"
" MOV.L #100, R1 \n\t"
" MOV.L #200, R2 \n\t"
" MOV.L #300, R3 \n\t"
" MOV.L #400, R4 \n\t"
" MOV.L #500, R5 \n\t"
" MOV.L #600, R6 \n\t"
" MOV.L #700, R7 \n\t"
" MOV.L #800, R8 \n\t"
" MOV.L #900, R9 \n\t"
" MOV.L #1000, R10 \n\t"
" MOV.L #1001, R11 \n\t"
" MOV.L #1002, R12 \n\t"
" MOV.L #1003, R13 \n\t"
" MOV.L #1004, R14 \n\t"
" MOV.L #1005, R15 \n\t"
" \n\t"
/* Loop, checking each iteration that each register still contains the
expected value. */
"TestLoop2: \n\t"
" \n\t"
/* Push the registers that are going to get clobbered. */
" PUSHM R14-R15 \n\t"
" \n\t"
/* Increment the loop counter to show this task is still getting CPU
time. */
" MOV.L #_ulRegTest2CycleCount, R14 \n\t"
" MOV.L [ R14 ], R15 \n\t"
" ADD #1, R15 \n\t"
" MOV.L R15, [ R14 ] \n\t"
" \n\t"
/* Check the accumulator value. */
" MVFACHI R15 \n\t"
" CMP #0x11111111, R15 \n\t"
" BNE RegTest2Error \n\t"
" MVFACMI R15 \n\t"
" CMP #0x11112222, R15 \n\t"
" BNE RegTest2Error \n\t"
" \n\t"
/* Restore the clobbered registers. */
" POPM R14-R15 \n\t"
" \n\t"
/* Now compare each register to ensure it still contains the value that
was set before this loop was entered. */
" CMP #100, R1 \n\t"
" BNE RegTest2Error \n\t"
" CMP #200, R2 \n\t"
" BNE RegTest2Error \n\t"
" CMP #300, R3 \n\t"
" BNE RegTest2Error \n\t"
" CMP #400, R4 \n\t"
" BNE RegTest2Error \n\t"
" CMP #500, R5 \n\t"
" BNE RegTest2Error \n\t"
" CMP #600, R6 \n\t"
" BNE RegTest2Error \n\t"
" CMP #700, R7 \n\t"
" BNE RegTest2Error \n\t"
" CMP #800, R8 \n\t"
" BNE RegTest2Error \n\t"
" CMP #900, R9 \n\t"
" BNE RegTest2Error \n\t"
" CMP #1000, R10 \n\t"
" BNE RegTest2Error \n\t"
" CMP #1001, R11 \n\t"
" BNE RegTest2Error \n\t"
" CMP #1002, R12 \n\t"
" BNE RegTest2Error \n\t"
" CMP #1003, R13 \n\t"
" BNE RegTest2Error \n\t"
" CMP #1004, R14 \n\t"
" BNE RegTest2Error \n\t"
" CMP #1005, R15 \n\t"
" BNE RegTest2Error \n\t"
" \n\t"
/* All comparisons passed, start a new iteration of this loop. */
" BRA TestLoop2 \n\t"
" \n\t"
/* A compare failed, just loop here so the loop counter stops
incrementing causing the check timer to indicate the error. */
"RegTest2Error: \n\t"
" BRA RegTest2Error "
);
}
/*-----------------------------------------------------------*/
#endif /* configCREATE_LOW_POWER_DEMO */