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