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