]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ColdFire_MCF52221_CodeWarrior/sources/main.c
Prepare for V7.3.0 release.
[freertos] / FreeRTOS / Demo / ColdFire_MCF52221_CodeWarrior / sources / main.c
1 /*\r
2     FreeRTOS V7.3.0 - Copyright (C) 2012 Real Time Engineers Ltd.\r
3 \r
4     FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT \r
5     http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
10      *    Complete, revised, and edited pdf reference manuals are also       *\r
11      *    available.                                                         *\r
12      *                                                                       *\r
13      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
14      *    ensuring you get running as quickly as possible and with an        *\r
15      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
16      *    the FreeRTOS project to continue with its mission of providing     *\r
17      *    professional grade, cross platform, de facto standard solutions    *\r
18      *    for microcontrollers - completely free of charge!                  *\r
19      *                                                                       *\r
20      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
21      *                                                                       *\r
22      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
23      *                                                                       *\r
24     ***************************************************************************\r
25 \r
26 \r
27     This file is part of the FreeRTOS distribution.\r
28 \r
29     FreeRTOS is free software; you can redistribute it and/or modify it under\r
30     the terms of the GNU General Public License (version 2) as published by the\r
31     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
32     >>>NOTE<<< The modification to the GPL is included to allow you to\r
33     distribute a combined work that includes FreeRTOS without being obliged to\r
34     provide the source code for proprietary components outside of the FreeRTOS\r
35     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
36     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
37     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
38     more details. You should have received a copy of the GNU General Public\r
39     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
40     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
41     by writing to Richard Barry, contact details for whom are available on the\r
42     FreeRTOS WEB site.\r
43 \r
44     1 tab == 4 spaces!\r
45     \r
46     ***************************************************************************\r
47      *                                                                       *\r
48      *    Having a problem?  Start by reading the FAQ "My application does   *\r
49      *    not run, what could be wrong?"                                     *\r
50      *                                                                       *\r
51      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
52      *                                                                       *\r
53     ***************************************************************************\r
54 \r
55     \r
56     http://www.FreeRTOS.org - Documentation, training, latest versions, license \r
57     and contact details.  \r
58     \r
59     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
60     including FreeRTOS+Trace - an indispensable productivity tool.\r
61 \r
62     Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
63     the code with commercial support, indemnification, and middleware, under \r
64     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
65     provide a safety engineered and independently SIL3 certified version under \r
66     the SafeRTOS brand: http://www.SafeRTOS.com.\r
67 */\r
68 \r
69 \r
70 /*\r
71  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
72  * documentation provides more details of the standard demo application tasks.\r
73  * In addition to the standard demo tasks, the following tasks and tests are\r
74  * defined and/or created within this file:\r
75  *\r
76  * "Check" task -  This only executes every five seconds but has a high priority\r
77  * to ensure it gets processor time.  Its main function is to check that all the\r
78  * standard demo tasks are still operational.  While no errors have been\r
79  * discovered the check task will toggle an LED every 5 seconds - the toggle\r
80  * rate increasing to 500ms being a visual indication that at least one task has\r
81  * reported unexpected behaviour.\r
82  *\r
83  * "Reg test" tasks - These fill the registers with known values, then check\r
84  * that each register still contains its expected value.  Each task uses\r
85  * different values.  The tasks run with very low priority so get preempted very\r
86  * frequently.  A register containing an unexpected value is indicative of an\r
87  * error in the context switching mechanism.\r
88  *\r
89  */\r
90 \r
91 /* Standard includes. */\r
92 #include <stdio.h>\r
93 \r
94 /* Scheduler includes. */\r
95 #include "FreeRTOS.h"\r
96 #include "task.h"\r
97 #include "queue.h"\r
98 #include "semphr.h"\r
99 \r
100 /* Demo app includes. */\r
101 #include "BlockQ.h"\r
102 #include "crflash.h"\r
103 #include "partest.h"\r
104 #include "semtest.h"\r
105 #include "GenQTest.h"\r
106 #include "QPeek.h"\r
107 #include "comtest2.h"\r
108 \r
109 /*-----------------------------------------------------------*/\r
110 \r
111 /* The time between cycles of the 'check' functionality - as described at the\r
112 top of this file. */\r
113 #define mainNO_ERROR_PERIOD                                     ( ( portTickType ) 5000 / portTICK_RATE_MS )\r
114 \r
115 /* The rate at which the LED controlled by the 'check' task will flash should an\r
116 error have been detected. */\r
117 #define mainERROR_PERIOD                                        ( ( portTickType ) 500 / portTICK_RATE_MS )\r
118 \r
119 /* The LED controlled by the 'check' task. */\r
120 #define mainCHECK_LED                                           ( 3 )\r
121 \r
122 /* ComTest constants - there is no free LED for the comtest tasks. */\r
123 #define mainCOM_TEST_BAUD_RATE                          ( ( unsigned portLONG ) 19200 )\r
124 #define mainCOM_TEST_LED                                        ( 5 )\r
125 \r
126 /* Task priorities. */\r
127 #define mainCOM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 2 )\r
128 #define mainCHECK_TASK_PRIORITY                         ( tskIDLE_PRIORITY + 3 )\r
129 #define mainSEM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
130 #define mainBLOCK_Q_PRIORITY                            ( tskIDLE_PRIORITY + 2 )\r
131 #define mainGEN_QUEUE_TASK_PRIORITY                     ( tskIDLE_PRIORITY )\r
132 \r
133 /* Co-routines are used to flash the LEDs. */\r
134 #define mainNUM_FLASH_CO_ROUTINES                       ( 3 )\r
135 \r
136 /* The baud rate used by the comtest tasks. */\r
137 #define mainBAUD_RATE                                           ( 38400 )\r
138 \r
139 /* There is no spare LED for the comtest tasks, so this is set to an invalid\r
140 number. */\r
141 #define mainCOM_LED                                                     ( 4 )\r
142 \r
143 /*\r
144  * Configure the hardware for the demo.\r
145  */\r
146 static void prvSetupHardware( void );\r
147 \r
148 /*\r
149  * Implements the 'check' task functionality as described at the top of this\r
150  * file.\r
151  */\r
152 static void prvCheckTask( void *pvParameters );\r
153 \r
154 /*\r
155  * Implement the 'Reg test' functionality as described at the top of this file.\r
156  */\r
157 static void vRegTest1Task( void *pvParameters );\r
158 static void vRegTest2Task( void *pvParameters );\r
159 \r
160 /*-----------------------------------------------------------*/\r
161 \r
162 /* Counters used to detect errors within the reg test tasks. */\r
163 static volatile unsigned portLONG ulRegTest1Counter = 0x11111111, ulRegTest2Counter = 0x22222222;\r
164 \r
165 /*-----------------------------------------------------------*/\r
166 \r
167 int main( void )\r
168 {\r
169         /* Setup the hardware ready for this demo. */\r
170         prvSetupHardware();\r
171 \r
172         /* Start the standard demo tasks. */\r
173         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
174         vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
175         vStartQueuePeekTasks();\r
176         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
177         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainBAUD_RATE, mainCOM_LED );\r
178 \r
179         /* For demo purposes use some co-routines to flash the LEDs. */\r
180         vStartFlashCoRoutines( mainNUM_FLASH_CO_ROUTINES );\r
181 \r
182         /* Create the check task. */\r
183         xTaskCreate( prvCheckTask, ( signed portCHAR * ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
184 \r
185 \r
186         /* Start the reg test tasks - defined in this file. */\r
187         xTaskCreate( vRegTest1Task, ( signed portCHAR * ) "Reg1", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest1Counter, tskIDLE_PRIORITY, NULL );\r
188         xTaskCreate( vRegTest2Task, ( signed portCHAR * ) "Reg2", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest2Counter, tskIDLE_PRIORITY, NULL );\r
189 \r
190         /* Start the scheduler. */\r
191         vTaskStartScheduler();\r
192 \r
193     /* Will only get here if there was insufficient memory to create the idle\r
194     task. */\r
195         for( ;; )\r
196         {\r
197         }\r
198 }\r
199 /*-----------------------------------------------------------*/\r
200 \r
201 static void prvCheckTask( void *pvParameters )\r
202 {\r
203 unsigned portLONG ulTicksToWait = mainNO_ERROR_PERIOD, ulError = 0, ulLastRegTest1Count = 0, ulLastRegTest2Count = 0;\r
204 portTickType xLastExecutionTime;\r
205 volatile unsigned portBASE_TYPE uxUnusedStack;\r
206 \r
207         ( void ) pvParameters;\r
208 \r
209         /* Initialise the variable used to control our iteration rate prior to\r
210         its first use. */\r
211         xLastExecutionTime = xTaskGetTickCount();\r
212 \r
213         for( ;; )\r
214         {\r
215                 /* Wait until it is time to run the tests again. */\r
216                 vTaskDelayUntil( &xLastExecutionTime, ulTicksToWait );\r
217 \r
218                 /* Has an error been found in any task? */\r
219                 if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
220                 {\r
221                         ulError |= 0x01UL;\r
222                 }\r
223 \r
224                 if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
225                 {\r
226                         ulError |= 0x02UL;\r
227                 }\r
228 \r
229                 if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
230                 {\r
231                         ulError |= 0x04UL;\r
232                 }\r
233 \r
234                 if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
235             {\r
236                 ulError |= 0x20UL;\r
237             }\r
238             \r
239             if( xAreComTestTasksStillRunning() != pdTRUE )\r
240             {\r
241                 ulError |= 0x40UL;\r
242             }\r
243 \r
244                 if( ulLastRegTest1Count == ulRegTest1Counter )\r
245                 {\r
246                         ulError |= 0x1000UL;\r
247                 }\r
248 \r
249                 if( ulLastRegTest2Count == ulRegTest2Counter )\r
250                 {\r
251                         ulError |= 0x1000UL;\r
252                 }\r
253 \r
254                 ulLastRegTest1Count = ulRegTest1Counter;\r
255                 ulLastRegTest2Count = ulRegTest2Counter;\r
256 \r
257                 /* If an error has been found then increase our cycle rate, and in so\r
258                 doing increase the rate at which the check task LED toggles. */\r
259                 if( ulError != 0 )\r
260                 {\r
261                 ulTicksToWait = mainERROR_PERIOD;\r
262                 }\r
263 \r
264                 /* Toggle the LED each itteration. */\r
265                 vParTestToggleLED( mainCHECK_LED );\r
266                 \r
267                 /* For demo only - how much unused stack does this task have? */\r
268                 uxUnusedStack = uxTaskGetStackHighWaterMark( NULL );\r
269         }\r
270 }\r
271 /*-----------------------------------------------------------*/\r
272 \r
273 void prvSetupHardware( void )\r
274 {\r
275         portDISABLE_INTERRUPTS();\r
276 \r
277         /* Setup the port used to toggle LEDs. */\r
278         vParTestInitialise();\r
279 }\r
280 /*-----------------------------------------------------------*/\r
281 \r
282 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName )\r
283 {\r
284         /* This will get called if a stack overflow is detected during the context\r
285         switch.  Set configCHECK_FOR_STACK_OVERFLOWS to 2 to also check for stack\r
286         problems within nested interrupts, but only do this for debug purposes as\r
287         it will increase the context switch time. */\r
288 \r
289         ( void ) pxTask;\r
290         ( void ) pcTaskName;\r
291 \r
292         for( ;; )\r
293         {\r
294         }\r
295 }\r
296 /*-----------------------------------------------------------*/\r
297 \r
298 void vApplicationIdleHook( void );\r
299 void vApplicationIdleHook( void )\r
300 {\r
301         /* The co-routines run in the idle task. */\r
302         vCoRoutineSchedule();\r
303 }\r
304 /*-----------------------------------------------------------*/\r
305 \r
306 void exit( int n )\r
307 {\r
308         /* To keep the linker happy only as the libraries have been removed from\r
309         the build. */\r
310         ( void ) n;\r
311         for( ;; ) {}\r
312 }\r
313 /*-----------------------------------------------------------*/\r
314 \r
315 static void vRegTest1Task( void *pvParameters )\r
316 {\r
317         /* Sanity check - did we receive the parameter expected? */\r
318         if( pvParameters != &ulRegTest1Counter )\r
319         {\r
320                 /* Change here so the check task can detect that an error occurred. */\r
321                 for( ;; )\r
322                 {\r
323                 }\r
324         }\r
325 \r
326         /* Set all the registers to known values, then check that each retains its\r
327         expected value - as described at the top of this file.  If an error is\r
328         found then the loop counter will no longer be incremented allowing the check\r
329         task to recognise the error. */\r
330         asm volatile    (       "reg_test_1_start:                                              \n\t"\r
331                                                 "       moveq           #1, d0                                  \n\t"\r
332                                                 "       moveq           #2, d1                                  \n\t"\r
333                                                 "       moveq           #3, d2                                  \n\t"\r
334                                                 "       moveq           #4, d3                                  \n\t"\r
335                                                 "       moveq           #5, d4                                  \n\t"\r
336                                                 "       moveq           #6, d5                                  \n\t"\r
337                                                 "       moveq           #7, d6                                  \n\t"\r
338                                                 "       moveq           #8, d7                                  \n\t"\r
339                                                 "       move            #9, a0                                  \n\t"\r
340                                                 "       move            #10, a1                                 \n\t"\r
341                                                 "       move            #11, a2                                 \n\t"\r
342                                                 "       move            #12, a3                                 \n\t"\r
343                                                 "       move            #13, a4                                 \n\t"\r
344                                                 "       move            #14, a5                                 \n\t"\r
345                                                 "       move            #15, a6                                 \n\t"\r
346                                                 "                                                                               \n\t"\r
347                                                 "       cmpi.l          #1, d0                                  \n\t"\r
348                                                 "       bne                     reg_test_1_error                \n\t"\r
349                                                 "       cmpi.l          #2, d1                                  \n\t"\r
350                                                 "       bne                     reg_test_1_error                \n\t"\r
351                                                 "       cmpi.l          #3, d2                                  \n\t"\r
352                                                 "       bne                     reg_test_1_error                \n\t"\r
353                                                 "       cmpi.l          #4, d3                                  \n\t"\r
354                                                 "       bne                     reg_test_1_error                \n\t"\r
355                                                 "       cmpi.l          #5, d4                                  \n\t"\r
356                                                 "       bne                     reg_test_1_error                \n\t"\r
357                                                 "       cmpi.l          #6, d5                                  \n\t"\r
358                                                 "       bne                     reg_test_1_error                \n\t"\r
359                                                 "       cmpi.l          #7, d6                                  \n\t"\r
360                                                 "       bne                     reg_test_1_error                \n\t"\r
361                                                 "       cmpi.l          #8, d7                                  \n\t"\r
362                                                 "       bne                     reg_test_1_error                \n\t"\r
363                                                 "       move            a0, d0                                  \n\t"\r
364                                                 "       cmpi.l          #9, d0                                  \n\t"\r
365                                                 "       bne                     reg_test_1_error                \n\t"\r
366                                                 "       move            a1, d0                                  \n\t"\r
367                                                 "       cmpi.l          #10, d0                                 \n\t"\r
368                                                 "       bne                     reg_test_1_error                \n\t"\r
369                                                 "       move            a2, d0                                  \n\t"\r
370                                                 "       cmpi.l          #11, d0                                 \n\t"\r
371                                                 "       bne                     reg_test_1_error                \n\t"\r
372                                                 "       move            a3, d0                                  \n\t"\r
373                                                 "       cmpi.l          #12, d0                                 \n\t"\r
374                                                 "       bne                     reg_test_1_error                \n\t"\r
375                                                 "       move            a4, d0                                  \n\t"\r
376                                                 "       cmpi.l          #13, d0                                 \n\t"\r
377                                                 "       bne                     reg_test_1_error                \n\t"\r
378                                                 "       move            a5, d0                                  \n\t"\r
379                                                 "       cmpi.l          #14, d0                                 \n\t"\r
380                                                 "       bne                     reg_test_1_error                \n\t"\r
381                                                 "       move            a6, d0                                  \n\t"\r
382                                                 "       cmpi.l          #15, d0                                 \n\t"\r
383                                                 "       bne                     reg_test_1_error                \n\t"\r
384                                                 "       move            ulRegTest1Counter, d0   \n\t"\r
385                                                 "       addq            #1, d0                                  \n\t"\r
386                                                 "       move            d0, ulRegTest1Counter   \n\t"\r
387                                                 "       bra                     reg_test_1_start                \n\t"\r
388                                                 "reg_test_1_error:                                              \n\t"\r
389                                                 "       bra                     reg_test_1_error                \n\t"\r
390                                         );\r
391 }\r
392 /*-----------------------------------------------------------*/\r
393 \r
394 static void vRegTest2Task( void *pvParameters )\r
395 {\r
396         /* Sanity check - did we receive the parameter expected? */\r
397         if( pvParameters != &ulRegTest2Counter )\r
398         {\r
399                 /* Change here so the check task can detect that an error occurred. */\r
400                 for( ;; )\r
401                 {\r
402                 }\r
403         }\r
404 \r
405         /* Set all the registers to known values, then check that each retains its\r
406         expected value - as described at the top of this file.  If an error is\r
407         found then the loop counter will no longer be incremented allowing the check\r
408         task to recognise the error. */\r
409         asm volatile    (       "reg_test_2_start:                                              \n\t"\r
410                                                 "       moveq           #10, d0                                 \n\t"\r
411                                                 "       moveq           #20, d1                                 \n\t"\r
412                                                 "       moveq           #30, d2                                 \n\t"\r
413                                                 "       moveq           #40, d3                                 \n\t"\r
414                                                 "       moveq           #50, d4                                 \n\t"\r
415                                                 "       moveq           #60, d5                                 \n\t"\r
416                                                 "       moveq           #70, d6                                 \n\t"\r
417                                                 "       moveq           #80, d7                                 \n\t"\r
418                                                 "       move            #90, a0                                 \n\t"\r
419                                                 "       move            #100, a1                                \n\t"\r
420                                                 "       move            #110, a2                                \n\t"\r
421                                                 "       move            #120, a3                                \n\t"\r
422                                                 "       move            #130, a4                                \n\t"\r
423                                                 "       move            #140, a5                                \n\t"\r
424                                                 "       move            #150, a6                                \n\t"\r
425                                                 "                                                                               \n\t"\r
426                                                 "       cmpi.l          #10, d0                                 \n\t"\r
427                                                 "       bne                     reg_test_2_error                \n\t"\r
428                                                 "       cmpi.l          #20, d1                                 \n\t"\r
429                                                 "       bne                     reg_test_2_error                \n\t"\r
430                                                 "       cmpi.l          #30, d2                                 \n\t"\r
431                                                 "       bne                     reg_test_2_error                \n\t"\r
432                                                 "       cmpi.l          #40, d3                                 \n\t"\r
433                                                 "       bne                     reg_test_2_error                \n\t"\r
434                                                 "       cmpi.l          #50, d4                                 \n\t"\r
435                                                 "       bne                     reg_test_2_error                \n\t"\r
436                                                 "       cmpi.l          #60, d5                                 \n\t"\r
437                                                 "       bne                     reg_test_2_error                \n\t"\r
438                                                 "       cmpi.l          #70, d6                                 \n\t"\r
439                                                 "       bne                     reg_test_2_error                \n\t"\r
440                                                 "       cmpi.l          #80, d7                                 \n\t"\r
441                                                 "       bne                     reg_test_2_error                \n\t"\r
442                                                 "       move            a0, d0                                  \n\t"\r
443                                                 "       cmpi.l          #90, d0                                 \n\t"\r
444                                                 "       bne                     reg_test_2_error                \n\t"\r
445                                                 "       move            a1, d0                                  \n\t"\r
446                                                 "       cmpi.l          #100, d0                                \n\t"\r
447                                                 "       bne                     reg_test_2_error                \n\t"\r
448                                                 "       move            a2, d0                                  \n\t"\r
449                                                 "       cmpi.l          #110, d0                                \n\t"\r
450                                                 "       bne                     reg_test_2_error                \n\t"\r
451                                                 "       move            a3, d0                                  \n\t"\r
452                                                 "       cmpi.l          #120, d0                                \n\t"\r
453                                                 "       bne                     reg_test_2_error                \n\t"\r
454                                                 "       move            a4, d0                                  \n\t"\r
455                                                 "       cmpi.l          #130, d0                                \n\t"\r
456                                                 "       bne                     reg_test_2_error                \n\t"\r
457                                                 "       move            a5, d0                                  \n\t"\r
458                                                 "       cmpi.l          #140, d0                                \n\t"\r
459                                                 "       bne                     reg_test_2_error                \n\t"\r
460                                                 "       move            a6, d0                                  \n\t"\r
461                                                 "       cmpi.l          #150, d0                                \n\t"\r
462                                                 "       bne                     reg_test_2_error                \n\t"\r
463                                                 "       move            ulRegTest1Counter, d0   \n\t"\r
464                                                 "       addq            #1, d0                                  \n\t"\r
465                                                 "       move            d0, ulRegTest2Counter   \n\t"\r
466                                                 "       bra                     reg_test_2_start                \n\t"\r
467                                                 "reg_test_2_error:                                              \n\t"\r
468                                                 "       bra                     reg_test_2_error                \n\t"\r
469                                         );\r
470 }\r
471 /*-----------------------------------------------------------*/\r
472 \r
473 \r
474 \r