]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_MPU_CEC_MEC_17xx_Keil_GCC/main.c
18c2e5e97a7d0a6e8d2451a6fc44cc1c4fc03d8b
[freertos] / FreeRTOS / Demo / CORTEX_MPU_CEC_MEC_17xx_Keil_GCC / main.c
1 /*\r
2     FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.\r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     This file is part of the FreeRTOS distribution.\r
8 \r
9     FreeRTOS is free software; you can redistribute it and/or modify it under\r
10     the terms of the GNU General Public License (version 2) as published by the\r
11     Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
12 \r
13     ***************************************************************************\r
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
16     >>!   obliged to provide the source code for proprietary components     !<<\r
17     >>!   outside of the FreeRTOS kernel.                                   !<<\r
18     ***************************************************************************\r
19 \r
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
23     link: http://www.freertos.org/a00114.html\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    FreeRTOS provides completely free yet professionally developed,    *\r
28      *    robust, strictly quality controlled, supported, and cross          *\r
29      *    platform software that is more than just the market leader, it     *\r
30      *    is the industry's de facto standard.                               *\r
31      *                                                                       *\r
32      *    Help yourself get started quickly while simultaneously helping     *\r
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
34      *    tutorial book, reference manual, or both:                          *\r
35      *    http://www.FreeRTOS.org/Documentation                              *\r
36      *                                                                       *\r
37     ***************************************************************************\r
38 \r
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
40     the FAQ page "My application does not run, what could be wrong?".  Have you\r
41     defined configASSERT()?\r
42 \r
43     http://www.FreeRTOS.org/support - In return for receiving this top quality\r
44     embedded software for free we request you assist our global community by\r
45     participating in the support forum.\r
46 \r
47     http://www.FreeRTOS.org/training - Investing in training allows your team to\r
48     be as productive as possible as early as possible.  Now you can receive\r
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
50     Ltd, and the world's leading authority on the world's leading RTOS.\r
51 \r
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
55 \r
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
58 \r
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
61     licenses offer ticketed support, indemnification and commercial middleware.\r
62 \r
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
64     engineered and independently SIL3 certified version for use in safety and\r
65     mission critical applications that require provable dependability.\r
66 \r
67     1 tab == 4 spaces!\r
68 */\r
69 \r
70 \r
71 /*\r
72  * This file demonstrates the use of FreeRTOS-MPU.  It creates tasks in both\r
73  * User mode and Privileged mode, and using both the xTaskCreate() and\r
74  * xTaskCreateRestricted() API functions.  The purpose of each created task is\r
75  * documented in the comments above the task function prototype (in this file),\r
76  * with the task behaviour demonstrated and documented within the task function\r
77  * itself.\r
78  *\r
79  * In addition a queue is used to demonstrate passing data between\r
80  * protected/restricted tasks as well as passing data between an interrupt and\r
81  * a protected/restricted task.  A software timer is also used.\r
82  *\r
83  * The system status is printed to ITM channel 0, where it can be viewed in the\r
84  * Keil serial/debug window (a compatible SW debug interface is required).\r
85  */\r
86 \r
87 /* Microchip includes. */\r
88 #include "common.h"\r
89 \r
90 /* Scheduler includes. */\r
91 #include "FreeRTOS.h"\r
92 #include "task.h"\r
93 #include "queue.h"\r
94 #include "semphr.h"\r
95 #include "timers.h"\r
96 #include "event_groups.h"\r
97 \r
98 /*-----------------------------------------------------------*/\r
99 \r
100 /* Misc constants. */\r
101 #define mainDONT_BLOCK                                  ( 0 )\r
102 \r
103 /* GCC specifics. */\r
104 #define mainALIGN_TO( x )                               __attribute__((aligned(x)))\r
105 \r
106 /* Hardware register addresses. */\r
107 #define mainVTOR                                                ( * ( volatile uint32_t * ) 0xE000ED08 )\r
108 \r
109 /* The period of the timer must be less than the rate at which\r
110 configPRINT_SYSTEM_STATUS messages are sent to the check task - otherwise the\r
111 check task will think the timer has stopped. */\r
112 #define mainTIMER_PERIOD                                pdMS_TO_TICKS( 200 )\r
113 \r
114 /* The name of the task that is deleted by the Idle task is used in a couple of\r
115 places, so is #defined. */\r
116 #define mainTASK_TO_DELETE_NAME                 "DeleteMe"\r
117 \r
118 /*-----------------------------------------------------------*/\r
119 /* Prototypes for functions that implement tasks. -----------*/\r
120 /*-----------------------------------------------------------*/\r
121 \r
122 /*\r
123  * NOTE:  The filling and checking of the registers in the following two tasks\r
124  *        is only actually performed when the GCC compiler is used.  Use of the\r
125  *        queue to communicate with the check task is done with all compilers.\r
126  *\r
127  * Prototype for the first two register test tasks, which execute in User mode.\r
128  * Amongst other things, these fill the CPU registers (other than the FPU\r
129  * registers) with known values before checking that the registers still contain\r
130  * the expected values.  Each of the two tasks use different values so an error\r
131  * in the context switch mechanism can be caught.  Both tasks execute at the\r
132  * idle priority so will get preempted regularly.  Each task repeatedly sends a\r
133  * message on a queue to a 'check' task so the check task knows the register\r
134  * check task is still executing and has not detected any errors.  If an error\r
135  * is detected within the task the task is simply deleted so it no longer sends\r
136  * messages.\r
137  *\r
138  * For demonstration and test purposes, both tasks obtain access to the queue\r
139  * handle in different ways; vRegTest1Implementation() is created in Privileged\r
140  * mode and copies the queue handle to its local stack before setting itself to\r
141  * User mode, and vRegTest2Implementation() receives the task handle using its\r
142  * parameter.\r
143  */\r
144 extern void vRegTest1Implementation( void *pvParameters );\r
145 extern void vRegTest2Implementation( void *pvParameters );\r
146 \r
147 /*\r
148  * The second two register test tasks are similar to the first two, but do test\r
149  * the floating point registers, execute in Privileged mode, and signal their\r
150  * execution status to the 'check' task by incrementing a loop counter on each\r
151  * iteration instead of sending a message on a queue.  The loop counters use a\r
152  * memory region to which the User mode 'check' task has read access.\r
153  *\r
154  * The functions ending 'Implementation' are called by the register check tasks.\r
155  */\r
156 static void prvRegTest3Task( void *pvParameters );\r
157 extern void vRegTest3Implementation( void );\r
158 static void prvRegTest4Task( void *pvParameters );\r
159 extern void vRegTest4Implementation( void );\r
160 \r
161 /*\r
162  * Prototype for the check task.  The check task demonstrates various features\r
163  * of the MPU before entering a loop where it waits for messages to arrive on a\r
164  * queue.\r
165  *\r
166  * Two types of messages can be processes:\r
167  *\r
168  * 1) "I'm Alive" messages sent from the first two register test tasks and a\r
169  *    software timer callback, as described above.\r
170  *\r
171  * 2) "Print Status commands" sent periodically by the tick hook function (and\r
172  *    therefore from within an interrupt) which commands the check task to write\r
173  *    either pass or fail to the terminal, depending on the status of the reg\r
174  *    test tasks.\r
175  */\r
176 static void prvCheckTask( void *pvParameters );\r
177 \r
178 /*\r
179  * Prototype for a task created in User mode using the original vTaskCreate()\r
180  * API function.  The task demonstrates the characteristics of such a task,\r
181  * before simply deleting itself.\r
182  */\r
183 static void prvOldStyleUserModeTask( void *pvParameters );\r
184 \r
185 /*\r
186  * Prototype for a task created in Privileged mode using the original\r
187  * vTaskCreate() API function.  The task demonstrates the characteristics of\r
188  * such a task, before simply deleting itself.\r
189  */\r
190 static void prvOldStylePrivilegedModeTask( void *pvParameters );\r
191 \r
192 /*\r
193  * A task that exercises the API of various RTOS objects before being deleted by\r
194  * the Idle task.  This is done for MPU API code coverage test purposes.\r
195  */\r
196 static void prvTaskToDelete( void *pvParameters );\r
197 \r
198 /*\r
199  * Functions called by prvTaskToDelete() to exercise the MPU API.\r
200  */\r
201 static void prvExerciseEventGroupAPI( void );\r
202 static void prvExerciseSemaphoreAPI( void );\r
203 static void prvExerciseTaskNotificationAPI( void );\r
204 \r
205 /*\r
206  * Just configures any clocks and IO necessary.\r
207  */\r
208 static void prvSetupHardware( void );\r
209 \r
210 /*\r
211  * Simply deletes the calling task.  The function is provided only because it\r
212  * is simpler to call from asm code than the normal vTaskDelete() API function.\r
213  * It has the noinline attribute because it is called from asm code.\r
214  */\r
215 void vMainDeleteMe( void ) __attribute__((noinline));\r
216 \r
217 /*\r
218  * Used by the first two reg test tasks and a software timer callback function\r
219  * to send messages to the check task.  The message just lets the check task\r
220  * know that the tasks and timer are still functioning correctly.  If a reg test\r
221  * task detects an error it will delete itself, and in so doing prevent itself\r
222  * from sending any more 'I'm Alive' messages to the check task.\r
223  */\r
224 void vMainSendImAlive( QueueHandle_t xHandle, uint32_t ulTaskNumber );\r
225 \r
226 /*\r
227  * The check task is created with access to three memory regions (plus its\r
228  * stack).  Each memory region is configured with different parameters and\r
229  * prvTestMemoryRegions() demonstrates what can and cannot be accessed for each\r
230  * region.  prvTestMemoryRegions() also demonstrates a task that was created\r
231  * as a privileged task settings its own privilege level down to that of a user\r
232  * task.\r
233  */\r
234 static void prvTestMemoryRegions( void );\r
235 \r
236 /*\r
237  * Callback function used with the timer that uses the queue to send messages\r
238  * to the check task.\r
239  */\r
240 static void prvTimerCallback( TimerHandle_t xExpiredTimer );\r
241 \r
242 /*\r
243  * Simple routine to print a string to ITM for viewing in the Keil serial debug\r
244  * viewer.\r
245  */\r
246 static void prvITMPrintString( const char *pcString );\r
247 \r
248 /*-----------------------------------------------------------*/\r
249 \r
250 /* The handle of the queue used to communicate between tasks and between tasks\r
251 and interrupts.  Note that this is a global scope variable that falls outside of\r
252 any MPU region.  As such other techniques have to be used to allow the tasks\r
253 to gain access to the queue.  See the comments in the tasks themselves for\r
254 further information. */\r
255 QueueHandle_t xGlobalScopeCheckQueue = NULL;\r
256 \r
257 /* Holds the handle of a task that is deleted in the idle task hook - this is\r
258 done for code coverage test purposes only. */\r
259 static TaskHandle_t xTaskToDelete = NULL;\r
260 \r
261 /* The timer that periodically sends data to the check task on the queue. */\r
262 static TimerHandle_t xTimer = NULL;\r
263 \r
264 #if defined ( __GNUC__ )\r
265         extern uint32_t __FLASH_segment_start__[];\r
266         extern uint32_t __FLASH_segment_end__[];\r
267         extern uint32_t __SRAM_segment_start__[];\r
268         extern uint32_t __SRAM_segment_end__[];\r
269         extern uint32_t __privileged_functions_start__[];\r
270         extern uint32_t __privileged_functions_end__[];\r
271         extern uint32_t __privileged_data_start__[];\r
272         extern uint32_t __privileged_data_end__[];\r
273         extern uint32_t __privileged_functions_actual_end__[];\r
274         extern uint32_t __privileged_data_actual_end__[];\r
275 #else\r
276         const uint32_t * __FLASH_segment_start__ = ( uint32_t * ) 0xE0000UL;\r
277         const uint32_t * __FLASH_segment_end__ = ( uint32_t * ) 0x100000UL;\r
278         const uint32_t * __SRAM_segment_start__ = ( uint32_t * ) 0x100000UL;\r
279         const uint32_t * __SRAM_segment_end__ = ( uint32_t * ) 0x120000;\r
280         const uint32_t * __privileged_functions_start__ = ( uint32_t * ) 0xE0000UL;\r
281         const uint32_t * __privileged_functions_end__ = ( uint32_t * ) 0xE4000UL;\r
282         const uint32_t * __privileged_data_start__ = ( uint32_t * ) 0x100000UL;\r
283         const uint32_t * __privileged_data_end__ = ( uint32_t * ) 0x100200UL;\r
284 #endif\r
285 /*-----------------------------------------------------------*/\r
286 /* Data used by the 'check' task. ---------------------------*/\r
287 /*-----------------------------------------------------------*/\r
288 \r
289 /* Define the constants used to allocate the check task stack.  Note that the\r
290 stack size is defined in words, not bytes. */\r
291 #define mainCHECK_TASK_STACK_SIZE_WORDS 128\r
292 #define mainCHECK_TASK_STACK_ALIGNMENT ( mainCHECK_TASK_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
293 \r
294 /* Declare the stack that will be used by the check task.  The kernel will\r
295  automatically create an MPU region for the stack.  The stack alignment must\r
296  match its size, so if 128 words are reserved for the stack then it must be\r
297  aligned to ( 128 * 4 ) bytes. */\r
298 static portSTACK_TYPE xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] mainALIGN_TO( mainCHECK_TASK_STACK_ALIGNMENT );\r
299 \r
300 /* Declare three arrays - an MPU region will be created for each array\r
301 using the TaskParameters_t structure below.  THIS IS JUST TO DEMONSTRATE THE\r
302 MPU FUNCTIONALITY, the data is not used by the check tasks primary function\r
303 of monitoring the reg test tasks and printing out status information.\r
304 \r
305 Note that the arrays allocate slightly more RAM than is actually assigned to\r
306 the MPU region.  This is to permit writes off the end of the array to be\r
307 detected even when the arrays are placed in adjacent memory locations (with no\r
308 gaps between them).  The align size must be a power of two. */\r
309 #define mainREAD_WRITE_ARRAY_SIZE 130\r
310 #define mainREAD_WRITE_ALIGN_SIZE 128\r
311 char cReadWriteArray[ mainREAD_WRITE_ARRAY_SIZE ] mainALIGN_TO( mainREAD_WRITE_ALIGN_SIZE );\r
312 \r
313 #define mainREAD_ONLY_ARRAY_SIZE 260\r
314 #define mainREAD_ONLY_ALIGN_SIZE 256\r
315 char cReadOnlyArray[ mainREAD_ONLY_ARRAY_SIZE ] mainALIGN_TO( mainREAD_ONLY_ALIGN_SIZE );\r
316 \r
317 #define mainPRIVILEGED_ONLY_ACCESS_ARRAY_SIZE 130\r
318 #define mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE 128\r
319 char cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] mainALIGN_TO( mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE );\r
320 \r
321 /* The following two variables are used to communicate the status of the second\r
322 two register check tasks (tasks 3 and 4) to the check task.  If the variables\r
323 keep incrementing, then the register check tasks have not discovered any errors.\r
324 If a variable stops incrementing, then an error has been found.  The variables\r
325 overlay the array that the check task has access to so they can be read by the\r
326 check task without causing a memory fault.  The check task has the highest\r
327 priority so will have finished with the array before the register test tasks\r
328 start to access it. */\r
329 volatile uint32_t *pulRegTest3LoopCounter = ( uint32_t * ) &( cReadWriteArray[ 0 ] ), *pulRegTest4LoopCounter = ( uint32_t * ) &( cReadWriteArray[ 4 ] );\r
330 \r
331 /* Fill in a TaskParameters_t structure to define the check task - this is the\r
332 structure passed to the xTaskCreateRestricted() function. */\r
333 static const TaskParameters_t xCheckTaskParameters =\r
334 {\r
335         prvCheckTask,                                                           /* pvTaskCode - the function that implements the task. */\r
336         "Check",                                                                        /* pcName */\r
337         mainCHECK_TASK_STACK_SIZE_WORDS,                        /* usStackDepth - defined in words, not bytes. */\r
338         ( void * ) 0x12121212,                                          /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
339         ( 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
340         xCheckTaskStack,                                                        /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
341 \r
342         /* xRegions - In this case the xRegions array is used to create MPU regions\r
343         for all three of the arrays declared directly above.  Each MPU region is\r
344         created with different parameters.  Again, THIS IS JUST TO DEMONSTRATE THE\r
345         MPU FUNCTIONALITY, the data is not used by the check tasks primary function\r
346         of monitoring the reg test tasks and printing out status information.*/\r
347         {\r
348                 /* Base address                                 Length                                                                  Parameters */\r
349                 { cReadWriteArray,                              mainREAD_WRITE_ALIGN_SIZE,                              portMPU_REGION_READ_WRITE },\r
350                 { cReadOnlyArray,                               mainREAD_ONLY_ALIGN_SIZE,                               portMPU_REGION_READ_ONLY },\r
351                 { cPrivilegedOnlyAccessArray,   mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE,  portMPU_REGION_PRIVILEGED_READ_WRITE }\r
352         }\r
353 };\r
354 \r
355 \r
356 \r
357 /*-----------------------------------------------------------*/\r
358 /* Data used by the 'reg test' tasks. -----------------------*/\r
359 /*-----------------------------------------------------------*/\r
360 \r
361 /* Define the constants used to allocate the reg test task stacks.  Note that\r
362 that stack size is defined in words, not bytes. */\r
363 #define mainREG_TEST_STACK_SIZE_WORDS   128\r
364 #define mainREG_TEST_STACK_ALIGNMENT    ( mainREG_TEST_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
365 \r
366 /* Declare the stacks that will be used by the reg test tasks.  The kernel will\r
367 automatically create an MPU region for the stack.  The stack alignment must\r
368 match its size, so if 128 words are reserved for the stack then it must be\r
369 aligned to ( 128 * 4 ) bytes. */\r
370 static portSTACK_TYPE xRegTest1Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
371 static portSTACK_TYPE xRegTest2Stack[ mainREG_TEST_STACK_SIZE_WORDS ] mainALIGN_TO( mainREG_TEST_STACK_ALIGNMENT );\r
372 \r
373 /* Fill in a TaskParameters_t structure per reg test task to define the tasks. */\r
374 static const TaskParameters_t xRegTest1Parameters =\r
375 {\r
376         vRegTest1Implementation,                                                        /* pvTaskCode - the function that implements the task. */\r
377         "RegTest1",                                                                     /* pcName                       */\r
378         mainREG_TEST_STACK_SIZE_WORDS,                          /* usStackDepth         */\r
379         ( void * ) configREG_TEST_TASK_1_PARAMETER,     /* pvParameters - this value is just to test that the parameter is being passed into the task correctly. */\r
380         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
381         xRegTest1Stack,                                                         /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
382         {                                                                                       /* xRegions - this task does not use any non-stack data hence all members are zero. */\r
383                 /* Base address         Length          Parameters */\r
384                 { 0x00,                         0x00,                   0x00 },\r
385                 { 0x00,                         0x00,                   0x00 },\r
386                 { 0x00,                         0x00,                   0x00 }\r
387         }\r
388 };\r
389 /*-----------------------------------------------------------*/\r
390 \r
391 static TaskParameters_t xRegTest2Parameters =\r
392 {\r
393         vRegTest2Implementation,                                /* pvTaskCode - the function that implements the task. */\r
394         "RegTest2",                                             /* pcName                       */\r
395         mainREG_TEST_STACK_SIZE_WORDS,  /* usStackDepth         */\r
396         ( void * ) NULL,                                /* pvParameters - this task uses the parameter to pass in a queue handle, but the queue is not created yet. */\r
397         tskIDLE_PRIORITY,                               /* uxPriority           */\r
398         xRegTest2Stack,                                 /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
399         {                                                               /* xRegions - this task does not use any non-stack data hence all members are zero. */\r
400                 /* Base address         Length          Parameters */\r
401                 { 0x00,                         0x00,                   0x00 },\r
402                 { 0x00,                         0x00,                   0x00 },\r
403                 { 0x00,                         0x00,                   0x00 }\r
404         }\r
405 };\r
406 \r
407 /*-----------------------------------------------------------*/\r
408 \r
409 /*-----------------------------------------------------------*/\r
410 /* Configures the task that is deleted. ---------------------*/\r
411 /*-----------------------------------------------------------*/\r
412 \r
413 /* Define the constants used to allocate the stack of the task that is\r
414 deleted.  Note that that stack size is defined in words, not bytes. */\r
415 #define mainDELETE_TASK_STACK_SIZE_WORDS        128\r
416 #define mainTASK_TO_DELETE_STACK_ALIGNMENT      ( mainDELETE_TASK_STACK_SIZE_WORDS * sizeof( portSTACK_TYPE ) )\r
417 \r
418 /* Declare the stack that will be used by the task that gets deleted.  The\r
419 kernel will automatically create an MPU region for the stack.  The stack\r
420 alignment must match its size, so if 128 words are reserved for the stack\r
421 then it must be aligned to ( 128 * 4 ) bytes. */\r
422 static portSTACK_TYPE xDeleteTaskStack[ mainDELETE_TASK_STACK_SIZE_WORDS ] mainALIGN_TO( mainTASK_TO_DELETE_STACK_ALIGNMENT );\r
423 \r
424 static TaskParameters_t xTaskToDeleteParameters =\r
425 {\r
426         prvTaskToDelete,                                        /* pvTaskCode - the function that implements the task. */\r
427         mainTASK_TO_DELETE_NAME,                        /* pcName */\r
428         mainDELETE_TASK_STACK_SIZE_WORDS,       /* usStackDepth */\r
429         ( void * ) NULL,                                        /* pvParameters - this task uses the parameter to pass in a queue handle, but the queue is not created yet. */\r
430         tskIDLE_PRIORITY + 1,                           /* uxPriority */\r
431         xDeleteTaskStack,                                       /* puxStackBuffer - the array to use as the task stack, as declared above. */\r
432         {                                                                       /* xRegions - this task does not use any non-stack data hence all members are zero. */\r
433                 /* Base address         Length          Parameters */\r
434                 { 0x00,                         0x00,                   0x00 },\r
435                 { 0x00,                         0x00,                   0x00 },\r
436                 { 0x00,                         0x00,                   0x00 }\r
437         }\r
438 };\r
439 \r
440 /*-----------------------------------------------------------*/\r
441 \r
442 int main( void )\r
443 {\r
444         prvSetupHardware();\r
445 \r
446         prvITMPrintString( "Starting\r\n" );\r
447 \r
448         /* Create the queue used to pass "I'm alive" messages to the check task. */\r
449         xGlobalScopeCheckQueue = xQueueCreate( 1, sizeof( uint32_t ) );\r
450 \r
451         /* One check task uses the task parameter to receive the queue handle.\r
452         This allows the file scope variable to be accessed from within the task.\r
453         The pvParameters member of xRegTest2Parameters can only be set after the\r
454         queue has been created so is set here. */\r
455         xRegTest2Parameters.pvParameters = xGlobalScopeCheckQueue;\r
456 \r
457         /* Create three test tasks.  Handles to the created tasks are not required,\r
458         hence the second parameter is NULL. */\r
459         xTaskCreateRestricted( &xRegTest1Parameters, NULL );\r
460     xTaskCreateRestricted( &xRegTest2Parameters, NULL );\r
461         xTaskCreateRestricted( &xCheckTaskParameters, NULL );\r
462 \r
463         /* Create a task that does nothing but ensure some of the MPU API functions\r
464         can be called correctly, then get deleted.  This is done for code coverage\r
465         test purposes only.  The task's handle is saved in xTaskToDelete so it can\r
466         get deleted in the idle task hook. */\r
467         xTaskCreateRestricted( &xTaskToDeleteParameters, &xTaskToDelete );\r
468 \r
469         /* Create the tasks that are created using the original xTaskCreate() API\r
470         function. */\r
471         xTaskCreate(    prvOldStyleUserModeTask,        /* The function that implements the task. */\r
472                                         "Task1",                                        /* Text name for the task. */\r
473                                         100,                                            /* Stack depth in words. */\r
474                                         NULL,                                           /* Task parameters. */\r
475                                         3,                                                      /* Priority and mode (user in this case). */\r
476                                         NULL                                            /* Handle. */\r
477                                 );\r
478 \r
479         xTaskCreate(    prvOldStylePrivilegedModeTask,  /* The function that implements the task. */\r
480                                         "Task2",                                                /* Text name for the task. */\r
481                                         100,                                                    /* Stack depth in words. */\r
482                                         NULL,                                                   /* Task parameters. */\r
483                                         ( 3 | portPRIVILEGE_BIT ),              /* Priority and mode. */\r
484                                         NULL                                                    /* Handle. */\r
485                                 );\r
486 \r
487         /* Create the third and fourth register check tasks, as described at the top\r
488         of this file. */\r
489         xTaskCreate( prvRegTest3Task, "Reg3", configMINIMAL_STACK_SIZE, configREG_TEST_TASK_3_PARAMETER, tskIDLE_PRIORITY, NULL );\r
490         xTaskCreate( prvRegTest4Task, "Reg4", configMINIMAL_STACK_SIZE, configREG_TEST_TASK_4_PARAMETER, tskIDLE_PRIORITY, NULL );\r
491 \r
492         /* Create and start the software timer. */\r
493         xTimer = xTimerCreate( "Timer",                         /* Test name for the timer. */\r
494                                                         mainTIMER_PERIOD,       /* Period of the timer. */\r
495                                                         pdTRUE,                         /* The timer will auto-reload itself. */\r
496                                                         ( void * ) 0,           /* The timer's ID is used to count the number of times it expires - initialise this to 0. */\r
497                                                         prvTimerCallback );     /* The function called when the timer expires. */\r
498         configASSERT( xTimer );\r
499         xTimerStart( xTimer, mainDONT_BLOCK );\r
500 \r
501         /* Start the scheduler. */\r
502         vTaskStartScheduler();\r
503 \r
504         /* Will only get here if there was insufficient memory to create the idle\r
505         task. */\r
506         for( ;; );\r
507 }\r
508 /*-----------------------------------------------------------*/\r
509 \r
510 static void prvCheckTask( void *pvParameters )\r
511 {\r
512 /* This task is created in privileged mode so can access the file scope\r
513 queue variable.  Take a stack copy of this before the task is set into user\r
514 mode.  Once that task is in user mode the file scope queue variable will no\r
515 longer be accessible but the stack copy will. */\r
516 QueueHandle_t xQueue = xGlobalScopeCheckQueue;\r
517 int32_t lMessage;\r
518 uint32_t ulStillAliveCounts[ 3 ] = { 0 };\r
519 const char *pcStatusMessage = "PASS\r\n";\r
520 uint32_t ulLastRegTest3CountValue = 0, ulLastRegTest4Value = 0;\r
521 \r
522 /* The register test tasks that also test the floating point registers increment\r
523 a counter on each iteration of their loop.  The counters are inside the array\r
524 that this task has access to. */\r
525 volatile uint32_t *pulOverlaidCounter3 = ( uint32_t * ) &( cReadWriteArray[ 0 ] ), *pulOverlaidCounter4 = ( uint32_t * ) &( cReadWriteArray[ 4 ] );\r
526 \r
527         /* Just to remove compiler warning. */\r
528         ( void ) pvParameters;\r
529 \r
530         /* Demonstrate how the various memory regions can and can't be accessed.\r
531         The task privilege level is set down to user mode within this function. */\r
532         prvTestMemoryRegions();\r
533 \r
534         /* Clear overlaid reg test counters before entering the loop below. */\r
535         *pulOverlaidCounter3 = 0UL;\r
536         *pulOverlaidCounter4 = 0UL;\r
537 \r
538         /* This loop performs the main function of the task, which is blocking\r
539         on a message queue then processing each message as it arrives. */\r
540         for( ;; )\r
541         {\r
542                 /* Wait for the next message to arrive. */\r
543                 xQueueReceive( xQueue, &lMessage, portMAX_DELAY );\r
544 \r
545                 switch( lMessage )\r
546                 {\r
547                         case configREG_TEST_1_STILL_EXECUTING   :\r
548                         case configREG_TEST_2_STILL_EXECUTING   :\r
549                         case configTIMER_STILL_EXECUTING                :\r
550                                         /* Message from the first or second register check task, or\r
551                                         the timer callback function.  Increment the count of the\r
552                                         number of times the message source has sent the message as\r
553                                         the message source must still be executed. */\r
554                                         ( ulStillAliveCounts[ lMessage ] )++;\r
555                                         break;\r
556 \r
557                         case configPRINT_SYSTEM_STATUS          :\r
558                                         /* Message from tick hook, time to print out the system\r
559                                         status.  If messages have stopped arriving from either of\r
560                                         the first two reg test task or the timer callback then the\r
561                                         status must be set to fail. */\r
562                                         if( ( ulStillAliveCounts[ 0 ] == 0 ) || ( ulStillAliveCounts[ 1 ] == 0 ) || ( ulStillAliveCounts[ 2 ] == 0 ) )\r
563                                         {\r
564                                                 /* One or both of the test tasks are no longer sending\r
565                                                 'still alive' messages. */\r
566                                                 pcStatusMessage = "FAIL\r\n";\r
567                                         }\r
568                                         else\r
569                                         {\r
570                                                 /* Reset the count of 'still alive' messages. */\r
571                                                 memset( ( void * ) ulStillAliveCounts, 0x00, sizeof( ulStillAliveCounts ) );\r
572                                         }\r
573 \r
574                                         /* Check that the register test 3 task is still incrementing\r
575                                         its counter, and therefore still running. */\r
576                                         if( ulLastRegTest3CountValue == *pulOverlaidCounter3 )\r
577                                         {\r
578                                                 pcStatusMessage = "FAIL\r\n";\r
579                                         }\r
580                                         ulLastRegTest3CountValue = *pulOverlaidCounter3;\r
581 \r
582                                         /* Check that the register test 4 task is still incrementing\r
583                                         its counter, and therefore still running. */\r
584                                         if( ulLastRegTest4Value == *pulOverlaidCounter4 )\r
585                                         {\r
586                                                 pcStatusMessage = "FAIL\r\n";\r
587                                         }\r
588                                         ulLastRegTest4Value = *pulOverlaidCounter4;\r
589 \r
590                                         /**** print pcStatusMessage here. ****/\r
591                                         prvITMPrintString( pcStatusMessage );\r
592                                         break;\r
593 \r
594                 default :\r
595                                         /* Something unexpected happened.  Delete this task so the\r
596                                         error is apparent (no output will be displayed). */\r
597                                         vMainDeleteMe();\r
598                                         break;\r
599                 }\r
600         }\r
601 }\r
602 /*-----------------------------------------------------------*/\r
603 \r
604 static void prvTestMemoryRegions( void )\r
605 {\r
606 int32_t x;\r
607 char cTemp;\r
608 \r
609         /* The check task (from which this function is called) is created in the\r
610         Privileged mode.  The privileged array can be both read from and written\r
611         to while this task is privileged. */\r
612         cPrivilegedOnlyAccessArray[ 0 ] = 'a';\r
613         if( cPrivilegedOnlyAccessArray[ 0 ] != 'a' )\r
614         {\r
615                 /* Something unexpected happened.  Delete this task so the error is\r
616                 apparent (no output will be displayed). */\r
617                 vMainDeleteMe();\r
618         }\r
619 \r
620         /* Writing off the end of the RAM allocated to this task will *NOT* cause a\r
621         protection fault because the task is still executing in a privileged mode.\r
622         Uncomment the following to test. */\r
623         /*cPrivilegedOnlyAccessArray[ mainPRIVILEGED_ONLY_ACCESS_ALIGN_SIZE ] = 'a';*/\r
624 \r
625         /* Now set the task into user mode. */\r
626         portSWITCH_TO_USER_MODE();\r
627 \r
628         /* Accessing the privileged only array will now cause a fault.  Uncomment\r
629         the following line to test. */\r
630         /*cPrivilegedOnlyAccessArray[ 0 ] = 'a';*/\r
631 \r
632         /* The read/write array can still be successfully read and written. */\r
633         for( x = 0; x < mainREAD_WRITE_ALIGN_SIZE; x++ )\r
634         {\r
635                 cReadWriteArray[ x ] = 'a';\r
636                 if( cReadWriteArray[ x ] != 'a' )\r
637                 {\r
638                         /* Something unexpected happened.  Delete this task so the error is\r
639                         apparent (no output will be displayed). */\r
640                         vMainDeleteMe();\r
641                 }\r
642         }\r
643 \r
644         /* But attempting to read or write off the end of the RAM allocated to this\r
645         task will cause a fault.  Uncomment either of the following two lines to\r
646         test. */\r
647         /* cReadWriteArray[ 0 ] = cReadWriteArray[ -1 ]; */\r
648         /* cReadWriteArray[ mainREAD_WRITE_ALIGN_SIZE ] = 0x00; */\r
649 \r
650         /* The read only array can be successfully read... */\r
651         for( x = 0; x < mainREAD_ONLY_ALIGN_SIZE; x++ )\r
652         {\r
653                 cTemp = cReadOnlyArray[ x ];\r
654         }\r
655 \r
656         /* ...but cannot be written.  Uncomment the following line to test. */\r
657         /* cReadOnlyArray[ 0 ] = 'a'; */\r
658 \r
659         /* Writing to the first and last locations in the stack array should not\r
660         cause a protection fault.  Note that doing this will cause the kernel to\r
661         detect a stack overflow if configCHECK_FOR_STACK_OVERFLOW is greater than\r
662         1, hence the test is commented out by default. */\r
663         /* xCheckTaskStack[ 0 ] = 0;\r
664         xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS - 1 ] = 0; */\r
665 \r
666         /* Writing off either end of the stack array should cause a protection\r
667         fault, uncomment either of the following two lines to test. */\r
668         /* xCheckTaskStack[ -1 ] = 0; */\r
669         /* xCheckTaskStack[ mainCHECK_TASK_STACK_SIZE_WORDS ] = 0; */\r
670 \r
671         ( void ) cTemp;\r
672 }\r
673 /*-----------------------------------------------------------*/\r
674 \r
675 static void prvExerciseEventGroupAPI( void )\r
676 {\r
677 EventGroupHandle_t xEventGroup;\r
678 EventBits_t xBits;\r
679 const EventBits_t xBitsToWaitFor = ( EventBits_t ) 0xff, xBitToClear = ( EventBits_t ) 0x01;\r
680 \r
681         /* Exercise some event group functions. */\r
682         xEventGroup = xEventGroupCreate();\r
683         configASSERT( xEventGroup );\r
684 \r
685         /* No bits should be set. */\r
686         xBits = xEventGroupWaitBits( xEventGroup, xBitsToWaitFor, pdTRUE, pdFALSE, mainDONT_BLOCK );\r
687         configASSERT( xBits == ( EventBits_t ) 0 );\r
688 \r
689         /* Set bits and read back to ensure the bits were set. */\r
690         xEventGroupSetBits( xEventGroup, xBitsToWaitFor );\r
691         xBits = xEventGroupGetBits( xEventGroup );\r
692         configASSERT( xBits == xBitsToWaitFor );\r
693 \r
694         /* Clear a bit and read back again using a different API function. */\r
695         xEventGroupClearBits( xEventGroup, xBitToClear );\r
696         xBits = xEventGroupSync( xEventGroup, 0x00, xBitsToWaitFor, mainDONT_BLOCK );\r
697         configASSERT( xBits == ( xBitsToWaitFor & ~xBitToClear ) );\r
698 \r
699         /* Finished with the event group. */\r
700         vEventGroupDelete( xEventGroup );\r
701 }\r
702 /*-----------------------------------------------------------*/\r
703 \r
704 static void prvExerciseSemaphoreAPI( void )\r
705 {\r
706 SemaphoreHandle_t xSemaphore;\r
707 const UBaseType_t uxMaxCount = 5, uxInitialCount = 0;\r
708 \r
709         /* Most of the semaphore API is common to the queue API and is already being\r
710         used.  This function uses a few semaphore functions that are unique to the\r
711         RTOS objects, rather than generic and used by queues also.\r
712 \r
713         First create and use a counting semaphore. */\r
714         xSemaphore = xSemaphoreCreateCounting( uxMaxCount, uxInitialCount );\r
715         configASSERT( xSemaphore );\r
716 \r
717         /* Give the semaphore a couple of times and ensure the count is returned\r
718         correctly. */\r
719         xSemaphoreGive( xSemaphore );\r
720         xSemaphoreGive( xSemaphore );\r
721         configASSERT( uxSemaphoreGetCount( xSemaphore ) == 2 );\r
722         vSemaphoreDelete( xSemaphore );\r
723 \r
724         /* Create a recursive mutex, and ensure the mutex holder and count are\r
725         returned returned correctly. */\r
726         xSemaphore = xSemaphoreCreateRecursiveMutex();\r
727         configASSERT( uxSemaphoreGetCount( xSemaphore ) == 1 );\r
728         configASSERT( xSemaphore );\r
729         xSemaphoreTakeRecursive( xSemaphore, mainDONT_BLOCK );\r
730         xSemaphoreTakeRecursive( xSemaphore, mainDONT_BLOCK );\r
731         configASSERT( xSemaphoreGetMutexHolder( xSemaphore ) == xTaskGetCurrentTaskHandle() );\r
732         configASSERT( xSemaphoreGetMutexHolder( xSemaphore ) == xTaskGetHandle( mainTASK_TO_DELETE_NAME ) );\r
733         xSemaphoreGiveRecursive( xSemaphore );\r
734         configASSERT( uxSemaphoreGetCount( xSemaphore ) == 0 );\r
735         xSemaphoreGiveRecursive( xSemaphore );\r
736         configASSERT( uxSemaphoreGetCount( xSemaphore ) == 1 );\r
737         configASSERT( xSemaphoreGetMutexHolder( xSemaphore ) == NULL );\r
738         vSemaphoreDelete( xSemaphore );\r
739 \r
740         /* Create a normal mutex, and sure the mutex holder and count are returned\r
741         returned correctly. */\r
742         xSemaphore = xSemaphoreCreateMutex();\r
743         configASSERT( xSemaphore );\r
744         xSemaphoreTake( xSemaphore, mainDONT_BLOCK );\r
745         xSemaphoreTake( xSemaphore, mainDONT_BLOCK );\r
746         configASSERT( uxSemaphoreGetCount( xSemaphore ) == 0 ); /* Not recursive so can only be 1. */\r
747         configASSERT( xSemaphoreGetMutexHolder( xSemaphore ) == xTaskGetCurrentTaskHandle() );\r
748         xSemaphoreGive( xSemaphore );\r
749         configASSERT( uxSemaphoreGetCount( xSemaphore ) == 1 );\r
750         configASSERT( xSemaphoreGetMutexHolder( xSemaphore ) == NULL );\r
751         vSemaphoreDelete( xSemaphore );\r
752 }\r
753 /*-----------------------------------------------------------*/\r
754 \r
755 static void prvExerciseTaskNotificationAPI( void )\r
756 {\r
757 uint32_t ulNotificationValue;\r
758 BaseType_t xReturned;\r
759 \r
760         /* The task should not yet have a notification pending. */\r
761         xReturned = xTaskNotifyWait( 0, 0, &ulNotificationValue, mainDONT_BLOCK );\r
762         configASSERT( xReturned == pdFAIL );\r
763         configASSERT( ulNotificationValue == 0UL );\r
764 \r
765         /* Exercise the 'give' and 'take' versions of the notification API. */\r
766         xTaskNotifyGive( xTaskGetCurrentTaskHandle() );\r
767         xTaskNotifyGive( xTaskGetCurrentTaskHandle() );\r
768         ulNotificationValue = ulTaskNotifyTake( pdTRUE, mainDONT_BLOCK );\r
769         configASSERT( ulNotificationValue == 2 );\r
770 \r
771         /* Exercise the 'notify' and 'clear' API. */\r
772         ulNotificationValue = 20;\r
773         xTaskNotify( xTaskGetCurrentTaskHandle(), ulNotificationValue, eSetValueWithOverwrite );\r
774         ulNotificationValue = 0;\r
775         xReturned = xTaskNotifyWait( 0, 0, &ulNotificationValue, mainDONT_BLOCK );\r
776         configASSERT( xReturned == pdPASS );\r
777         configASSERT( ulNotificationValue == 20 );\r
778         xTaskNotify( xTaskGetCurrentTaskHandle(), ulNotificationValue, eSetValueWithOverwrite );\r
779         xReturned = xTaskNotifyStateClear( NULL );\r
780         configASSERT( xReturned == pdTRUE ); /* First time a notification was pending. */\r
781         xReturned = xTaskNotifyStateClear( NULL );\r
782         configASSERT( xReturned == pdFALSE ); /* Second time the notification was already clear. */\r
783 }\r
784 /*-----------------------------------------------------------*/\r
785 \r
786 static void prvTaskToDelete( void *pvParameters )\r
787 {\r
788         /* Remove compiler warnings about unused parameters. */\r
789         ( void ) pvParameters;\r
790 \r
791         /* Check the enter and exit critical macros are working correctly.  If the\r
792         SVC priority is below configMAX_SYSCALL_INTERRUPT_PRIORITY then this will\r
793         fault. */\r
794         taskENTER_CRITICAL();\r
795         taskEXIT_CRITICAL();\r
796 \r
797         /* Exercise the API of various RTOS objects. */\r
798         prvExerciseEventGroupAPI();\r
799         prvExerciseSemaphoreAPI();\r
800         prvExerciseTaskNotificationAPI();\r
801 \r
802         /* For code coverage test purposes it is deleted by the Idle task. */\r
803         configASSERT( uxTaskGetStackHighWaterMark( NULL ) > 0 );\r
804         vTaskSuspend( NULL );\r
805 }\r
806 /*-----------------------------------------------------------*/\r
807 \r
808 void vApplicationIdleHook( void )\r
809 {\r
810 volatile const uint32_t *pul;\r
811 volatile uint32_t ulReadData;\r
812 \r
813         /* The idle task, and therefore this function, run in Supervisor mode and\r
814         can therefore access all memory.  Try reading from corners of flash and\r
815         RAM to ensure a memory fault does not occur.\r
816 \r
817         Start with the edges of the privileged data area. */\r
818         pul = __privileged_data_start__;\r
819         ulReadData = *pul;\r
820         pul = __privileged_data_end__ - 1;\r
821         ulReadData = *pul;\r
822 \r
823         /* Next the standard SRAM area. */\r
824         pul = __SRAM_segment_end__ - 1;\r
825         ulReadData = *pul;\r
826 \r
827         /* And the standard Flash area - the start of which is marked for\r
828         privileged access only. */\r
829         pul = __FLASH_segment_start__;\r
830         ulReadData = *pul;\r
831         pul = __FLASH_segment_end__ - 1;\r
832         ulReadData = *pul;\r
833 \r
834         /* Reading off the end of Flash or SRAM space should cause a fault.\r
835         Uncomment one of the following two pairs of lines to test. */\r
836 \r
837         /* pul = __FLASH_segment_end__ + 4;\r
838         ulReadData = *pul; */\r
839 \r
840         /* pul = __SRAM_segment_end__ + 1;\r
841         ulReadData = *pul; */\r
842 \r
843         /* One task is created purely so it can be deleted - done for code coverage\r
844         test purposes. */\r
845         if( xTaskToDelete != NULL )\r
846         {\r
847                 vTaskDelete( xTaskToDelete );\r
848                 xTaskToDelete = NULL;\r
849         }\r
850 \r
851         ( void ) ulReadData;\r
852 }\r
853 /*-----------------------------------------------------------*/\r
854 \r
855 static void prvOldStyleUserModeTask( void *pvParameters )\r
856 {\r
857 const volatile uint32_t *pulStandardPeripheralRegister = ( volatile uint32_t * ) 0x40000000;\r
858 volatile const uint32_t *pul;\r
859 volatile uint32_t ulReadData;\r
860 \r
861 /* The following lines are commented out to prevent the unused variable\r
862 compiler warnings when the tests that use the variable are also commented out. */\r
863 /* extern uint32_t __privileged_functions_start__[]; */\r
864 /* const volatile uint32_t *pulSystemPeripheralRegister = ( volatile uint32_t * ) 0xe000e014; */\r
865 \r
866         ( void ) pvParameters;\r
867 \r
868         /* This task is created in User mode using the original xTaskCreate() API\r
869         function.  It should have access to all Flash and RAM except that marked\r
870         as Privileged access only.  Reading from the start and end of the non-\r
871         privileged RAM should not cause a problem (the privileged RAM is the first\r
872         block at the bottom of the RAM memory). */\r
873         pul = __privileged_data_end__ + 1;\r
874         ulReadData = *pul;\r
875         pul = __SRAM_segment_end__ - 1;\r
876         ulReadData = *pul;\r
877 \r
878         /* Likewise reading from the start and end of the non-privileged Flash\r
879         should not be a problem (the privileged Flash is the first block at the\r
880         bottom of the Flash memory). */\r
881         pul = __privileged_functions_end__ + 1;\r
882         ulReadData = *pul;\r
883         pul = __FLASH_segment_end__ - 1;\r
884         ulReadData = *pul;\r
885 \r
886         /* Standard peripherals are accessible. */\r
887         ulReadData = *pulStandardPeripheralRegister;\r
888 \r
889         /* System peripherals are not accessible.  Uncomment the following line\r
890         to test.  Also uncomment the declaration of pulSystemPeripheralRegister\r
891         at the top of this function.\r
892         ulReadData = *pulSystemPeripheralRegister; */\r
893 \r
894         /* Reading from anywhere inside the privileged Flash or RAM should cause a\r
895         fault.  This can be tested by uncommenting any of the following pairs of\r
896         lines.  Also uncomment the declaration of __privileged_functions_start__\r
897         at the top of this function. */\r
898 \r
899         /* pul = __privileged_functions_start__;\r
900         ulReadData = *pul; */\r
901 \r
902         /*pul = __privileged_functions_end__ - 1;\r
903         ulReadData = *pul;*/\r
904 \r
905         /*pul = __privileged_data_start__;\r
906         ulReadData = *pul;*/\r
907 \r
908         /*pul = __privileged_data_end__ - 1;\r
909         ulReadData = *pul;*/\r
910 \r
911         /* Must not just run off the end of a task function, so delete this task.\r
912         Note that because this task was created using xTaskCreate() the stack was\r
913         allocated dynamically and I have not included any code to free it again. */\r
914         vTaskDelete( NULL );\r
915 \r
916         ( void ) ulReadData;\r
917 }\r
918 /*-----------------------------------------------------------*/\r
919 \r
920 static void prvOldStylePrivilegedModeTask( void *pvParameters )\r
921 {\r
922 volatile const uint32_t *pul;\r
923 volatile uint32_t ulReadData;\r
924 const volatile uint32_t *pulSystemPeripheralRegister = ( volatile uint32_t * ) 0xe000e014; /* Systick */\r
925 /*const volatile uint32_t *pulStandardPeripheralRegister = ( volatile uint32_t * ) 0x40000000;*/\r
926 \r
927         ( void ) pvParameters;\r
928 \r
929         /* This task is created in Privileged mode using the original xTaskCreate()\r
930         API     function.  It should have access to all Flash and RAM including that\r
931         marked as Privileged access only.  So reading from the start and end of the\r
932         non-privileged RAM should not cause a problem (the privileged RAM is the\r
933         first block at the bottom of the RAM memory). */\r
934         pul = __privileged_data_end__ + 1;\r
935         ulReadData = *pul;\r
936         pul = __SRAM_segment_end__ - 1;\r
937         ulReadData = *pul;\r
938 \r
939         /* Likewise reading from the start and end of the non-privileged Flash\r
940         should not be a problem (the privileged Flash is the first block at the\r
941         bottom of the Flash memory). */\r
942         pul = __privileged_functions_end__ + 1;\r
943         ulReadData = *pul;\r
944         pul = __FLASH_segment_end__ - 1;\r
945         ulReadData = *pul;\r
946 \r
947         /* Reading from anywhere inside the privileged Flash or RAM should also\r
948         not be a problem. */\r
949         pul = __privileged_functions_start__;\r
950         ulReadData = *pul;\r
951         pul = __privileged_functions_end__ - 1;\r
952         ulReadData = *pul;\r
953         pul = __privileged_data_start__;\r
954         ulReadData = *pul;\r
955         pul = __privileged_data_end__ - 1;\r
956         ulReadData = *pul;\r
957 \r
958         /* Finally, accessing both System and normal peripherals should both be\r
959         possible. */\r
960         ulReadData = *pulSystemPeripheralRegister;\r
961         /*ulReadData = *pulStandardPeripheralRegister;*/\r
962 \r
963         /* Must not just run off the end of a task function, so delete this task.\r
964         Note that because this task was created using xTaskCreate() the stack was\r
965         allocated dynamically and I have not included any code to free it again. */\r
966         vTaskDelete( NULL );\r
967 \r
968         ( void ) ulReadData;\r
969 }\r
970 /*-----------------------------------------------------------*/\r
971 \r
972 void vMainDeleteMe( void )\r
973 {\r
974         vTaskDelete( NULL );\r
975 }\r
976 /*-----------------------------------------------------------*/\r
977 \r
978 void vMainSendImAlive( QueueHandle_t xHandle, uint32_t ulTaskNumber )\r
979 {\r
980         if( xHandle != NULL )\r
981         {\r
982                 xQueueSend( xHandle, &ulTaskNumber, mainDONT_BLOCK );\r
983         }\r
984 }\r
985 /*-----------------------------------------------------------*/\r
986 \r
987 static void prvSetupHardware( void )\r
988 {\r
989         extern void SystemInit( void );\r
990         extern uint32_t __Vectors[];\r
991 \r
992         /* Assuming downloading code via the debugger - so ensure the hardware\r
993         is using the vector table downloaded with the application. */\r
994         mainVTOR = ( uint32_t ) __Vectors;\r
995 \r
996         #if ( ( configASSERT_DEFINED == 1 ) && ( defined ( __GNUC__ ) ) )\r
997         {\r
998                 /* Sanity check linker configuration sizes sections adequately. */\r
999                 const uint32_t ulPrivilegedFunctionsActualEnd = ( uint32_t ) __privileged_functions_actual_end__;\r
1000                 const uint32_t ulPrivilegedDataActualEnd = ( uint32_t ) __privileged_data_actual_end__;\r
1001                 const uint32_t ulPrivilegedFunctionsEnd = ( uint32_t ) __privileged_functions_end__;\r
1002                 const uint32_t ulPrivilegedDataEnd = ( uint32_t ) __privileged_data_end__;\r
1003 \r
1004                 configASSERT( ulPrivilegedFunctionsActualEnd < ulPrivilegedFunctionsEnd );\r
1005                 configASSERT( ulPrivilegedDataActualEnd < ulPrivilegedDataEnd );\r
1006 \r
1007                 /* Clear the privileged data to 0 as the C start up code is only set to\r
1008                 clear the non-privileged bss. */\r
1009                 memset( ( void * ) __privileged_data_start__, 0x00, ( size_t ) __privileged_data_actual_end__ - ( size_t ) __privileged_data_start__ );\r
1010         }\r
1011         #endif\r
1012 \r
1013         SystemInit();\r
1014         SystemCoreClockUpdate();\r
1015 }\r
1016 /*-----------------------------------------------------------*/\r
1017 \r
1018 void vApplicationTickHook( void )\r
1019 {\r
1020 static uint32_t ulCallCount = 0;\r
1021 const uint32_t ulCallsBetweenSends = pdMS_TO_TICKS( 5000 );\r
1022 const uint32_t ulMessage = configPRINT_SYSTEM_STATUS;\r
1023 portBASE_TYPE xDummy;\r
1024 \r
1025         /* If configUSE_TICK_HOOK is set to 1 then this function will get called\r
1026         from each RTOS tick.  It is called from the tick interrupt and therefore\r
1027         will be executing in the privileged state. */\r
1028 \r
1029         ulCallCount++;\r
1030 \r
1031         /* Is it time to print out the pass/fail message again? */\r
1032         if( ulCallCount >= ulCallsBetweenSends )\r
1033         {\r
1034                 ulCallCount = 0;\r
1035 \r
1036                 /* Send a message to the check task to command it to check that all\r
1037                 the tasks are still running then print out the status.\r
1038 \r
1039                 This is running in an ISR so has to use the "FromISR" version of\r
1040                 xQueueSend().  Because it is in an ISR it is running with privileges\r
1041                 so can access xGlobalScopeCheckQueue directly. */\r
1042                 xQueueSendFromISR( xGlobalScopeCheckQueue, &ulMessage, &xDummy );\r
1043         }\r
1044 }\r
1045 /*-----------------------------------------------------------*/\r
1046 \r
1047 void vApplicationStackOverflowHook( TaskHandle_t pxTask, char *pcTaskName )\r
1048 {\r
1049         /* If configCHECK_FOR_STACK_OVERFLOW is set to either 1 or 2 then this\r
1050         function will automatically get called if a task overflows its stack. */\r
1051         ( void ) pxTask;\r
1052         ( void ) pcTaskName;\r
1053         for( ;; );\r
1054 }\r
1055 /*-----------------------------------------------------------*/\r
1056 \r
1057 void vApplicationMallocFailedHook( void )\r
1058 {\r
1059         /* If configUSE_MALLOC_FAILED_HOOK is set to 1 then this function will\r
1060         be called automatically if a call to pvPortMalloc() fails.  pvPortMalloc()\r
1061         is called automatically when a task, queue or semaphore is created. */\r
1062         for( ;; );\r
1063 }\r
1064 /*-----------------------------------------------------------*/\r
1065 \r
1066 static void prvTimerCallback( TaskHandle_t xExpiredTimer )\r
1067 {\r
1068 uint32_t ulCount;\r
1069 \r
1070         /* The count of the number of times this timer has expired is saved in the\r
1071         timer's ID.  Obtain the current count. */\r
1072         ulCount = ( uint32_t ) pvTimerGetTimerID( xTimer );\r
1073 \r
1074         /* Increment the count, and save it back into the timer's ID. */\r
1075         ulCount++;\r
1076         vTimerSetTimerID( xTimer, ( void * ) ulCount );\r
1077 \r
1078         /* Let the check task know the timer is still running. */\r
1079         vMainSendImAlive( xGlobalScopeCheckQueue, configTIMER_STILL_EXECUTING );\r
1080 }\r
1081 /*-----------------------------------------------------------*/\r
1082 \r
1083 /* configUSE_STATIC_ALLOCATION is set to 1, so the application must provide an\r
1084 implementation of vApplicationGetIdleTaskMemory() to provide the memory that is\r
1085 used by the Idle task. */\r
1086 void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, uint32_t *pulIdleTaskStackSize )\r
1087 {\r
1088 /* If the buffers to be provided to the Idle task are declared inside this\r
1089 function then they must be declared static - otherwise they will be allocated on\r
1090 the stack and so not exists after this function exits. */\r
1091 static StaticTask_t xIdleTaskTCB;\r
1092 static StackType_t uxIdleTaskStack[ configMINIMAL_STACK_SIZE ];\r
1093 \r
1094         /* Pass out a pointer to the StaticTask_t structure in which the Idle task's\r
1095         state will be stored. */\r
1096         *ppxIdleTaskTCBBuffer = &xIdleTaskTCB;\r
1097 \r
1098         /* Pass out the array that will be used as the Idle task's stack. */\r
1099         *ppxIdleTaskStackBuffer = uxIdleTaskStack;\r
1100 \r
1101         /* Pass out the size of the array pointed to by *ppxIdleTaskStackBuffer.\r
1102         Note that, as the array is necessarily of type StackType_t,\r
1103         configMINIMAL_STACK_SIZE is specified in words, not bytes. */\r
1104         *pulIdleTaskStackSize = configMINIMAL_STACK_SIZE;\r
1105 }\r
1106 /*-----------------------------------------------------------*/\r
1107 \r
1108 /* configUSE_STATIC_ALLOCATION and configUSE_TIMERS are both set to 1, so the\r
1109 application must provide an implementation of vApplicationGetTimerTaskMemory()\r
1110 to provide the memory that is used by the Timer service task. */\r
1111 void vApplicationGetTimerTaskMemory( StaticTask_t **ppxTimerTaskTCBBuffer, StackType_t **ppxTimerTaskStackBuffer, uint32_t *pulTimerTaskStackSize )\r
1112 {\r
1113 /* If the buffers to be provided to the Timer task are declared inside this\r
1114 function then they must be declared static - otherwise they will be allocated on\r
1115 the stack and so not exists after this function exits. */\r
1116 static StaticTask_t xTimerTaskTCB;\r
1117 static StackType_t uxTimerTaskStack[ configTIMER_TASK_STACK_DEPTH ];\r
1118 \r
1119         /* Pass out a pointer to the StaticTask_t structure in which the Timer\r
1120         task's state will be stored. */\r
1121         *ppxTimerTaskTCBBuffer = &xTimerTaskTCB;\r
1122 \r
1123         /* Pass out the array that will be used as the Timer task's stack. */\r
1124         *ppxTimerTaskStackBuffer = uxTimerTaskStack;\r
1125 \r
1126         /* Pass out the size of the array pointed to by *ppxTimerTaskStackBuffer.\r
1127         Note that, as the array is necessarily of type StackType_t,\r
1128         configMINIMAL_STACK_SIZE is specified in words, not bytes. */\r
1129         *pulTimerTaskStackSize = configTIMER_TASK_STACK_DEPTH;\r
1130 }\r
1131 /*-----------------------------------------------------------*/\r
1132 \r
1133 static void prvITMPrintString( const char *pcString )\r
1134 {\r
1135         while( *pcString != 0x00 )\r
1136         {\r
1137                 ITM_SendChar( *pcString );\r
1138                 pcString++;\r
1139         }\r
1140 }\r
1141 /*-----------------------------------------------------------*/\r
1142 \r
1143 static void prvRegTest3Task( void *pvParameters )\r
1144 {\r
1145         /* Although the regtest task is written in assembler, its entry point is\r
1146         written in C for convenience of checking the task parameter is being passed\r
1147         in correctly. */\r
1148         if( pvParameters == configREG_TEST_TASK_3_PARAMETER )\r
1149         {\r
1150                 /* Start the part of the test that is written in assembler. */\r
1151                 vRegTest3Implementation();\r
1152         }\r
1153 \r
1154         /* The following line will only execute if the task parameter is found to\r
1155         be incorrect.  The check task will detect that the regtest loop counter is\r
1156         not being incremented and flag an error. */\r
1157         vTaskDelete( NULL );\r
1158 }\r
1159 /*-----------------------------------------------------------*/\r
1160 \r
1161 static void prvRegTest4Task( void *pvParameters )\r
1162 {\r
1163         /* Although the regtest task is written in assembler, its entry point is\r
1164         written in C for convenience of checking the task parameter is being passed\r
1165         in correctly. */\r
1166         if( pvParameters == configREG_TEST_TASK_4_PARAMETER )\r
1167         {\r
1168                 /* Start the part of the test that is written in assembler. */\r
1169                 vRegTest4Implementation();\r
1170         }\r
1171 \r
1172         /* The following line will only execute if the task parameter is found to\r
1173         be incorrect.  The check task will detect that the regtest loop counter is\r
1174         not being incremented and flag an error. */\r
1175         vTaskDelete( NULL );\r
1176 }\r
1177 /*-----------------------------------------------------------*/\r
1178 \r