]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_MPU_LM3Sxxxx_Rowley/main.c
Remove unnecessary use of portLONG, portCHAR and portSHORT.
[freertos] / Demo / CORTEX_MPU_LM3Sxxxx_Rowley / main.c
1 /*\r
2     FreeRTOS V6.0.0 - Copyright (C) 2009 Real Time Engineers Ltd.\r
3 \r
4     This file is part of the FreeRTOS distribution.\r
5 \r
6     FreeRTOS is free software; you can redistribute it and/or modify it    under\r
7     the terms of the GNU General Public License (version 2) as published by the\r
8     Free Software Foundation and modified by the FreeRTOS exception.\r
9     **NOTE** The exception to the GPL is included to allow you to distribute a\r
10     combined work that includes FreeRTOS without being obliged to provide the\r
11     source code for proprietary components outside of the FreeRTOS kernel.\r
12     Alternative commercial license and support terms are also available upon\r
13     request.  See the licensing section of http://www.FreeRTOS.org for full\r
14     license details.\r
15 \r
16     FreeRTOS is distributed in the hope that it will be useful,    but WITHOUT\r
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
19     more details.\r
20 \r
21     You should have received a copy of the GNU General Public License along\r
22     with FreeRTOS; if not, write to the Free Software Foundation, Inc., 59\r
23     Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
24 \r
25 \r
26     ***************************************************************************\r
27     *                                                                         *\r
28     * The FreeRTOS eBook and reference manual are available to purchase for a *\r
29     * small fee. Help yourself get started quickly while also helping the     *\r
30     * FreeRTOS project! See http://www.FreeRTOS.org/Documentation for details *\r
31     *                                                                         *\r
32     ***************************************************************************\r
33 \r
34     1 tab == 4 spaces!\r
35 \r
36     Please ensure to read the configuration and relevant port sections of the\r
37     online documentation.\r
38 \r
39     http://www.FreeRTOS.org - Documentation, latest information, license and\r
40     contact details.\r
41 \r
42     http://www.SafeRTOS.com - A version that is certified for use in safety\r
43     critical systems.\r
44 \r
45     http://www.OpenRTOS.com - Commercial support, development, porting,\r
46     licensing and training services.\r
47 */\r
48 \r
49 /* Standard includes. */\r
50 #include <string.h>\r
51 #include <__cross_studio_io.h>\r
52 \r
53 /* Scheduler includes. */\r
54 #include "FreeRTOS.h"\r
55 #include "task.h"\r
56 #include "queue.h"\r
57 #include "semphr.h"\r
58 \r
59 /* Hardware library includes. */\r
60 #include "hw_types.h"\r
61 #include "hw_sysctl.h"\r
62 #include "sysctl.h"\r
63 \r
64 /*\r
65  * This file demonstrates the use of MPU using just three tasks - two 'reg test'\r
66  * tasks and one 'check' task.  Read the comments above the\r
67  * function prototypes for more information.\r
68  */\r
69 \r
70 /*-----------------------------------------------------------*/\r
71 \r
72 /* Misc constants. */\r
73 #define mainDONT_BLOCK                                  ( 0 )\r
74 \r
75 /* Definitions for the messages that can be sent to the check task. */\r
76 #define mainREG_TEST_1_STILL_EXECUTING  ( 0 )\r
77 #define mainREG_TEST_2_STILL_EXECUTING  ( 1 )\r
78 #define mainPRINT_SYSTEM_STATUS                 ( 2 )\r
79 \r
80 /* GCC specifics. */\r
81 #define mainALIGN_TO( x )                               __attribute__((aligned(x)))\r
82 \r
83 \r
84 /*-----------------------------------------------------------*/\r
85 /* Prototypes for functions that implement tasks. -----------*/\r
86 /*-----------------------------------------------------------*/\r
87 \r
88 /* \r
89  * Prototype for the reg test tasks.  Amongst other things, these fill the CPU\r
90  * registers with known values before checking that the registers still contain\r
91  * the expected values.  Each of the two tasks use different values so an error\r
92  * in the context switch mechanism can be caught.  Both reg test tasks execute\r
93  * at the idle priority so will get preempted regularly.\r
94  */\r
95 static void prvRegTest1Task( void *pvParameters );\r
96 static void prvRegTest2Task( void *pvParameters );\r
97 \r
98 /*\r
99  * Prototype for the check task.  The check task demonstrates various features\r
100  * of the MPU before entering a loop where it waits for commands to arrive on a\r
101  * queue.\r
102  *\r
103  * The check task will periodically be commanded to print out a status message.\r
104  * If both the reg tests tasks are executing as expected the check task will\r
105  * print "PASS" to the debug port, otherwise it will print 'FAIL'.  Debug port\r
106  * messages can be viewed within the CrossWorks IDE.\r
107  */\r
108 static void prvCheckTask( void *pvParameters );\r
109 \r
110 \r
111 \r
112 /*-----------------------------------------------------------*/\r
113 /* Prototypes for other misc functions.  --------------------*/\r
114 /*-----------------------------------------------------------*/\r
115 \r
116 /*\r
117  * Just configures any clocks and IO necessary.\r
118  */\r
119 static void prvSetupHardware( void );\r
120 \r
121 /*\r
122  * Simply deletes the calling task.  The function is provided only because it\r
123  * is simpler to call from asm code than the normal vTaskDelete() API function.\r
124  * It has the noinline attribute because it is called from asm code.\r
125  */\r
126 static void prvDeleteMe( void ) __attribute__((noinline));\r
127 \r
128 /*\r
129  * Used by both reg test tasks to send messages to the check task.  The message\r
130  * just lets the check task know that the sending is still functioning correctly.\r
131  * If a reg test task detects an error it will delete itself, and in so doing\r
132  * prevent itself from sending any more 'I'm Alive' messages to the check task.\r
133  */\r
134 static void prvSendImAlive( xQueueHandle xHandle, unsigned long ulTaskNumber );\r
135 \r
136 /*\r
137  * The check task is created with access to three memory regions (plus its\r
138  * stack).  Each memory region is configured with different parameters and\r
139  * prvTestMemoryRegions() demonstrates what can and cannot be accessed for each\r
140  * region.  prvTestMemoryRegions() also demonstrates a task that was created\r
141  * as a privileged task settings its own privilege level down to that of a user\r
142  * task.\r
143  */\r
144 static void prvTestMemoryRegions( void );\r
145 \r
146 /*-----------------------------------------------------------*/\r
147 \r
148 /* The handle of the queue used to communicate between tasks and between tasks\r
149 and interrupts.  Note that this is a file scope variable that falls outside of\r
150 any MPU region.  As such other techniques have to be used to allow the tasks\r
151 to gain access to the queue.  See the comments in the tasks themselves for \r
152 further information. */\r
153 static xQueueHandle xFileScopeCheckQueue = NULL;\r
154 \r
155 \r
156 \r
157 /*-----------------------------------------------------------*/\r
158 /* Data used by the 'check' task. ---------------------------*/\r
159 /*-----------------------------------------------------------*/\r
160 \r
161 /* Define the constants used to allocate the check task stack.  Note that the\r
162 stack size is defined in words, not bytes. */\r
163 #define mainCHECK_TASK_STACK_SIZE_WORDS 128\r
164 #define mainCHECK_TASK_STACK_ALIGNMENT ( mainCHECK_TASK_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
165 \r
166 /* Declare the stack that will be used by the check task.  The kernel will\r
167  automatically create an MPU region for the stack.  The stack alignment must \r
168  match its size, so if 128 words are reserved for the stack then it must be \r
169  aligned to ( 128 * 4 ) bytes. */\r
170 static portSTACK_TYPE xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] mainALIGN_TO( mainCHECK_TASK_STACK_ALIGNMENT );\r
171 \r
172 /* Declare three arrays - an MPU region will be created for each array\r
173  using the xTaskParameters structure below.  Note that the arrays allocate \r
174 slightly more RAM than is actually assigned to the MPU region.  This is to \r
175 permit writes off the end of the array to be detected even when the arrays are \r
176 placed in adjacent memory locations (with no gaps between them).  The align \r
177 size must be a power of two. */\r
178 #define mainREAD_WRITE_ARRAY_SIZE 130\r
179 #define mainREAD_WRITE_ALIGN_SIZE 128\r
180 char cReadWriteArray[ mainREAD_WRITE_ARRAY_SIZE ] mainALIGN_TO( mainREAD_WRITE_ALIGN_SIZE );\r
181 \r
182 #define mainREAD_ONLY_ARRAY_SIZE 260\r
183 #define mainREAD_ONLY_ALIGN_SIZE 256\r
184 char cReadOnlyArray[ mainREAD_ONLY_ARRAY_SIZE ] mainALIGN_TO( mainREAD_ONLY_ALIGN_SIZE );\r
185 \r
186 #define mainPRIVILEGED_ONLY_ACCESS_ARRAY_SIZE 130\r
187 #define mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE 128\r
188 char cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] mainALIGN_TO( mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE );\r
189 \r
190 /* Fill in a xTaskParameters structure to define the check task. */\r
191 static const xTaskParameters xCheckTaskParameters =\r
192 {\r
193         prvCheckTask,                                                           /* pvTaskCode - the function that implements the task. */\r
194         ( signed char * ) "Check",                                      /* pcName                       */\r
195         mainCHECK_TASK_STACK_SIZE_WORDS,                        /* usStackDepth - defined in words, not bytes. */\r
196         ( void * ) 0x12121212,                                          /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
197         ( tskIDLE_PRIORITY + 1 ) | portPRIVILEGE_BIT,/* uxPriority - this is the highest priority task in the system.  The task is created in privileged mode to demonstrate accessing the privileged only data. */\r
198         xCheckTaskStack,                                                        /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
199 \r
200         /* xRegions - In this case the xRegions array is used to create MPU regions\r
201         for all three of the arrays declared directly above.  Each MPU region is\r
202         created with different parameters. */\r
203         {                                                                                       \r
204                 /* Base address                                 Length                                                                  Parameters */\r
205         { cReadWriteArray,                              mainREAD_WRITE_ALIGN_SIZE,                              portMPU_REGION_READ_WRITE },\r
206         { cReadOnlyArray,                               mainREAD_ONLY_ALIGN_SIZE,                               portMPU_REGION_READ_ONLY },\r
207         { cPrivilegedOnlyAccessArray,   mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE,  portMPU_REGION_PRIVILEGED_READ_WRITE }\r
208         }\r
209 };\r
210 \r
211 /* Three MPU regions are defined for use by the 'check' task when the task is \r
212 created.  These are only used to demonstrate the MPU features and are not\r
213 actually necessary for the check task to fulfill its primary purpose.  Instead\r
214 the MPU regions are replaced with those defined by xAltRegions prior to the \r
215 check task receiving any data on the queue or printing any messages to the\r
216 debug console.  The region configured by xAltRegions just gives the check task\r
217 access to the debug variables that form part of the Rowley library, and are\r
218 accessed within the debug_printf() function. */\r
219 extern unsigned long dbgCntrlWord_mempoll;\r
220 static const xMemoryRegion xAltRegions[ portNUM_CONFIGURABLE_REGIONS ] =\r
221 {                                                                                       \r
222         /* Base address                                         Length          Parameters */\r
223         { ( void * ) &dbgCntrlWord_mempoll,     32,                     portMPU_REGION_READ_WRITE },\r
224         { 0,                                                            0,                      0 },\r
225         { 0,                                                            0,                      0 }\r
226 };\r
227 \r
228 \r
229 \r
230 /*-----------------------------------------------------------*/\r
231 /* Data used by the 'reg test' tasks. -----------------------*/\r
232 /*-----------------------------------------------------------*/\r
233 \r
234 /* Define the constants used to allocate the reg test task stacks.  Note that\r
235 that stack size is defined in words, not bytes. */\r
236 #define mainREG_TEST_STACK_SIZE_WORDS   128\r
237 #define mainREG_TEST_STACK_ALIGNMENT    ( mainREG_TEST_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
238 \r
239 /* Declare the stacks that will be used by the reg test tasks.  The kernel will\r
240 automatically create an MPU region for the stack.  The stack alignment must \r
241 match its size, so if 128 words are reserved for the stack then it must be \r
242 aligned to ( 128 * 4 ) bytes. */\r
243 static portSTACK_TYPE xRegTest1Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
244 static portSTACK_TYPE xRegTest2Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
245 \r
246 /* Fill in a xTaskParameters structure per reg test task to define the tasks. */\r
247 static const xTaskParameters xRegTest1Parameters =\r
248 {\r
249         prvRegTest1Task,                                                /* pvTaskCode - the function that implements the task. */\r
250         ( signed char * ) "RegTest1",                   /* pcName                       */\r
251         mainREG_TEST_STACK_SIZE_WORDS,                  /* usStackDepth         */\r
252         ( void * ) 0x12345678,                                  /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
253         tskIDLE_PRIORITY | portPRIVILEGE_BIT,   /* uxPriority - note that this task is created with privileges to demonstrate one method of passing a queue handle into the task. */\r
254         xRegTest1Stack,                                                 /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
255         {                                                                               /* xRegions - this task does not use any non-stack data. */\r
256                 /* Base address         Length          Parameters */\r
257         { 0x00,                         0x00,                   0x00 },\r
258         { 0x00,                         0x00,                   0x00 },\r
259         { 0x00,                         0x00,                   0x00 }\r
260         }\r
261 };\r
262 /*-----------------------------------------------------------*/\r
263 \r
264 static xTaskParameters xRegTest2Parameters =\r
265 {\r
266         prvRegTest2Task,                                /* pvTaskCode - the function that implements the task. */\r
267         ( signed char * ) "RegTest2",   /* pcName                       */\r
268         mainREG_TEST_STACK_SIZE_WORDS,  /* usStackDepth         */\r
269         ( void * ) NULL,                                /* pvParameters - this task uses the parameter to pass in a queue handle, but the queue is not created yet. */\r
270         tskIDLE_PRIORITY,                               /* uxPriority           */\r
271         xRegTest2Stack,                                 /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
272         {                                                               /* xRegions - this task does not use any non-stack data. */\r
273                 /* Base address         Length          Parameters */\r
274         { 0x00,                         0x00,                   0x00 },\r
275         { 0x00,                         0x00,                   0x00 },\r
276         { 0x00,                         0x00,                   0x00 }\r
277         }\r
278 };\r
279 \r
280 /*-----------------------------------------------------------*/\r
281 \r
282 int main( void )\r
283 {\r
284         prvSetupHardware();\r
285 \r
286         /* Create the queue used to pass "I'm alive" messages to the check task. */\r
287         xFileScopeCheckQueue = xQueueCreate( 1, sizeof( unsigned long ) );\r
288 \r
289         /* One check task uses the task parameter to receive the queue handle.\r
290         This allows the file scope variable to be accessed from within the task.\r
291         The pvParameters member of xRegTest2Parameters can only be set after the\r
292         queue has been created. */\r
293         xRegTest2Parameters.pvParameters = xFileScopeCheckQueue;\r
294 \r
295         /* Create the three test tasks.  Handles to the created tasks are not\r
296         required, hence the second parameter is NULL. */\r
297         xTaskCreateRestricted( &xRegTest1Parameters, NULL );\r
298     xTaskCreateRestricted( &xRegTest2Parameters, NULL );\r
299         xTaskCreateRestricted( &xCheckTaskParameters, NULL );\r
300 \r
301         /* Start the scheduler. */\r
302         vTaskStartScheduler();\r
303 \r
304         /* Will only get here if there was insufficient memory to create the idle\r
305         task. */\r
306         for( ;; );\r
307         return 0;\r
308 }\r
309 /*-----------------------------------------------------------*/\r
310 \r
311 static void prvCheckTask( void *pvParameters )\r
312 {\r
313 /* This task is created in privileged mode so can access the file scope\r
314 queue variable.  Take a stack copy of this before the task is set into user\r
315 mode.  Once that task is in user mode the file scope queue variable will no\r
316 longer be accessible but the stack copy will. */\r
317 xQueueHandle xQueue = xFileScopeCheckQueue;\r
318 long lMessage;\r
319 unsigned long ulStillAliveCounts[ 2 ] = { 0 };\r
320 const char *pcStatusMessage = "PASS\r\n";\r
321 \r
322         /* Just to remove compiler warning. */\r
323         ( void ) pvParameters;\r
324 \r
325         /* Demonstrate how the various memory regions can and can't be accessed. \r
326         The task privilege is set down to user mode within this function. */\r
327         prvTestMemoryRegions();\r
328 \r
329         /* Change the memory regions allocated to this task to those initially\r
330         set up for demonstration purposes to those actually required by the task. */\r
331         vTaskAllocateMPURegions( NULL, xAltRegions );\r
332 \r
333         /* This loop performs the main function of the task, which is blocking\r
334         on a message queue then processing each message as it arrives. */\r
335         for( ;; )\r
336         {\r
337                 /* Wait for the next message to arrive. */\r
338                 xQueueReceive( xQueue, &lMessage, portMAX_DELAY );\r
339                 \r
340                 switch( lMessage )\r
341                 {\r
342                         case mainREG_TEST_1_STILL_EXECUTING     :       \r
343                                         /* Message from task 1, so task 1 must still be executing. */\r
344                                         ( ulStillAliveCounts[ 0 ] )++;\r
345                                         break;\r
346 \r
347                         case mainREG_TEST_2_STILL_EXECUTING     :                                               \r
348                                         /* Message from task 2, so task 2 must still be executing. */\r
349                                         ( ulStillAliveCounts[ 1 ] )++;\r
350                                         break;\r
351 \r
352                         case mainPRINT_SYSTEM_STATUS            :       \r
353                                         /* Message from tick hook, time to print out the system\r
354                                         status.  If messages has stopped arriving from either reg\r
355                                         test task then the status must be set to fail. */\r
356                                         if( ( ulStillAliveCounts[ 0 ] == 0 ) || ( ulStillAliveCounts[ 1 ] == 0 )  )\r
357                                         {\r
358                                                 /* One or both of the test tasks are no longer sending \r
359                                                 'still alive' messages. */\r
360                                                 pcStatusMessage = "FAIL\r\n";\r
361                                         }\r
362 \r
363                                         /* Print a pass/fail message to the terminal.  This will be\r
364                                         visible in the CrossWorks IDE. */\r
365                                         debug_printf( pcStatusMessage );\r
366 \r
367                                         /* Reset the count of 'still alive' messages. */\r
368                                         memset( ulStillAliveCounts, 0x00, sizeof( ulStillAliveCounts ) );\r
369                                         break;\r
370 \r
371                 default :\r
372                                         /* Something unexpected happened.  Delete this task so the \r
373                                         error is apparent (no output will be displayed). */\r
374                                         prvDeleteMe();\r
375                                         break;\r
376                 }\r
377         }\r
378 }\r
379 /*-----------------------------------------------------------*/\r
380 \r
381 static void prvTestMemoryRegions( void )\r
382 {\r
383 long l;\r
384 char cTemp;\r
385 \r
386         /* The check task is created in the privileged mode.  The privileged array \r
387         can be both read from and written to while this task is privileged. */\r
388         cPrivilegedOnlyAccessArray[ 0 ] = 'a';\r
389         if( cPrivilegedOnlyAccessArray[ 0 ] != 'a' )\r
390         {\r
391                 /* Something unexpected happened.  Delete this task so the error is\r
392                 apparent (no output will be displayed). */\r
393                 prvDeleteMe();\r
394         }\r
395 \r
396         /* Writing off the end of the RAM allocated to this task will *NOT* cause a\r
397         protection fault because the task is still executing in a privileged mode.  \r
398         Uncomment the following to test. */\r
399         /*cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] = 'a';*/\r
400 \r
401         /* Now set the task into user mode. */\r
402         portSWITCH_TO_USER_MODE();\r
403          \r
404         /* Accessing the privileged only array will now cause a fault.  Uncomment \r
405         the following line to test. */    \r
406         /*cPrivilegedOnlyAccessArray[ 0 ] = 'a';*/\r
407 \r
408         /* The read/write array can still be successfully read and written. */\r
409         for( l = 0; l < mainREAD_WRITE_ALIGN_SIZE; l++ )\r
410         {\r
411                 cReadWriteArray[ l ] = 'a';\r
412                 if( cReadWriteArray[ l ] != 'a' )\r
413                 {\r
414                         /* Something unexpected happened.  Delete this task so the error is\r
415                         apparent (no output will be displayed). */\r
416                         prvDeleteMe();\r
417                 }\r
418         }\r
419 \r
420         /* But attempting to read or write off the end of the RAM allocated to this\r
421         task will cause a fault.  Uncomment either of the following two lines to \r
422         test. */\r
423         /* cReadWriteArray[ 0 ] = cReadWriteArray[ -1 ]; */\r
424         /* cReadWriteArray[ mainREAD_WRITE_ALIGN_SIZE ] = 0x00; */\r
425 \r
426         /* The read only array can be successfully read... */\r
427         for( l = 0; l < mainREAD_ONLY_ALIGN_SIZE; l++ )\r
428         {\r
429                 cTemp = cReadOnlyArray[ l ];\r
430         }\r
431 \r
432         /* ...but cannot be written.  Uncomment the following line to test. */\r
433         /* cReadOnlyArray[ 0 ] = 'a'; */\r
434 \r
435         /* Writing to the first and last locations in the stack array should not \r
436         cause a protection fault.  Note that doing this will cause the kernel to\r
437         detect a stack overflow if configCHECK_FOR_STACK_OVERFLOW is greater than \r
438         1. */\r
439     xCheckTaskStack[ 0 ] = 0;\r
440     xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS - 1 ] = 0;\r
441 \r
442         /* Writing off either end of the stack array should cause a protection \r
443         fault, uncomment either of the following two lines to test. */\r
444         /* xCheckTaskStack[ -1 ] = 0; */\r
445     /* xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] = 0; */\r
446 }\r
447 /*-----------------------------------------------------------*/\r
448 \r
449 static void prvRegTest1Task( void *pvParameters )\r
450 {\r
451 /* This task is created in privileged mode so can access the file scope\r
452 queue variable.  Take a stack copy of this before the task is set into user\r
453 mode.  Once that task is in user mode the file scope queue variable will no\r
454 longer be accessible but the stack copy will. */\r
455 xQueueHandle xQueue = xFileScopeCheckQueue;\r
456 \r
457         /* Now the queue handle has been obtained the task can switch to user \r
458         mode.  This is just one method of passing a handle into a protected\r
459         task, the other reg test task uses the task parameter instead. */\r
460     portSWITCH_TO_USER_MODE();\r
461 \r
462         /* First check that the parameter value is as expected. */\r
463         if( pvParameters != ( void * ) 0x12345678 )\r
464         {\r
465                 /* Error detected.  Delete the task so it stops communicating with\r
466                 the check task. */\r
467                 prvDeleteMe();\r
468         }\r
469 \r
470 \r
471         for( ;; )\r
472         {               \r
473                 /* This task tests the kernel context switch mechanism by reading and\r
474                 writing directly to registers - which requires the test to be written\r
475                 in assembly code. */\r
476                 __asm volatile \r
477                 (       \r
478                         "               MOV     R4, #104                        \n" /* Set registers to a known value.  R0 to R1 are done in the loop below. */\r
479                         "               MOV     R5, #105                        \n"\r
480                         "               MOV     R6, #106                        \n"\r
481                         "               MOV     R8, #108                        \n"\r
482                         "               MOV     R9, #109                        \n"\r
483                         "               MOV     R10, #110                       \n"\r
484                         "               MOV     R11, #111                       \n"\r
485                         "reg1loop:                                              \n"\r
486                         "               MOV     R0, #100                        \n" /* Set the scratch registers to known values - done inside the loop as they get clobbered. */\r
487                         "               MOV     R1, #101                        \n"\r
488                         "               MOV     R2, #102                        \n"\r
489                         "               MOV R3, #103                    \n"\r
490                         "               MOV     R12, #112                       \n"\r
491                         "               SVC #1                                  \n" /* Yield just to increase test coverage. */\r
492                         "               CMP     R0, #100                        \n" /* Check all the registers still contain their expected values. */\r
493                         "               BNE     prvDeleteMe                     \n" /* Value was not as expected, delete the task so it stops communicating with the check task. */\r
494                         "               CMP     R1, #101                        \n"\r
495                         "               BNE     prvDeleteMe                     \n"\r
496                         "               CMP     R2, #102                        \n"\r
497                         "               BNE     prvDeleteMe                     \n"\r
498                         "               CMP R3, #103                    \n"\r
499                         "               BNE     prvDeleteMe                     \n"\r
500                         "               CMP     R4, #104                        \n" \r
501                         "               BNE     prvDeleteMe                     \n" \r
502                         "               CMP     R5, #105                        \n"\r
503                         "               BNE     prvDeleteMe                     \n"\r
504                         "               CMP     R6, #106                        \n"\r
505                         "               BNE     prvDeleteMe                     \n"\r
506                         "               CMP     R8, #108                        \n"\r
507                         "               BNE     prvDeleteMe                     \n"\r
508                         "               CMP     R9, #109                        \n"\r
509                         "               BNE     prvDeleteMe                     \n"\r
510                         "               CMP     R10, #110                       \n"\r
511                         "               BNE     prvDeleteMe                     \n"\r
512                         "               CMP     R11, #111                       \n"\r
513                         "               BNE     prvDeleteMe                     \n"\r
514                         "               CMP     R12, #112                       \n"\r
515                         "               BNE     prvDeleteMe                     \n"\r
516                 );\r
517 \r
518                 /* Send mainREG_TEST_1_STILL_EXECUTING to the check task to indicate that this \r
519                 task is still functioning. */\r
520                 prvSendImAlive( xQueue, mainREG_TEST_1_STILL_EXECUTING );\r
521 \r
522                 /* Go back to check all the register values again. */\r
523                 __asm volatile( "               B reg1loop      " );\r
524         }\r
525 }\r
526 /*-----------------------------------------------------------*/\r
527 \r
528 static void prvRegTest2Task( void *pvParameters )\r
529 {\r
530 /* The queue handle is passed in as the task parameter.  This is one method of\r
531 passing data into a protected task, the other check task uses a different \r
532 method. */\r
533 xQueueHandle xQueue = ( xQueueHandle ) pvParameters;\r
534 \r
535         for( ;; )\r
536         {\r
537                 /* This task tests the kernel context switch mechanism by reading and\r
538                 writing directly to registers - which requires the test to be written\r
539                 in assembly code. */\r
540                 __asm volatile \r
541                 (       \r
542                         "               MOV     R4, #4                          \n" /* Set registers to a known value.  R0 to R1 are done in the loop below. */\r
543                         "               MOV     R5, #5                          \n"\r
544                         "               MOV     R6, #6                          \n"\r
545                         "               MOV     R8, #8                          \n" /* Frame pointer is omitted as it must not be changed. */\r
546                         "               MOV     R9, #9                          \n"\r
547                         "               MOV     R10, 10                         \n"\r
548                         "               MOV     R11, #11                        \n"                                             \r
549                         "reg2loop:                                              \n"\r
550                         "               MOV     R0, #13                         \n" /* Set the scratch registers to known values - done inside the loop as they get clobbered. */\r
551                         "               MOV     R1, #1                          \n"\r
552                         "               MOV     R2, #2                          \n"\r
553                         "               MOV R3, #3                              \n"\r
554                         "               MOV     R12, #12                        \n"\r
555                         "               CMP     R0, #13                         \n" /* Check all the registers still contain their expected values. */\r
556                         "               BNE     prvDeleteMe                     \n" /* Value was not as expected, delete the task so it stops communicating with the check task */\r
557                         "               CMP     R1, #1                          \n"\r
558                         "               BNE     prvDeleteMe                     \n"\r
559                         "               CMP     R2, #2                          \n"\r
560                         "               BNE     prvDeleteMe                     \n"\r
561                         "               CMP R3, #3                              \n"\r
562                         "               BNE     prvDeleteMe                     \n"\r
563                         "               CMP     R4, #4                          \n"\r
564                         "               BNE     prvDeleteMe                     \n"\r
565                         "               CMP     R5, #5                          \n"\r
566                         "               BNE     prvDeleteMe                     \n"\r
567                         "               CMP     R6, #6                          \n"\r
568                         "               BNE     prvDeleteMe                     \n"\r
569                         "               CMP     R8, #8                          \n"\r
570                         "               BNE     prvDeleteMe                     \n"\r
571                         "               CMP     R9, #9                          \n"\r
572                         "               BNE     prvDeleteMe                     \n"\r
573                         "               CMP     R10, #10                        \n"\r
574                         "               BNE     prvDeleteMe                     \n"\r
575                         "               CMP     R11, #11                        \n"\r
576                         "               BNE     prvDeleteMe                     \n"\r
577                         "               CMP     R12, #12                        \n"\r
578                         "               BNE     prvDeleteMe                     \n"\r
579                 );\r
580 \r
581                 /* Send mainREG_TEST_2_STILL_EXECUTING to the check task to indicate that this \r
582                 task is still functioning. */\r
583                 prvSendImAlive( xQueue, mainREG_TEST_2_STILL_EXECUTING );\r
584 \r
585                 /* Go back to check all the register values again. */\r
586                 __asm volatile( "               B reg2loop      " );\r
587         }\r
588 }\r
589 /*-----------------------------------------------------------*/\r
590 \r
591 static void prvDeleteMe( void )\r
592 {\r
593         vTaskDelete( NULL );\r
594 }\r
595 /*-----------------------------------------------------------*/\r
596 \r
597 static void prvSendImAlive( xQueueHandle xHandle, unsigned long ulTaskNumber )\r
598 {\r
599         if( xHandle != NULL )\r
600         {\r
601                 xQueueSend( xHandle, &ulTaskNumber, mainDONT_BLOCK );\r
602         }\r
603 }\r
604 /*-----------------------------------------------------------*/\r
605 \r
606 static void prvSetupHardware( void )\r
607 {\r
608         /* If running on Rev A2 silicon, turn the LDO voltage up to 2.75V.  This is\r
609         a workaround to allow the PLL to operate reliably. */\r
610         if( DEVICE_IS_REVA2 )\r
611         {\r
612                 SysCtlLDOSet( SYSCTL_LDO_2_75V );\r
613         }\r
614 \r
615         /* Set the clocking to run from the PLL at 50 MHz */\r
616         SysCtlClockSet( SYSCTL_SYSDIV_4 | SYSCTL_USE_PLL | SYSCTL_OSC_MAIN | SYSCTL_XTAL_8MHZ );\r
617 }\r
618 /*-----------------------------------------------------------*/\r
619 \r
620 void vApplicationTickHook( void )\r
621 {\r
622 static unsigned long ulCallCount;\r
623 const unsigned long ulCallsBetweenSends = 5000 / portTICK_RATE_MS;\r
624 const unsigned long ulMessage = mainPRINT_SYSTEM_STATUS;\r
625 portBASE_TYPE xDummy;\r
626 \r
627         /* If configUSE_TICK_HOOK is set to 1 then this function will get called\r
628         from each RTOS tick.  It is called from the tick interrupt and therefore\r
629         will be executing in the privileged state. */\r
630 \r
631         ulCallCount++;\r
632 \r
633         /* Is it time to print out the pass/fail message again? */\r
634         if( ulCallCount >= ulCallsBetweenSends )\r
635         {\r
636                 ulCallCount = 0;\r
637 \r
638                 /* Send a message to the check task to command it to check that all\r
639                 the tasks are still running then print out the status. \r
640                 \r
641                 This is running in an ISR so has to use the "FromISR" version of\r
642                 xQueueSend().  Because it is in an ISR it is running with privileges\r
643                 so can access xFileScopeCheckQueue directly. */\r
644                 xQueueSendFromISR( xFileScopeCheckQueue, &ulMessage, &xDummy );\r
645         }\r
646 }\r
647 /*-----------------------------------------------------------*/\r
648 \r
649 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName )\r
650 {\r
651         /* If configCHECK_FOR_STACK_OVERFLOW is set to either 1 or 2 then this \r
652         function will automatically get called if a task overflows its stack. */\r
653         ( void ) pxTask;\r
654         ( void ) pcTaskName;\r
655         for( ;; );\r
656 }\r
657 /*-----------------------------------------------------------*/\r
658 \r
659 void vApplicationMallocFailedHook( void )\r
660 {\r
661         /* If configUSE_MALLOC_FAILED_HOOK is set to 1 then this function will\r
662         be called automatically if a call to pvPortMalloc() fails.  pvPortMalloc()\r
663         is called automatically when a task, queue or semaphore is created. */\r
664         for( ;; );\r
665 }\r
666 /*-----------------------------------------------------------*/\r
667 \r
668 /* Just to keep the linker happy. */\r
669 void __error__( char *pcFilename, unsigned long ulLine )\r
670 {\r
671         ( void ) pcFilename;\r
672         ( void ) ulLine;\r
673         for( ;; );\r
674 }\r
675 /*-----------------------------------------------------------*/\r
676 \r
677 /* Just to keep the linker happy. */\r
678 int uipprintf( const char *fmt, ... )\r
679 {\r
680         ( void ) fmt;\r
681         return( 0 );\r
682 }\r
683 /*-----------------------------------------------------------*/\r
684 \r
685 void hard_fault_handler(unsigned int * hardfault_args)\r
686 {\r
687 unsigned int stacked_r0;\r
688 unsigned int stacked_r1;\r
689 unsigned int stacked_r2;\r
690 unsigned int stacked_r3;\r
691 unsigned int stacked_r12;\r
692 unsigned int stacked_lr;\r
693 unsigned int stacked_pc;\r
694 unsigned int stacked_psr;\r
695 \r
696         stacked_r0 = ((unsigned long) hardfault_args[0]);\r
697         stacked_r1 = ((unsigned long) hardfault_args[1]);\r
698         stacked_r2 = ((unsigned long) hardfault_args[2]);\r
699         stacked_r3 = ((unsigned long) hardfault_args[3]);\r
700 \r
701         stacked_r12 = ((unsigned long) hardfault_args[4]);\r
702         stacked_lr = ((unsigned long) hardfault_args[5]);\r
703         stacked_pc = ((unsigned long) hardfault_args[6]);\r
704         stacked_psr = ((unsigned long) hardfault_args[7]);\r
705 \r
706         /* Inspect stacked_pc to locate the offending instruction. */\r
707         for( ;; );\r
708 }\r
709 /*-----------------------------------------------------------*/\r
710 \r
711 void Fault_ISR( void ) __attribute__((naked));\r
712 void Fault_ISR( void )\r
713 {\r
714         __asm volatile\r
715         (\r
716                 " tst lr, #4                                                                            \n"\r
717                 " ite eq                                                                                        \n"\r
718                 " mrseq r0, msp                                                                         \n"\r
719                 " mrsne r0, psp                                                                         \n"\r
720                 " ldr r1, [r0, #24]                                                                     \n"\r
721                 " ldr r2, handler_address_const                                         \n"\r
722                 " bx r2                                                                                         \n"\r
723                 " handler_address_const: .word hard_fault_handler       \n"\r
724         );\r
725 }\r
726 /*-----------------------------------------------------------*/\r
727 \r
728 void MPU_Fault_ISR( void ) __attribute__((naked));\r
729 void MPU_Fault_ISR( void )\r
730 {\r
731         __asm volatile\r
732         (\r
733                 " tst lr, #4                                                                            \n"\r
734                 " ite eq                                                                                        \n"\r
735                 " mrseq r0, msp                                                                         \n"\r
736                 " mrsne r0, psp                                                                         \n"\r
737                 " ldr r1, [r0, #24]                                                                     \n"\r
738                 " ldr r2, handler_address_const                                         \n"\r
739                 " bx r2                                                                                         \n"\r
740                 " handler2_address_const: .word hard_fault_handler      \n"\r
741         );\r
742 }\r
743 /*-----------------------------------------------------------*/