]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ARM7_STR71x_IAR/main.c
Add additional critical section to the default tickless implementations.
[freertos] / FreeRTOS / Demo / ARM7_STR71x_IAR / main.c
1 /*\r
2     FreeRTOS V7.5.2 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3 \r
4     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
5 \r
6     ***************************************************************************\r
7      *                                                                       *\r
8      *    FreeRTOS provides completely free yet professionally developed,    *\r
9      *    robust, strictly quality controlled, supported, and cross          *\r
10      *    platform software that has become a de facto standard.             *\r
11      *                                                                       *\r
12      *    Help yourself get started quickly and support the FreeRTOS         *\r
13      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
14      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
15      *                                                                       *\r
16      *    Thank you!                                                         *\r
17      *                                                                       *\r
18     ***************************************************************************\r
19 \r
20     This file is part of the FreeRTOS distribution.\r
21 \r
22     FreeRTOS is free software; you can redistribute it and/or modify it under\r
23     the terms of the GNU General Public License (version 2) as published by the\r
24     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
25 \r
26     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
27     >>! a combined work that includes FreeRTOS without being obliged to provide\r
28     >>! the source code for proprietary components outside of the FreeRTOS\r
29     >>! kernel.\r
30 \r
31     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
32     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
33     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
34     link: http://www.freertos.org/a00114.html\r
35 \r
36     1 tab == 4 spaces!\r
37 \r
38     ***************************************************************************\r
39      *                                                                       *\r
40      *    Having a problem?  Start by reading the FAQ "My application does   *\r
41      *    not run, what could be wrong?"                                     *\r
42      *                                                                       *\r
43      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
44      *                                                                       *\r
45     ***************************************************************************\r
46 \r
47     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
48     license and Real Time Engineers Ltd. contact details.\r
49 \r
50     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
51     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
52     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
53 \r
54     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
55     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
56     licenses offer ticketed support, indemnification and middleware.\r
57 \r
58     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
59     engineered and independently SIL3 certified version for use in safety and\r
60     mission critical applications that require provable dependability.\r
61 \r
62     1 tab == 4 spaces!\r
63 */\r
64 \r
65 /*\r
66         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
67         The processor MUST be in supervisor mode when vTaskStartScheduler is\r
68         called.  The demo applications included in the FreeRTOS.org download switch\r
69         to supervisor mode prior to main being called.  If you are not using one of\r
70         these demo application projects then ensure Supervisor mode is used.\r
71 */\r
72 \r
73 /*\r
74  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
75  * documentation provides more details of the demo application tasks.\r
76  *\r
77  * Main.c also creates a task called "Check".  This only executes every three\r
78  * seconds but has the highest priority so is guaranteed to get processor time.\r
79  * Its main function is to check that all the other tasks are still operational.\r
80  * Each task (other than the "flash" tasks) maintains a unique count that is\r
81  * incremented each time the task successfully completes its function.  Should\r
82  * any error occur within such a task the count is permanently halted.  The\r
83  * check task inspects the count of each task to ensure it has changed since\r
84  * the last time the check task executed.  If all the count variables have\r
85  * changed all the tasks are still executing error free, and the check task\r
86  * toggles the onboard LED.  Should any task contain an error at any time\r
87  * the LED toggle rate will change from 3 seconds to 500ms.\r
88  *\r
89  */\r
90 \r
91 /* Library includes. */\r
92 #include "RCCU.h"\r
93 #include "wdg.h"\r
94 \r
95 /* Scheduler includes. */\r
96 #include "FreeRTOS.h"\r
97 #include "task.h"\r
98 \r
99 /* Demo application includes. */\r
100 #include "flash.h"\r
101 #include "integer.h"\r
102 #include "PollQ.h"\r
103 #include "BlockQ.h"\r
104 #include "semtest.h"\r
105 #include "dynamic.h"\r
106 #include "partest.h"\r
107 #include "comtest2.h"\r
108 \r
109 /* Priorities for the demo application tasks. */\r
110 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
111 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 2 )\r
112 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
113 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 1 )\r
114 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
115 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
116 \r
117 /* Constants required by the 'Check' task. */\r
118 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
119 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
120 #define mainCHECK_TASK_LED                      ( 4 )\r
121 \r
122 /* Constants for the ComTest tasks. */\r
123 #define mainCOM_TEST_BAUD_RATE          ( ( unsigned long ) 115200 )\r
124 #define mainCOM_TEST_LED                        ( 6 ) /* The LED built onto the kickstart board. */\r
125 \r
126 /*\r
127  * The task that executes at the highest priority and calls\r
128  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
129  * of the file.\r
130  */\r
131 static void vErrorChecks( void *pvParameters );\r
132 \r
133 /*\r
134  * Configure the processor for use with the IAR STR71x demo board.  This\r
135  * just sets the PLL for the required frequency.\r
136  */\r
137 static void prvSetupHardware( void );\r
138 \r
139 /*\r
140  * Checks that all the demo application tasks are still executing without error\r
141  * - as described at the top of the file.  Called by vErrorChecks().\r
142  */\r
143 static long prvCheckOtherTasksAreStillRunning( void );\r
144 \r
145 \r
146 /*-----------------------------------------------------------*/\r
147 \r
148 /*\r
149  * Starts all the other tasks, then starts the scheduler.\r
150  */\r
151 void main( void )\r
152 {\r
153         /* Setup any hardware that has not already been configured by the low\r
154         level init routines. */\r
155         prvSetupHardware();\r
156 \r
157         /* Initialise the LED outputs for use by the demo application tasks. */\r
158         vParTestInitialise();\r
159 \r
160         /* Start all the standard demo application tasks. */\r
161         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
162         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
163         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
164         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
165         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
166         vStartDynamicPriorityTasks();\r
167         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
168 \r
169         /* Start the check task - which is defined in this file. */\r
170         xTaskCreate( vErrorChecks, "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
171 \r
172         /* Start the scheduler.\r
173 \r
174         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
175         The processor MUST be in supervisor mode when vTaskStartScheduler is\r
176         called.  The demo applications included in the FreeRTOS.org download switch\r
177         to supervisor mode prior to main being called.  If you are not using one of\r
178         these demo application projects then ensure Supervisor mode is used here. */\r
179 \r
180         vTaskStartScheduler();\r
181 \r
182         /* We should never get here as control is now taken by the scheduler. */\r
183         return;\r
184 }\r
185 /*-----------------------------------------------------------*/\r
186 \r
187 static void prvSetupHardware( void )\r
188 {\r
189     /* Setup the PLL to generate a 48MHz clock from the 4MHz CLK. */\r
190 \r
191     /* Turn of the div by two. */\r
192         RCCU_Div2Config( DISABLE );\r
193 \r
194     /* 48MHz = ( 4MHz * 12 ) / 1 */\r
195         RCCU_PLL1Config( RCCU_PLL1_Mul_12, RCCU_Div_1 );\r
196     RCCU_RCLKSourceConfig( RCCU_PLL1_Output );\r
197 }\r
198 /*-----------------------------------------------------------*/\r
199 \r
200 static void vErrorChecks( void *pvParameters )\r
201 {\r
202 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
203 portTickType xLastWakeTime;\r
204 \r
205         /* The parameters are not used in this task. */\r
206         ( void ) pvParameters;\r
207 \r
208         /* Initialise xLastWakeTime to ensure the first call to vTaskDelayUntil()\r
209         functions correctly. */\r
210         xLastWakeTime = xTaskGetTickCount();\r
211 \r
212         /* Cycle for ever, delaying then checking all the other tasks are still\r
213         operating without error.  If an error is detected then the delay period\r
214         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
215         the on board LED flash rate will increase. */\r
216 \r
217         for( ;; )\r
218         {\r
219                 /* Delay until it is time to execute again.  The delay period is\r
220                 shorter following an error so the LED flashes faster. */\r
221                 vTaskDelayUntil( &xLastWakeTime, xDelayPeriod );\r
222         \r
223                 /* Check all the standard demo application tasks are executing without\r
224                 error. */\r
225                 if( prvCheckOtherTasksAreStillRunning() != pdPASS )\r
226                 {\r
227                         /* An error has been detected in one of the tasks - flash faster. */\r
228                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
229                 }\r
230                 \r
231                 vParTestToggleLED( mainCHECK_TASK_LED );\r
232         }\r
233 }\r
234 /*-----------------------------------------------------------*/\r
235 \r
236 static long prvCheckOtherTasksAreStillRunning( void )\r
237 {\r
238 long lReturn = ( long ) pdPASS;\r
239 \r
240         /* Check all the demo tasks (other than the flash tasks) to ensure\r
241         that they are all still running, and that none of them have detected\r
242         an error. */\r
243 \r
244         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
245         {\r
246                 lReturn = ( long ) pdFAIL;\r
247         }\r
248 \r
249         if( xArePollingQueuesStillRunning() != pdTRUE )\r
250         {\r
251                 lReturn = ( long ) pdFAIL;\r
252         }\r
253 \r
254         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
255         {\r
256                 lReturn = ( long ) pdFAIL;\r
257         }\r
258 \r
259         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
260         {\r
261                 lReturn = ( long ) pdFAIL;\r
262         }\r
263 \r
264         if( xAreComTestTasksStillRunning() != pdTRUE )\r
265         {\r
266                 lReturn = ( long ) pdFAIL;\r
267         }\r
268 \r
269         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
270         {\r
271                 lReturn = ( long ) pdFAIL;\r
272         }\r
273 \r
274         return lReturn;\r
275 }\r
276 /*-----------------------------------------------------------*/\r
277 \r
278 \r