2 FreeRTOS.org V5.0.3 - Copyright (C) 2003-2008 Richard Barry.
\r
4 This file is part of the FreeRTOS.org distribution.
\r
6 FreeRTOS.org is free software; you can redistribute it and/or modify
\r
7 it under the terms of the GNU General Public License as published by
\r
8 the Free Software Foundation; either version 2 of the License, or
\r
9 (at your option) any later version.
\r
11 FreeRTOS.org is distributed in the hope that it will be useful,
\r
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 GNU General Public License for more details.
\r
16 You should have received a copy of the GNU General Public License
\r
17 along with FreeRTOS.org; if not, write to the Free Software
\r
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
\r
20 A special exception to the GPL can be applied should you wish to distribute
\r
21 a combined work that includes FreeRTOS.org, without being obliged to provide
\r
22 the source code for any proprietary components. See the licensing section
\r
23 of http://www.FreeRTOS.org for full details of how and when the exception
\r
26 ***************************************************************************
\r
27 ***************************************************************************
\r
29 * SAVE TIME AND MONEY! We can port FreeRTOS.org to your own hardware, *
\r
30 * and even write all or part of your application on your behalf. *
\r
31 * See http://www.OpenRTOS.com for details of the services we provide to *
\r
32 * expedite your project. *
\r
34 ***************************************************************************
\r
35 ***************************************************************************
\r
37 Please ensure to read the configuration and relevant port sections of the
\r
38 online documentation.
\r
40 http://www.FreeRTOS.org - Documentation, latest information, license and
\r
43 http://www.SafeRTOS.com - A version that is certified for use in safety
\r
46 http://www.OpenRTOS.com - Commercial support, development, porting,
\r
47 licensing and training services.
\r
52 * Creates all the demo application tasks, then starts the scheduler. The WEB
\r
53 * documentation provides more details of the standard demo application tasks.
\r
54 * In addition to the standard demo tasks, the following tasks and tests are
\r
55 * defined and/or created within this file:
\r
57 * "Check" task - This only executes every five seconds but has a high priority
\r
58 * to ensure it gets processor time. Its main function is to check that all the
\r
59 * standard demo tasks are still operational. While no errors have been
\r
60 * discovered the check task will toggle an LED every 5 seconds - the toggle
\r
61 * rate increasing to 500ms being a visual indication that at least one task has
\r
62 * reported unexpected behaviour.
\r
64 * "Reg test" tasks - These fill the registers with known values, then check
\r
65 * that each register still contains its expected value. Each task uses
\r
66 * different values. The tasks run with very low priority so get preempted very
\r
67 * frequently. A register containing an unexpected value is indicative of an
\r
68 * error in the context switching mechanism.
\r
72 /* Standard includes. */
\r
75 /* Scheduler includes. */
\r
76 #include "FreeRTOS.h"
\r
81 /* Demo app includes. */
\r
84 #include "integer.h"
\r
86 #include "partest.h"
\r
87 #include "semtest.h"
\r
89 #include "GenQTest.h"
\r
91 #include "recmutex.h"
\r
92 #include "IntQueue.h"
\r
93 #include "comtest2.h"
\r
95 /*-----------------------------------------------------------*/
\r
97 /* The time between cycles of the 'check' functionality - as described at the
\r
98 top of this file. */
\r
99 #define mainNO_ERROR_PERIOD ( ( portTickType ) 5000 / portTICK_RATE_MS )
\r
101 /* The rate at which the LED controlled by the 'check' task will flash should an
\r
102 error have been detected. */
\r
103 #define mainERROR_PERIOD ( ( portTickType ) 500 / portTICK_RATE_MS )
\r
105 /* The LED controlled by the 'check' task. */
\r
106 #define mainCHECK_LED ( 3 )
\r
108 /* ComTest constants - there is no free LED for the comtest tasks. */
\r
109 #define mainCOM_TEST_BAUD_RATE ( ( unsigned portLONG ) 19200 )
\r
110 #define mainCOM_TEST_LED ( 5 )
\r
112 /* Task priorities. */
\r
113 #define mainCOM_TEST_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
114 #define mainQUEUE_POLL_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
115 #define mainCHECK_TASK_PRIORITY ( tskIDLE_PRIORITY + 3 )
\r
116 #define mainSEM_TEST_PRIORITY ( tskIDLE_PRIORITY + 1 )
\r
117 #define mainBLOCK_Q_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
118 #define mainCREATOR_TASK_PRIORITY ( tskIDLE_PRIORITY + 2 )
\r
119 #define mainINTEGER_TASK_PRIORITY ( tskIDLE_PRIORITY )
\r
120 #define mainGEN_QUEUE_TASK_PRIORITY ( tskIDLE_PRIORITY )
\r
123 * Configure the hardware for the demo.
\r
125 static void prvSetupHardware( void );
\r
128 * Implements the 'check' task functionality as described at the top of this
\r
131 static void prvCheckTask( void *pvParameters );
\r
134 * Implement the 'Reg test' functionality as described at the top of this file.
136 static void vRegTest1Task( void *pvParameters );
\r
137 static void vRegTest2Task( void *pvParameters );
\r
139 /*-----------------------------------------------------------*/
\r
141 /* Counters used to detect errors within the reg test tasks. */
\r
142 static volatile unsigned portLONG ulRegTest1Counter = 0x11111111, ulRegTest2Counter = 0x22222222;
\r
144 /*-----------------------------------------------------------*/
\r
148 /* Setup the hardware ready for this demo. */
\r
149 prvSetupHardware();
\r
151 /* Start the standard demo tasks. */
\r
152 vStartLEDFlashTasks( tskIDLE_PRIORITY );
\r
153 vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );
\r
154 vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );
\r
155 vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );
\r
156 vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );
\r
157 vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );
\r
158 vStartQueuePeekTasks();
\r
159 vStartRecursiveMutexTasks();
\r
160 vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );
\r
161 vStartInterruptQueueTasks();
\r
163 /* Start the reg test tasks - defined in this file. */
\r
164 xTaskCreate( vRegTest1Task, ( signed portCHAR * ) "Reg1", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest1Counter, tskIDLE_PRIORITY, NULL );
\r
165 xTaskCreate( vRegTest2Task, ( signed portCHAR * ) "Reg2", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest2Counter, tskIDLE_PRIORITY, NULL );
\r
167 /* Create the check task. */
\r
168 xTaskCreate( prvCheckTask, ( signed portCHAR * ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );
\r
170 /* The suicide tasks must be created last as they need to know how many
\r
171 tasks were running prior to their creation in order to ascertain whether
\r
172 or not the correct/expected number of tasks are running at any given time. */
\r
173 vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );
\r
175 /* Start the scheduler. */
\r
176 vTaskStartScheduler();
\r
178 /* Will only get here if there was insufficient memory to create the idle
\r
182 /*-----------------------------------------------------------*/
\r
184 static void prvCheckTask( void *pvParameters )
\r
186 unsigned ulTicksToWait = mainNO_ERROR_PERIOD, ulError = 0, ulLastRegTest1Count = 0, ulLastRegTest2Count = 0;
\r
187 portTickType xLastExecutionTime;
\r
189 ( void ) pvParameters;
\r
191 /* Initialise the variable used to control our iteration rate prior to
\r
193 xLastExecutionTime = xTaskGetTickCount();
\r
197 /* Wait until it is time to run the tests again. */
\r
198 vTaskDelayUntil( &xLastExecutionTime, ulTicksToWait );
\r
200 /* Has an error been found in any task? */
\r
201 if( xAreGenericQueueTasksStillRunning() != pdTRUE )
\r
206 if( xAreQueuePeekTasksStillRunning() != pdTRUE )
\r
211 if( xAreBlockingQueuesStillRunning() != pdTRUE )
\r
216 if( xAreSemaphoreTasksStillRunning() != pdTRUE )
\r
221 if( xArePollingQueuesStillRunning() != pdTRUE )
\r
226 if( xIsCreateTaskStillRunning() != pdTRUE )
\r
231 if( xAreIntegerMathsTaskStillRunning() != pdTRUE )
\r
233 ulError |= 0x100UL;
\r
236 if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )
\r
238 ulError |= 0x200UL;
\r
241 if( xAreComTestTasksStillRunning() != pdTRUE )
\r
243 ulError |= 0x400UL;
\r
246 if( xAreIntQueueTasksStillRunning() != pdTRUE )
\r
248 ulError |= 0x800UL;
\r
251 if( ulLastRegTest1Count == ulRegTest1Counter )
\r
253 ulError |= 0x1000UL;
\r
256 if( ulLastRegTest2Count == ulRegTest2Counter )
\r
258 ulError |= 0x1000UL;
\r
261 ulLastRegTest1Count = ulRegTest1Counter;
\r
262 ulLastRegTest2Count = ulRegTest2Counter;
\r
264 /* If an error has been found then increase our cycle rate, and in so
\r
265 going increase the rate at which the check task LED toggles. */
\r
268 ulTicksToWait = mainERROR_PERIOD;
\r
271 /* Toggle the LED each itteration. */
\r
272 vParTestToggleLED( mainCHECK_LED );
\r
275 /*-----------------------------------------------------------*/
\r
277 void prvSetupHardware( void )
\r
279 extern void mcf5xxx_wr_cacr( unsigned portLONG );
\r
281 portDISABLE_INTERRUPTS();
\r
283 /* Enable the cache. */
\r
284 mcf5xxx_wr_cacr( MCF5XXX_CACR_CENB | MCF5XXX_CACR_CINV | MCF5XXX_CACR_DISD | MCF5XXX_CACR_CEIB | MCF5XXX_CACR_CLNF_00 );
\r
285 asm volatile( "NOP" ); /* As per errata. */
\r
287 /* Multiply 8Mhz reference crystal by 8 to achieve system clock of 64Mhz. */
\r
288 MCF_CLOCK_SYNCR = MCF_CLOCK_SYNCR_MFD( 2 );
\r
290 /* Wait for PLL to lock. */
\r
291 while( !( MCF_CLOCK_SYNSR & MCF_CLOCK_SYNSR_LOCK ) )
\r
293 __asm__ volatile ( "NOP" );
\r
296 /* Setup the port used to toggle LEDs. */
\r
297 vParTestInitialise();
\r
299 /*-----------------------------------------------------------*/
\r
301 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName )
\r
303 /* This will get called if a stack overflow is detected during the context
\r
304 switch. Set configCHECK_FOR_STACK_OVERFLOWS to 2 to also check for stack
\r
305 problems within nested interrupts, but only do this for debug purposes as
\r
306 it will increase the context switch time. */
\r
309 ( void ) pcTaskName;
\r
313 /*-----------------------------------------------------------*/
\r
315 static void vRegTest1Task( void *pvParameters )
\r
317 /* Sanity check - did we receive the parameter expected? */
\r
318 if( pvParameters != &ulRegTest1Counter )
\r
320 /* Change here so the check task can detect that an error occurred. */
\r
324 /* Set all the registers to known values, then check that each retains its
\r
325 expected value - as described at the top of this file. If an error is
\r
326 found then the loop counter will no longer be incremented allowing the check
\r
327 task to recognise the error. */
328 asm volatile ( "reg_test_1_start: \n\t"
\r
329 " moveq #1, %d0 \n\t"
\r
330 " moveq #2, %d1 \n\t"
\r
331 " moveq #3, %d2 \n\t"
\r
332 " moveq #4, %d3 \n\t"
\r
333 " moveq #5, %d4 \n\t"
\r
334 " moveq #6, %d5 \n\t"
\r
335 " moveq #7, %d6 \n\t"
\r
336 " moveq #8, %d7 \n\t"
\r
337 " move #9, %a0 \n\t"
\r
338 " move #10, %a1 \n\t"
\r
339 " move #11, %a2 \n\t"
\r
340 " move #12, %a3 \n\t"
\r
341 " move #13, %a4 \n\t"
\r
342 " move #14, %a5 \n\t"
\r
343 " move #15, %a6 \n\t"
\r
345 " cmpi.l #1, %d0 \n\t"
\r
346 " bne reg_test_1_error \n\t"
\r
347 " cmpi.l #2, %d1 \n\t"
\r
348 " bne reg_test_1_error \n\t"
\r
349 " cmpi.l #3, %d2 \n\t"
\r
350 " bne reg_test_1_error \n\t"
\r
351 " cmpi.l #4, %d3 \n\t"
\r
352 " bne reg_test_1_error \n\t"
\r
353 " cmpi.l #5, %d4 \n\t"
\r
354 " bne reg_test_1_error \n\t"
\r
355 " cmpi.l #6, %d5 \n\t"
\r
356 " bne reg_test_1_error \n\t"
\r
357 " cmpi.l #7, %d6 \n\t"
\r
358 " bne reg_test_1_error \n\t"
\r
359 " cmpi.l #8, %d7 \n\t"
\r
360 " bne reg_test_1_error \n\t"
\r
361 " move %a0, %d0 \n\t"
\r
362 " cmpi.l #9, %d0 \n\t"
\r
363 " bne reg_test_1_error \n\t"
\r
364 " move %a1, %d0 \n\t"
\r
365 " cmpi.l #10, %d0 \n\t"
\r
366 " bne reg_test_1_error \n\t"
\r
367 " move %a2, %d0 \n\t"
\r
368 " cmpi.l #11, %d0 \n\t"
\r
369 " bne reg_test_1_error \n\t"
\r
370 " move %a3, %d0 \n\t"
\r
371 " cmpi.l #12, %d0 \n\t"
\r
372 " bne reg_test_1_error \n\t"
\r
373 " move %a4, %d0 \n\t"
\r
374 " cmpi.l #13, %d0 \n\t"
\r
375 " bne reg_test_1_error \n\t"
\r
376 " move %a5, %d0 \n\t"
\r
377 " cmpi.l #14, %d0 \n\t"
\r
378 " bne reg_test_1_error \n\t"
\r
379 " move %a6, %d0 \n\t"
\r
380 " cmpi.l #15, %d0 \n\t"
\r
381 " bne reg_test_1_error \n\t"
\r
382 " movel ulRegTest1Counter, %d0 \n\t"
\r
383 " addql #1, %d0 \n\t"
\r
384 " movel %d0, ulRegTest1Counter \n\t"
\r
385 " bra reg_test_1_start \n\t"
\r
386 "reg_test_1_error: \n\t"
\r
387 " bra reg_test_1_error \n\t"
\r
390 /*-----------------------------------------------------------*/
\r
392 static void vRegTest2Task( void *pvParameters )
\r
394 /* Sanity check - did we receive the parameter expected? */
\r
395 if( pvParameters != &ulRegTest1Counter )
\r
397 /* Change here so the check task can detect that an error occurred. */
\r
401 /* Set all the registers to known values, then check that each retains its
\r
402 expected value - as described at the top of this file. If an error is
\r
403 found then the loop counter will no longer be incremented allowing the check
\r
404 task to recognise the error. */
\r
405 asm volatile ( "reg_test_2_start: \n\t"
\r
406 " moveq #10, %d0 \n\t"
\r
407 " moveq #20, %d1 \n\t"
\r
408 " moveq #30, %d2 \n\t"
\r
409 " moveq #40, %d3 \n\t"
\r
410 " moveq #50, %d4 \n\t"
\r
411 " moveq #60, %d5 \n\t"
\r
412 " moveq #70, %d6 \n\t"
\r
413 " moveq #80, %d7 \n\t"
\r
414 " move #90, %a0 \n\t"
\r
415 " move #100, %a1 \n\t"
\r
416 " move #110, %a2 \n\t"
\r
417 " move #120, %a3 \n\t"
\r
418 " move #130, %a4 \n\t"
\r
419 " move #140, %a5 \n\t"
\r
420 " move #150, %a6 \n\t"
\r
422 " cmpi.l #10, %d0 \n\t"
\r
423 " bne reg_test_2_error \n\t"
\r
424 " cmpi.l #20, %d1 \n\t"
\r
425 " bne reg_test_2_error \n\t"
\r
426 " cmpi.l #30, %d2 \n\t"
\r
427 " bne reg_test_2_error \n\t"
\r
428 " cmpi.l #40, %d3 \n\t"
\r
429 " bne reg_test_2_error \n\t"
\r
430 " cmpi.l #50, %d4 \n\t"
\r
431 " bne reg_test_2_error \n\t"
\r
432 " cmpi.l #60, %d5 \n\t"
\r
433 " bne reg_test_2_error \n\t"
\r
434 " cmpi.l #70, %d6 \n\t"
\r
435 " bne reg_test_2_error \n\t"
\r
436 " cmpi.l #80, %d7 \n\t"
\r
437 " bne reg_test_2_error \n\t"
\r
438 " move %a0, %d0 \n\t"
\r
439 " cmpi.l #90, %d0 \n\t"
\r
440 " bne reg_test_2_error \n\t"
\r
441 " move %a1, %d0 \n\t"
\r
442 " cmpi.l #100, %d0 \n\t"
\r
443 " bne reg_test_2_error \n\t"
\r
444 " move %a2, %d0 \n\t"
\r
445 " cmpi.l #110, %d0 \n\t"
\r
446 " bne reg_test_2_error \n\t"
\r
447 " move %a3, %d0 \n\t"
\r
448 " cmpi.l #120, %d0 \n\t"
\r
449 " bne reg_test_2_error \n\t"
\r
450 " move %a4, %d0 \n\t"
\r
451 " cmpi.l #130, %d0 \n\t"
\r
452 " bne reg_test_2_error \n\t"
\r
453 " move %a5, %d0 \n\t"
\r
454 " cmpi.l #140, %d0 \n\t"
\r
455 " bne reg_test_2_error \n\t"
\r
456 " move %a6, %d0 \n\t"
\r
457 " cmpi.l #150, %d0 \n\t"
\r
458 " bne reg_test_2_error \n\t"
\r
459 " movel ulRegTest1Counter, %d0 \n\t"
\r
460 " addql #1, %d0 \n\t"
\r
461 " movel %d0, ulRegTest2Counter \n\t"
\r
462 " bra reg_test_2_start \n\t"
\r
463 "reg_test_2_error: \n\t"
\r
464 " bra reg_test_2_error \n\t"
\r
467 /*-----------------------------------------------------------*/
\r