]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RX600_RX62N-RSK_Renesas/RTOSDemo/main-full.c
e2ebd0810b28c777fda1ca0aa9db98526d557461
[freertos] / FreeRTOS / Demo / RX600_RX62N-RSK_Renesas / RTOSDemo / main-full.c
1 /*\r
2     FreeRTOS V7.1.1 - Copyright (C) 2012 Real Time Engineers Ltd.\r
3         \r
4 \r
5     ***************************************************************************\r
6      *                                                                       *\r
7      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
8      *    Complete, revised, and edited pdf reference manuals are also       *\r
9      *    available.                                                         *\r
10      *                                                                       *\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
17      *                                                                       *\r
18      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
19      *                                                                       *\r
20      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
21      *                                                                       *\r
22     ***************************************************************************\r
23 \r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \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
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43     \r
44     ***************************************************************************\r
45      *                                                                       *\r
46      *    Having a problem?  Start by reading the FAQ "My application does   *\r
47      *    not run, what could be wrong?                                      *\r
48      *                                                                       *\r
49      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
50      *                                                                       *\r
51     ***************************************************************************\r
52 \r
53     \r
54     http://www.FreeRTOS.org - Documentation, training, latest information, \r
55     license and contact details.\r
56     \r
57     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
58     including FreeRTOS+Trace - an indispensable productivity tool.\r
59 \r
60     Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
61     the code with commercial support, indemnification, and middleware, under \r
62     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
63     provide a safety engineered and independently SIL3 certified version under \r
64     the SafeRTOS brand: http://www.SafeRTOS.com.\r
65 */\r
66 \r
67 /* ****************************************************************************\r
68  * This project includes a lot of tasks and tests and is therefore complex.\r
69  * If you would prefer a much simpler project to get started with then select\r
70  * the 'Blinky' build configuration within the HEW IDE.\r
71  * ****************************************************************************\r
72  *\r
73  * Creates all the demo application tasks, then starts the scheduler.  The web\r
74  * documentation provides more details of the standard demo application tasks,\r
75  * which provide no particular functionality but do provide a good example of\r
76  * how to use the FreeRTOS API.  The tasks defined in flop.c are included in the\r
77  * set of standard demo tasks to ensure the floating point unit gets some\r
78  * exercise.\r
79  *\r
80  * In addition to the standard demo tasks, the following tasks and tests are\r
81  * defined and/or created within this file:\r
82  *\r
83  * Webserver ("uIP") task - This serves a number of dynamically generated WEB\r
84  * pages to a standard WEB browser.  The IP and MAC addresses are configured by\r
85  * constants defined at the bottom of FreeRTOSConfig.h.  Use either a standard\r
86  * Ethernet cable to connect through a hug, or a cross over (point to point)\r
87  * cable to connect directly.  Ensure the IP address used is compatible with the\r
88  * IP address of the machine running the browser - the easiest way to achieve\r
89  * this is to ensure the first three octets of the IP addresses are the same.\r
90  *\r
91  * "Reg test" tasks - These fill the registers with known values, then check\r
92  * that each register still contains its expected value.  Each task uses\r
93  * different values.  The tasks run with very low priority so get preempted\r
94  * very frequently.  A check variable is incremented on each iteration of the\r
95  * test loop.  A register containing an unexpected value is indicative of an\r
96  * error in the context switching mechanism and will result in a branch to a\r
97  * null loop - which in turn will prevent the check variable from incrementing\r
98  * any further and allow the check task (described below) to determine that an\r
99  * error has occurred.  The nature of the reg test tasks necessitates that they\r
100  * are written in assembly code.\r
101  *\r
102  * "Check" task - This only executes every five seconds but has a high priority\r
103  * to ensure it gets processor time.  Its main function is to check that all the\r
104  * standard demo tasks are still operational.  While no errors have been\r
105  * discovered the check task will toggle LED 5 every 5 seconds - the toggle\r
106  * rate increasing to 200ms being a visual indication that at least one task has\r
107  * reported unexpected behaviour.\r
108  *\r
109  * "High frequency timer test" - A high frequency periodic interrupt is\r
110  * generated using a timer - the interrupt is assigned a priority above\r
111  * configMAX_SYSCALL_INTERRUPT_PRIORITY so should not be effected by anything\r
112  * the kernel is doing.  The frequency and priority of the interrupt, in\r
113  * combination with other standard tests executed in this demo, should result\r
114  * in interrupts nesting at least 3 and probably 4 deep.  This test is only\r
115  * included in build configurations that have the optimiser switched on.  In\r
116  * optimised builds the count of high frequency ticks is used as the time base\r
117  * for the run time stats.\r
118  *\r
119  * *NOTE 1* If LED5 is toggling every 5 seconds then all the demo application\r
120  * tasks are executing as expected and no errors have been reported in any\r
121  * tasks.  The toggle rate increasing to 200ms indicates that at least one task\r
122  * has reported unexpected behaviour.\r
123  *\r
124  * *NOTE 2* vApplicationSetupTimerInterrupt() is called by the kernel to let\r
125  * the application set up a timer to generate the tick interrupt.  In this\r
126  * example a compare match timer is used for this purpose.\r
127  *\r
128  * *NOTE 3* The CPU must be in Supervisor mode when the scheduler is started.\r
129  * The PowerON_Reset_PC() supplied in resetprg.c with this demo has\r
130  * Change_PSW_PM_to_UserMode() commented out to ensure this is the case.\r
131  *\r
132  * *NOTE 4* The IntQueue common demo tasks test interrupt nesting and make use\r
133  * of all the 8bit timers (as two cascaded 16bit units).\r
134 */\r
135 \r
136 /* Hardware specific includes. */\r
137 #include "iodefine.h"\r
138 \r
139 /* Kernel includes. */\r
140 #include "FreeRTOS.h"\r
141 #include "task.h"\r
142 \r
143 /* Standard demo includes. */\r
144 #include "partest.h"\r
145 #include "flash.h"\r
146 #include "IntQueue.h"\r
147 #include "BlockQ.h"\r
148 #include "death.h"\r
149 #include "integer.h"\r
150 #include "blocktim.h"\r
151 #include "semtest.h"\r
152 #include "PollQ.h"\r
153 #include "GenQTest.h"\r
154 #include "QPeek.h"\r
155 #include "recmutex.h"\r
156 #include "flop.h"\r
157 \r
158 /* Values that are passed into the reg test tasks using the task parameter.  The\r
159 tasks check that the values are passed in correctly. */\r
160 #define mainREG_TEST_1_PARAMETER        ( 0x12121212UL )\r
161 #define mainREG_TEST_2_PARAMETER        ( 0x12345678UL )\r
162 \r
163 /* Priorities at which the tasks are created. */\r
164 #define mainCHECK_TASK_PRIORITY         ( configMAX_PRIORITIES - 1 )\r
165 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 1 )\r
166 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
167 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
168 #define mainCREATOR_TASK_PRIORITY   ( tskIDLE_PRIORITY + 3 )\r
169 #define mainFLASH_TASK_PRIORITY         ( tskIDLE_PRIORITY + 1 )\r
170 #define mainuIP_TASK_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
171 #define mainINTEGER_TASK_PRIORITY   ( tskIDLE_PRIORITY )\r
172 #define mainGEN_QUEUE_TASK_PRIORITY     ( tskIDLE_PRIORITY )\r
173 #define mainFLOP_TASK_PRIORITY          ( tskIDLE_PRIORITY )\r
174 \r
175 /* The WEB server uses string handling functions, which in turn use a bit more\r
176 stack than most of the other tasks. */\r
177 #define mainuIP_STACK_SIZE                      ( configMINIMAL_STACK_SIZE * 3 )\r
178 \r
179 /* The LED toggled by the check task. */\r
180 #define mainCHECK_LED                           ( 5 )\r
181 \r
182 /* The rate at which mainCHECK_LED will toggle when all the tasks are running\r
183 without error.  Controlled by the check task as described at the top of this\r
184 file. */\r
185 #define mainNO_ERROR_CYCLE_TIME         ( 5000 / portTICK_RATE_MS )\r
186 \r
187 /* The rate at which mainCHECK_LED will toggle when an error has been reported\r
188 by at least one task.  Controlled by the check task as described at the top of\r
189 this file. */\r
190 #define mainERROR_CYCLE_TIME            ( 200 / portTICK_RATE_MS )\r
191 \r
192 /*\r
193  * vApplicationMallocFailedHook() will only be called if\r
194  * configUSE_MALLOC_FAILED_HOOK is set to 1 in FreeRTOSConfig.h.  It is a hook\r
195  * function that will execute if a call to pvPortMalloc() fails.\r
196  * pvPortMalloc() is called internally by the kernel whenever a task, queue or\r
197  * semaphore is created.  It is also called by various parts of the demo\r
198  * application.\r
199  */\r
200 void vApplicationMallocFailedHook( void );\r
201 \r
202 /*\r
203  * vApplicationIdleHook() will only be called if configUSE_IDLE_HOOK is set to 1\r
204  * in FreeRTOSConfig.h.  It is a hook function that is called on each iteration\r
205  * of the idle task.  It is essential that code added to this hook function\r
206  * never attempts to block in any way (for example, call xQueueReceive() with\r
207  * a block time specified).  If the application makes use of the vTaskDelete()\r
208  * API function (as this demo application does) then it is also important that\r
209  * vApplicationIdleHook() is permitted to return to its calling function because\r
210  * it is the responsibility of the idle task to clean up memory allocated by the\r
211  * kernel to any task that has since been deleted.\r
212  */\r
213 void vApplicationIdleHook( void );\r
214 \r
215 /*\r
216  * vApplicationStackOverflowHook() will only be called if\r
217  * configCHECK_FOR_STACK_OVERFLOW is set to a non-zero value.  The handle and\r
218  * name of the offending task should be passed in the function parameters, but\r
219  * it is possible that the stack overflow will have corrupted these - in which\r
220  * case pxCurrentTCB can be inspected to find the same information.\r
221  */\r
222 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );\r
223 \r
224 /*\r
225  * The reg test tasks as described at the top of this file.\r
226  */\r
227 static void prvRegTest1Task( void *pvParameters );\r
228 static void prvRegTest2Task( void *pvParameters );\r
229 \r
230 /*\r
231  * The actual implementation of the reg test functionality, which, because of\r
232  * the direct register access, have to be in assembly.\r
233  */\r
234 static void prvRegTest1Implementation( void );\r
235 static void prvRegTest2Implementation( void );\r
236 \r
237 /*\r
238  * The check task as described at the top of this file.\r
239  */\r
240 static void prvCheckTask( void *pvParameters );\r
241 \r
242 /*\r
243  * Contains the implementation of the WEB server.\r
244  */\r
245 extern void vuIP_Task( void *pvParameters );\r
246 \r
247 /*-----------------------------------------------------------*/\r
248 \r
249 /* Variables that are incremented on each iteration of the reg test tasks -\r
250 provided the tasks have not reported any errors.  The check task inspects these\r
251 variables to ensure they are still incrementing as expected.  If a variable\r
252 stops incrementing then it is likely that its associate task has stalled. */\r
253 unsigned long ulRegTest1CycleCount = 0UL, ulRegTest2CycleCount = 0UL;\r
254 \r
255 /* The status message that is displayed at the bottom of the "task stats" web\r
256 page, which is served by the uIP task.  This will report any errors picked up\r
257 by the reg test task. */\r
258 const char *pcStatusMessage = "All tasks executing without error.";\r
259 \r
260 /*-----------------------------------------------------------*/\r
261 \r
262 void main(void)\r
263 {\r
264 extern void HardwareSetup( void );\r
265 \r
266         /* Renesas provided CPU configuration routine.  The clocks are configured in\r
267         here. */\r
268         HardwareSetup();\r
269 \r
270         /* Turn all LEDs off. */\r
271         vParTestInitialise();\r
272 \r
273         /* Start the reg test tasks which test the context switching mechanism. */\r
274         xTaskCreate( prvRegTest1Task, "RegTst1", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_1_PARAMETER, tskIDLE_PRIORITY, NULL );\r
275         xTaskCreate( prvRegTest2Task, "RegTst2", configMINIMAL_STACK_SIZE, ( void * ) mainREG_TEST_2_PARAMETER, tskIDLE_PRIORITY, NULL );\r
276 \r
277         /* The web server task. */\r
278         xTaskCreate( vuIP_Task, "uIP", mainuIP_STACK_SIZE, NULL, mainuIP_TASK_PRIORITY, NULL );\r
279 \r
280         /* Start the check task as described at the top of this file. */\r
281         xTaskCreate( prvCheckTask, "Check", configMINIMAL_STACK_SIZE * 3, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
282 \r
283         /* Create the standard demo tasks. */\r
284         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
285         vCreateBlockTimeTasks();\r
286         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
287         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
288         vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );\r
289         vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
290         vStartLEDFlashTasks( mainFLASH_TASK_PRIORITY );\r
291         vStartQueuePeekTasks();\r
292         vStartRecursiveMutexTasks();\r
293         vStartInterruptQueueTasks();\r
294         vStartMathTasks( mainFLOP_TASK_PRIORITY );\r
295 \r
296         /* The suicide tasks must be created last as they need to know how many\r
297         tasks were running prior to their creation in order to ascertain whether\r
298         or not the correct/expected number of tasks are running at any given time. */\r
299         vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );\r
300 \r
301         /* Start the tasks running. */\r
302         vTaskStartScheduler();\r
303 \r
304         /* If all is well we will never reach here as the scheduler will now be\r
305         running.  If we do reach here then it is likely that there was insufficient\r
306         heap available for the idle task to be created. */\r
307         for( ;; );\r
308 }\r
309 /*-----------------------------------------------------------*/\r
310 \r
311 static void prvCheckTask( void *pvParameters )\r
312 {\r
313 static volatile unsigned long ulLastRegTest1CycleCount = 0UL, ulLastRegTest2CycleCount = 0UL;\r
314 portTickType xNextWakeTime, xCycleFrequency = mainNO_ERROR_CYCLE_TIME;\r
315 extern void vSetupHighFrequencyTimer( void );\r
316 \r
317         /* If this is being executed then the kernel has been started.  Start the high\r
318         frequency timer test as described at the top of this file.  This is only\r
319         included in the optimised build configuration - otherwise it takes up too much\r
320         CPU time and can disrupt other tests. */\r
321         #ifdef INCLUDE_HIGH_FREQUENCY_TIMER_TEST\r
322                 vSetupHighFrequencyTimer();\r
323         #endif\r
324 \r
325         /* Initialise xNextWakeTime - this only needs to be done once. */\r
326         xNextWakeTime = xTaskGetTickCount();\r
327 \r
328         for( ;; )\r
329         {\r
330                 /* Place this task in the blocked state until it is time to run again. */\r
331                 vTaskDelayUntil( &xNextWakeTime, xCycleFrequency );\r
332 \r
333                 /* Check the standard demo tasks are running without error. */\r
334                 if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
335                 {\r
336                         /* Increase the rate at which this task cycles, which will increase the\r
337                         rate at which mainCHECK_LED flashes to give visual feedback that an error\r
338                         has occurred. */\r
339                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
340                         pcStatusMessage = "Error: GenQueue";\r
341                 }\r
342                 else if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
343                 {\r
344                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
345                         pcStatusMessage = "Error: QueuePeek";\r
346                 }\r
347                 else if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
348                 {\r
349                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
350                         pcStatusMessage = "Error: BlockQueue";\r
351                 }\r
352                 else if( xAreBlockTimeTestTasksStillRunning() != pdTRUE )\r
353                 {\r
354                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
355                         pcStatusMessage = "Error: BlockTime";\r
356                 }\r
357                 else if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
358                 {\r
359                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
360                         pcStatusMessage = "Error: SemTest";\r
361                 }\r
362                 else if( xArePollingQueuesStillRunning() != pdTRUE )\r
363                 {\r
364                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
365                         pcStatusMessage = "Error: PollQueue";\r
366                 }\r
367                 else if( xIsCreateTaskStillRunning() != pdTRUE )\r
368                 {\r
369                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
370                         pcStatusMessage = "Error: Death";\r
371                 }\r
372                 else if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
373                 {\r
374                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
375                         pcStatusMessage = "Error: IntMath";\r
376                 }\r
377                 else if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
378                 {\r
379                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
380                         pcStatusMessage = "Error: RecMutex";\r
381                 }\r
382                 else if( xAreIntQueueTasksStillRunning() != pdPASS )\r
383                 {\r
384                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
385                         pcStatusMessage = "Error: IntQueue";\r
386                 }\r
387                 else if( xAreMathsTaskStillRunning() != pdPASS )\r
388                 {\r
389                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
390                         pcStatusMessage = "Error: Flop";\r
391                 }\r
392 \r
393                 /* Check the reg test tasks are still cycling.  They will stop incrementing\r
394                 their loop counters if they encounter an error. */\r
395                 if( ulRegTest1CycleCount == ulLastRegTest1CycleCount )\r
396                 {\r
397                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
398                         pcStatusMessage = "Error: RegTest1";\r
399                 }\r
400 \r
401                 if( ulRegTest2CycleCount == ulLastRegTest2CycleCount )\r
402                 {\r
403                         xCycleFrequency = mainERROR_CYCLE_TIME;\r
404                         pcStatusMessage = "Error: RegTest2";\r
405                 }\r
406 \r
407                 ulLastRegTest1CycleCount = ulRegTest1CycleCount;\r
408                 ulLastRegTest2CycleCount = ulRegTest2CycleCount;\r
409 \r
410                 /* Toggle the check LED to give an indication of the system status.  If\r
411                 the LED toggles every 5 seconds then everything is ok.  A faster toggle\r
412                 indicates an error. */\r
413                 vParTestToggleLED( mainCHECK_LED );\r
414         }\r
415 }\r
416 /*-----------------------------------------------------------*/\r
417 \r
418 /* The RX port uses this callback function to configure its tick interrupt.\r
419 This allows the application to choose the tick interrupt source. */\r
420 void vApplicationSetupTimerInterrupt( void )\r
421 {\r
422         /* Enable compare match timer 0. */\r
423         MSTP( CMT0 ) = 0;\r
424 \r
425         /* Interrupt on compare match. */\r
426         CMT0.CMCR.BIT.CMIE = 1;\r
427 \r
428         /* Set the compare match value. */\r
429         CMT0.CMCOR = ( unsigned short ) ( ( ( configPERIPHERAL_CLOCK_HZ / configTICK_RATE_HZ ) -1 ) / 8 );\r
430 \r
431         /* Divide the PCLK by 8. */\r
432         CMT0.CMCR.BIT.CKS = 0;\r
433 \r
434         /* Enable the interrupt... */\r
435         _IEN( _CMT0_CMI0 ) = 1;\r
436 \r
437         /* ...and set its priority to the application defined kernel priority. */\r
438         _IPR( _CMT0_CMI0 ) = configKERNEL_INTERRUPT_PRIORITY;\r
439 \r
440         /* Start the timer. */\r
441         CMT.CMSTR0.BIT.STR0 = 1;\r
442 }\r
443 /*-----------------------------------------------------------*/\r
444 \r
445 /* This function is explained by the comments above its prototype at the top\r
446 of this file. */\r
447 void vApplicationMallocFailedHook( void )\r
448 {\r
449         for( ;; );\r
450 }\r
451 /*-----------------------------------------------------------*/\r
452 \r
453 /* This function is explained by the comments above its prototype at the top\r
454 of this file. */\r
455 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )\r
456 {\r
457         for( ;; );\r
458 }\r
459 /*-----------------------------------------------------------*/\r
460 \r
461 /* This function is explained by the comments above its prototype at the top\r
462 of this file. */\r
463 void vApplicationIdleHook( void )\r
464 {\r
465 }\r
466 /*-----------------------------------------------------------*/\r
467 \r
468 /* This function is explained in the comments at the top of this file. */\r
469 static void prvRegTest1Task( void *pvParameters )\r
470 {\r
471         if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_1_PARAMETER )\r
472         {\r
473                 /* The parameter did not contain the expected value. */\r
474                 for( ;; )\r
475                 {\r
476                         /* Stop the tick interrupt so its obvious something has gone wrong. */\r
477                         taskDISABLE_INTERRUPTS();\r
478                 }\r
479         }\r
480 \r
481         /* This is an inline asm function that never returns. */\r
482         prvRegTest1Implementation();\r
483 }\r
484 /*-----------------------------------------------------------*/\r
485 \r
486 /* This function is explained in the comments at the top of this file. */\r
487 static void prvRegTest2Task( void *pvParameters )\r
488 {\r
489         if( ( ( unsigned long ) pvParameters ) != mainREG_TEST_2_PARAMETER )\r
490         {\r
491                 /* The parameter did not contain the expected value. */\r
492                 for( ;; )\r
493                 {\r
494                         /* Stop the tick interrupt so its obvious something has gone wrong. */\r
495                         taskDISABLE_INTERRUPTS();\r
496                 }\r
497         }\r
498 \r
499         /* This is an inline asm function that never returns. */\r
500         prvRegTest2Implementation();\r
501 }\r
502 /*-----------------------------------------------------------*/\r
503 \r
504 /* This function is explained in the comments at the top of this file. */\r
505 #pragma inline_asm prvRegTest1Implementation\r
506 static void prvRegTest1Implementation( void )\r
507 {\r
508         ; Put a known value in each register.\r
509         MOV.L   #1, R1\r
510         MOV.L   #2, R2\r
511         MOV.L   #3, R3\r
512         MOV.L   #4, R4\r
513         MOV.L   #5, R5\r
514         MOV.L   #6, R6\r
515         MOV.L   #7, R7\r
516         MOV.L   #8, R8\r
517         MOV.L   #9, R9\r
518         MOV.L   #10, R10\r
519         MOV.L   #11, R11\r
520         MOV.L   #12, R12\r
521         MOV.L   #13, R13\r
522         MOV.L   #14, R14\r
523         MOV.L   #15, R15\r
524 \r
525         ; Loop, checking each itteration that each register still contains the\r
526         ; expected value.\r
527 TestLoop1:\r
528 \r
529         ; Push the registers that are going to get clobbered.\r
530         PUSHM   R14-R15\r
531 \r
532         ; Increment the loop counter to show this task is still getting CPU time.\r
533         MOV.L   #_ulRegTest1CycleCount, R14\r
534         MOV.L   [ R14 ], R15\r
535         ADD             #1, R15\r
536         MOV.L   R15, [ R14 ]\r
537 \r
538         ; Yield to extend the text coverage.  Set the bit in the ITU SWINTR register.\r
539         MOV.L   #1, R14\r
540         MOV.L   #0872E0H, R15\r
541         MOV.B   R14, [R15]\r
542         NOP\r
543         NOP\r
544 \r
545         ; Restore the clobbered registers.\r
546         POPM    R14-R15\r
547 \r
548         ; Now compare each register to ensure it still contains the value that was\r
549         ; set before this loop was entered.\r
550         CMP             #1, R1\r
551         BNE             RegTest1Error\r
552         CMP             #2, R2\r
553         BNE             RegTest1Error\r
554         CMP             #3, R3\r
555         BNE             RegTest1Error\r
556         CMP             #4, R4\r
557         BNE             RegTest1Error\r
558         CMP             #5, R5\r
559         BNE             RegTest1Error\r
560         CMP             #6, R6\r
561         BNE             RegTest1Error\r
562         CMP             #7, R7\r
563         BNE             RegTest1Error\r
564         CMP             #8, R8\r
565         BNE             RegTest1Error\r
566         CMP             #9, R9\r
567         BNE             RegTest1Error\r
568         CMP             #10, R10\r
569         BNE             RegTest1Error\r
570         CMP             #11, R11\r
571         BNE             RegTest1Error\r
572         CMP             #12, R12\r
573         BNE             RegTest1Error\r
574         CMP             #13, R13\r
575         BNE             RegTest1Error\r
576         CMP             #14, R14\r
577         BNE             RegTest1Error\r
578         CMP             #15, R15\r
579         BNE             RegTest1Error\r
580 \r
581         ; All comparisons passed, start a new itteratio of this loop.\r
582         BRA             TestLoop1\r
583 \r
584 RegTest1Error:\r
585         ; A compare failed, just loop here so the loop counter stops incrementing\r
586         ; causing the check task to indicate the error.\r
587         BRA RegTest1Error\r
588 }\r
589 /*-----------------------------------------------------------*/\r
590 \r
591 /* This function is explained in the comments at the top of this file. */\r
592 #pragma inline_asm prvRegTest2Implementation\r
593 static void prvRegTest2Implementation( void )\r
594 {\r
595         ; Put a known value in each register.\r
596         MOV.L   #10, R1\r
597         MOV.L   #20, R2\r
598         MOV.L   #30, R3\r
599         MOV.L   #40, R4\r
600         MOV.L   #50, R5\r
601         MOV.L   #60, R6\r
602         MOV.L   #70, R7\r
603         MOV.L   #80, R8\r
604         MOV.L   #90, R9\r
605         MOV.L   #100, R10\r
606         MOV.L   #110, R11\r
607         MOV.L   #120, R12\r
608         MOV.L   #130, R13\r
609         MOV.L   #140, R14\r
610         MOV.L   #150, R15\r
611 \r
612         ; Loop, checking on each itteration that each register still contains the\r
613         ; expected value.\r
614 TestLoop2:\r
615 \r
616         ; Push the registers that are going to get clobbered.\r
617         PUSHM   R14-R15\r
618 \r
619         ; Increment the loop counter to show this task is still getting CPU time.\r
620         MOV.L   #_ulRegTest2CycleCount, R14\r
621         MOV.L   [ R14 ], R15\r
622         ADD             #1, R15\r
623         MOV.L   R15, [ R14 ]\r
624 \r
625         ; Restore the clobbered registers.\r
626         POPM    R14-R15\r
627 \r
628         CMP             #10, R1\r
629         BNE             RegTest2Error\r
630         CMP             #20, R2\r
631         BNE             RegTest2Error\r
632         CMP             #30, R3\r
633         BNE             RegTest2Error\r
634         CMP             #40, R4\r
635         BNE             RegTest2Error\r
636         CMP             #50, R5\r
637         BNE             RegTest2Error\r
638         CMP             #60, R6\r
639         BNE             RegTest2Error\r
640         CMP             #70, R7\r
641         BNE             RegTest2Error\r
642         CMP             #80, R8\r
643         BNE             RegTest2Error\r
644         CMP             #90, R9\r
645         BNE             RegTest2Error\r
646         CMP             #100, R10\r
647         BNE             RegTest2Error\r
648         CMP             #110, R11\r
649         BNE             RegTest2Error\r
650         CMP             #120, R12\r
651         BNE             RegTest2Error\r
652         CMP             #130, R13\r
653         BNE             RegTest2Error\r
654         CMP             #140, R14\r
655         BNE             RegTest2Error\r
656         CMP             #150, R15\r
657         BNE             RegTest2Error\r
658 \r
659         ; All comparisons passed, start a new itteratio of this loop.\r
660         BRA             TestLoop2\r
661 \r
662 RegTest2Error:\r
663         ; A compare failed, just loop here so the loop counter stops incrementing\r
664         ; - causing the check task to indicate the error.\r
665         BRA RegTest2Error\r
666 }\r
667 /*-----------------------------------------------------------*/\r
668 \r
669 char *pcGetTaskStatusMessage( void )\r
670 {\r
671         /* Not bothered about a critical section here although technically because of\r
672         the task priorities the pointer could change it will be atomic if not near\r
673         atomic and its not critical. */\r
674         return ( char * ) pcStatusMessage;\r
675 }\r
676 /*-----------------------------------------------------------*/\r
677 \r
678 \r