]> git.sur5r.net Git - freertos/blob - Demo/ColdFire_MCF52259_CodeWarrior/main.c
Add Cortus port to produce V6.0.5.
[freertos] / Demo / ColdFire_MCF52259_CodeWarrior / main.c
1 /*\r
2     FreeRTOS V6.0.5 - Copyright (C) 2010 Real Time Engineers Ltd.\r
3 \r
4     ***************************************************************************\r
5     *                                                                         *\r
6     * If you are:                                                             *\r
7     *                                                                         *\r
8     *    + New to FreeRTOS,                                                   *\r
9     *    + Wanting to learn FreeRTOS or multitasking in general quickly       *\r
10     *    + Looking for basic training,                                        *\r
11     *    + Wanting to improve your FreeRTOS skills and productivity           *\r
12     *                                                                         *\r
13     * then take a look at the FreeRTOS eBook                                  *\r
14     *                                                                         *\r
15     *        "Using the FreeRTOS Real Time Kernel - a Practical Guide"        *\r
16     *                  http://www.FreeRTOS.org/Documentation                  *\r
17     *                                                                         *\r
18     * A pdf reference manual is also available.  Both are usually delivered   *\r
19     * to your inbox within 20 minutes to two hours when purchased between 8am *\r
20     * and 8pm GMT (although please allow up to 24 hours in case of            *\r
21     * exceptional circumstances).  Thank you for your support!                *\r
22     *                                                                         *\r
23     ***************************************************************************\r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \r
27     FreeRTOS is free software; you can redistribute it and/or modify it under\r
28     the terms of the GNU General Public License (version 2) as published by the\r
29     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
30     ***NOTE*** The exception to the GPL is included to allow you to distribute\r
31     a combined work that includes FreeRTOS without being obliged to provide the\r
32     source code for proprietary components outside of the FreeRTOS kernel.\r
33     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT\r
34     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
35     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
36     more details. You should have received a copy of the GNU General Public \r
37     License and the FreeRTOS license exception along with FreeRTOS; if not it \r
38     can be viewed here: http://www.freertos.org/a00114.html and also obtained \r
39     by writing to Richard Barry, contact details for whom are available on the\r
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43 \r
44     http://www.FreeRTOS.org - Documentation, latest information, license and\r
45     contact details.\r
46 \r
47     http://www.SafeRTOS.com - A version that is certified for use in safety\r
48     critical systems.\r
49 \r
50     http://www.OpenRTOS.com - Commercial support, development, porting,\r
51     licensing and training services.\r
52 */\r
53 \r
54 \r
55 /*\r
56  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
57  * documentation provides more details of the standard demo application tasks.\r
58  * In addition to the standard demo tasks, the following tasks and tests are\r
59  * defined and/or created within this file:\r
60  *\r
61  * "Web server" - Very basic demonstration of the lwIP stack.  The WEB server\r
62  * simply generates a page that shows the current state of all the tasks within\r
63  * the system, including the high water mark of each task stack. The high water\r
64  * mark is displayed as the amount of stack that has never been used, so the\r
65  * closer the value is to zero the closer the task has come to overflowing its\r
66  * stack.  The IP address and net mask are set within FreeRTOSConfig.h.\r
67  *\r
68  * "Check" task -  This only executes every five seconds but has a high priority\r
69  * to ensure it gets processor time.  Its main function is to check that all the\r
70  * standard demo tasks are still operational.  While no errors have been\r
71  * discovered the check task will toggle an LED every 5 seconds - the toggle\r
72  * rate increasing to 500ms being a visual indication that at least one task has\r
73  * reported unexpected behaviour.\r
74  *\r
75  * "Reg test" tasks - These fill the registers with known values, then check\r
76  * that each register still contains its expected value.  Each task uses\r
77  * different values.  The tasks run with very low priority so get preempted very\r
78  * frequently.  A register containing an unexpected value is indicative of an\r
79  * error in the context switching mechanism.\r
80  *\r
81  */\r
82 \r
83 /* Standard includes. */\r
84 #include <stdio.h>\r
85 \r
86 /* Scheduler includes. */\r
87 #include "FreeRTOS.h"\r
88 #include "task.h"\r
89 #include "queue.h"\r
90 #include "semphr.h"\r
91 \r
92 /* Demo app includes. */\r
93 #include "BlockQ.h"\r
94 #include "death.h"\r
95 #include "flash.h"\r
96 #include "partest.h"\r
97 #include "semtest.h"\r
98 #include "PollQ.h"\r
99 #include "GenQTest.h"\r
100 #include "QPeek.h"\r
101 #include "recmutex.h"\r
102 \r
103 /*-----------------------------------------------------------*/\r
104 \r
105 /* The time between cycles of the 'check' functionality - as described at the\r
106 top of this file. */\r
107 #define mainNO_ERROR_PERIOD                                     ( ( portTickType ) 5000 / portTICK_RATE_MS )\r
108 \r
109 /* The rate at which the LED controlled by the 'check' task will flash should an\r
110 error have been detected. */\r
111 #define mainERROR_PERIOD                                        ( ( portTickType ) 500 / portTICK_RATE_MS )\r
112 \r
113 /* The LED controlled by the 'check' task. */\r
114 #define mainCHECK_LED                                           ( 3 )\r
115 \r
116 /* ComTest constants - there is no free LED for the comtest tasks. */\r
117 #define mainCOM_TEST_BAUD_RATE                          ( ( unsigned portLONG ) 19200 )\r
118 #define mainCOM_TEST_LED                                        ( 5 )\r
119 \r
120 /* Task priorities. */\r
121 #define mainCOM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 2 )\r
122 #define mainQUEUE_POLL_PRIORITY                         ( tskIDLE_PRIORITY + 2 )\r
123 #define mainCHECK_TASK_PRIORITY                         ( tskIDLE_PRIORITY + 3 )\r
124 #define mainSEM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
125 #define mainBLOCK_Q_PRIORITY                            ( tskIDLE_PRIORITY + 2 )\r
126 #define mainCREATOR_TASK_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
127 #define mainINTEGER_TASK_PRIORITY           ( tskIDLE_PRIORITY )\r
128 #define mainGEN_QUEUE_TASK_PRIORITY                     ( tskIDLE_PRIORITY )\r
129 #define mainWEB_TASK_PRIORITY                   ( tskIDLE_PRIORITY + 2 )\r
130 \r
131 /*\r
132  * Configure the hardware for the demo.\r
133  */\r
134 static void prvSetupHardware( void );\r
135 \r
136 /*\r
137  * Implements the 'check' task functionality as described at the top of this\r
138  * file.\r
139  */\r
140 static void prvCheckTask( void *pvParameters );\r
141 \r
142 /*\r
143  * Implement the 'Reg test' functionality as described at the top of this file.\r
144  */\r
145 static void vRegTest1Task( void *pvParameters );\r
146 static void vRegTest2Task( void *pvParameters );\r
147 \r
148 /*-----------------------------------------------------------*/\r
149 \r
150 /* Counters used to detect errors within the reg test tasks. */\r
151 static volatile unsigned portLONG ulRegTest1Counter = 0x11111111, ulRegTest2Counter = 0x22222222;\r
152 \r
153 /*-----------------------------------------------------------*/\r
154 \r
155 int main( void )\r
156 {\r
157 extern void vBasicWEBServer( void *pv );\r
158 \r
159         /* Setup the hardware ready for this demo. */\r
160         prvSetupHardware();\r
161         ( void )sys_thread_new("HTTPD", vBasicWEBServer, NULL, 320, mainWEB_TASK_PRIORITY );\r
162 \r
163         /* Start the standard demo tasks. */\r
164         vStartLEDFlashTasks( tskIDLE_PRIORITY );\r
165         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
166         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
167         vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
168         vStartQueuePeekTasks();\r
169         vStartRecursiveMutexTasks();\r
170         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
171 \r
172         /* Start the reg test tasks - defined in this file. */\r
173         xTaskCreate( vRegTest1Task, ( signed portCHAR * ) "Reg1", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest1Counter, tskIDLE_PRIORITY, NULL );\r
174         xTaskCreate( vRegTest2Task, ( signed portCHAR * ) "Reg2", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest2Counter, tskIDLE_PRIORITY, NULL );\r
175 \r
176         /* Create the check task. */\r
177         xTaskCreate( prvCheckTask, ( signed portCHAR * ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
178 \r
179         /* The suicide tasks must be created last as they need to know how many\r
180         tasks were running prior to their creation in order to ascertain whether\r
181         or not the correct/expected number of tasks are running at any given time. */\r
182     vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );\r
183 \r
184         /* Start the scheduler. */\r
185         vTaskStartScheduler();\r
186 \r
187     /* Will only get here if there was insufficient memory to create the idle\r
188     task. */\r
189         for( ;; )\r
190         {\r
191         }\r
192 }\r
193 /*-----------------------------------------------------------*/\r
194 \r
195 static void prvCheckTask( void *pvParameters )\r
196 {\r
197 unsigned ulTicksToWait = mainNO_ERROR_PERIOD, ulError = 0, ulLastRegTest1Count = 0, ulLastRegTest2Count = 0;\r
198 portTickType xLastExecutionTime;\r
199 \r
200         ( void ) pvParameters;\r
201 \r
202         /* Initialise the variable used to control our iteration rate prior to\r
203         its first use. */\r
204         xLastExecutionTime = xTaskGetTickCount();\r
205 \r
206         for( ;; )\r
207         {\r
208                 /* Wait until it is time to run the tests again. */\r
209                 vTaskDelayUntil( &xLastExecutionTime, ulTicksToWait );\r
210 \r
211                 /* Has an error been found in any task? */\r
212                 if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
213                 {\r
214                         ulError |= 0x01UL;\r
215                 }\r
216 \r
217                 if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
218                 {\r
219                         ulError |= 0x02UL;\r
220                 }\r
221 \r
222                 if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
223                 {\r
224                         ulError |= 0x04UL;\r
225                 }\r
226 \r
227                 if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
228             {\r
229                 ulError |= 0x20UL;\r
230             }\r
231 \r
232                 if( xArePollingQueuesStillRunning() != pdTRUE )\r
233             {\r
234                 ulError |= 0x40UL;\r
235             }\r
236 \r
237                 if( xIsCreateTaskStillRunning() != pdTRUE )\r
238             {\r
239                 ulError |= 0x80UL;\r
240             }\r
241 \r
242                 if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
243             {\r
244                 ulError |= 0x200UL;\r
245             }\r
246 \r
247                 if( ulLastRegTest1Count == ulRegTest1Counter )\r
248                 {\r
249                         ulError |= 0x1000UL;\r
250                 }\r
251 \r
252                 if( ulLastRegTest2Count == ulRegTest2Counter )\r
253                 {\r
254                         ulError |= 0x1000UL;\r
255                 }\r
256 \r
257                 ulLastRegTest1Count = ulRegTest1Counter;\r
258                 ulLastRegTest2Count = ulRegTest2Counter;\r
259 \r
260                 /* If an error has been found then increase our cycle rate, and in so\r
261                 going increase the rate at which the check task LED toggles. */\r
262                 if( ulError != 0 )\r
263                 {\r
264                 ulTicksToWait = mainERROR_PERIOD;\r
265                 }\r
266 \r
267                 /* Toggle the LED each itteration. */\r
268                 vParTestToggleLED( mainCHECK_LED );\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 static void vRegTest1Task( void *pvParameters )\r
299 {\r
300         /* Sanity check - did we receive the parameter expected? */\r
301         if( pvParameters != &ulRegTest1Counter )\r
302         {\r
303                 /* Change here so the check task can detect that an error occurred. */\r
304                 for( ;; )\r
305                 {\r
306                 }\r
307         }\r
308 \r
309         /* Set all the registers to known values, then check that each retains its\r
310         expected value - as described at the top of this file.  If an error is\r
311         found then the loop counter will no longer be incremented allowing the check\r
312         task to recognise the error. */\r
313         asm volatile    (       "reg_test_1_start:                                              \n\t"\r
314                                                 "       moveq           #1, d0                                  \n\t"\r
315                                                 "       moveq           #2, d1                                  \n\t"\r
316                                                 "       moveq           #3, d2                                  \n\t"\r
317                                                 "       moveq           #4, d3                                  \n\t"\r
318                                                 "       moveq           #5, d4                                  \n\t"\r
319                                                 "       moveq           #6, d5                                  \n\t"\r
320                                                 "       moveq           #7, d6                                  \n\t"\r
321                                                 "       moveq           #8, d7                                  \n\t"\r
322                                                 "       move            #9, a0                                  \n\t"\r
323                                                 "       move            #10, a1                                 \n\t"\r
324                                                 "       move            #11, a2                                 \n\t"\r
325                                                 "       move            #12, a3                                 \n\t"\r
326                                                 "       move            #13, a4                                 \n\t"\r
327                                                 "       move            #14, a5                                 \n\t"\r
328                                                 "       move            #15, a6                                 \n\t"\r
329                                                 "                                                                               \n\t"\r
330                                                 "       cmpi.l          #1, d0                                  \n\t"\r
331                                                 "       bne                     reg_test_1_error                \n\t"\r
332                                                 "       cmpi.l          #2, d1                                  \n\t"\r
333                                                 "       bne                     reg_test_1_error                \n\t"\r
334                                                 "       cmpi.l          #3, d2                                  \n\t"\r
335                                                 "       bne                     reg_test_1_error                \n\t"\r
336                                                 "       cmpi.l          #4, d3                                  \n\t"\r
337                                                 "       bne                     reg_test_1_error                \n\t"\r
338                                                 "       cmpi.l          #5, d4                                  \n\t"\r
339                                                 "       bne                     reg_test_1_error                \n\t"\r
340                                                 "       cmpi.l          #6, d5                                  \n\t"\r
341                                                 "       bne                     reg_test_1_error                \n\t"\r
342                                                 "       cmpi.l          #7, d6                                  \n\t"\r
343                                                 "       bne                     reg_test_1_error                \n\t"\r
344                                                 "       cmpi.l          #8, d7                                  \n\t"\r
345                                                 "       bne                     reg_test_1_error                \n\t"\r
346                                                 "       move            a0, d0                                  \n\t"\r
347                                                 "       cmpi.l          #9, d0                                  \n\t"\r
348                                                 "       bne                     reg_test_1_error                \n\t"\r
349                                                 "       move            a1, d0                                  \n\t"\r
350                                                 "       cmpi.l          #10, d0                                 \n\t"\r
351                                                 "       bne                     reg_test_1_error                \n\t"\r
352                                                 "       move            a2, d0                                  \n\t"\r
353                                                 "       cmpi.l          #11, d0                                 \n\t"\r
354                                                 "       bne                     reg_test_1_error                \n\t"\r
355                                                 "       move            a3, d0                                  \n\t"\r
356                                                 "       cmpi.l          #12, d0                                 \n\t"\r
357                                                 "       bne                     reg_test_1_error                \n\t"\r
358                                                 "       move            a4, d0                                  \n\t"\r
359                                                 "       cmpi.l          #13, d0                                 \n\t"\r
360                                                 "       bne                     reg_test_1_error                \n\t"\r
361                                                 "       move            a5, d0                                  \n\t"\r
362                                                 "       cmpi.l          #14, d0                                 \n\t"\r
363                                                 "       bne                     reg_test_1_error                \n\t"\r
364                                                 "       move            a6, d0                                  \n\t"\r
365                                                 "       cmpi.l          #15, d0                                 \n\t"\r
366                                                 "       bne                     reg_test_1_error                \n\t"\r
367                                                 "       move            ulRegTest1Counter, d0   \n\t"\r
368                                                 "       addq            #1, d0                                  \n\t"\r
369                                                 "       move            d0, ulRegTest1Counter   \n\t"\r
370                                                 "       bra                     reg_test_1_start                \n\t"\r
371                                                 "reg_test_1_error:                                              \n\t"\r
372                                                 "       bra                     reg_test_1_error                \n\t"\r
373                                         );\r
374 }\r
375 /*-----------------------------------------------------------*/\r
376 \r
377 static void vRegTest2Task( void *pvParameters )\r
378 {\r
379         /* Sanity check - did we receive the parameter expected? */\r
380         if( pvParameters != &ulRegTest2Counter )\r
381         {\r
382                 /* Change here so the check task can detect that an error occurred. */\r
383                 for( ;; )\r
384                 {\r
385                 }\r
386         }\r
387 \r
388         /* Set all the registers to known values, then check that each retains its\r
389         expected value - as described at the top of this file.  If an error is\r
390         found then the loop counter will no longer be incremented allowing the check\r
391         task to recognise the error. */\r
392         asm volatile    (       "reg_test_2_start:                                              \n\t"\r
393                                                 "       moveq           #10, d0                                 \n\t"\r
394                                                 "       moveq           #20, d1                                 \n\t"\r
395                                                 "       moveq           #30, d2                                 \n\t"\r
396                                                 "       moveq           #40, d3                                 \n\t"\r
397                                                 "       moveq           #50, d4                                 \n\t"\r
398                                                 "       moveq           #60, d5                                 \n\t"\r
399                                                 "       moveq           #70, d6                                 \n\t"\r
400                                                 "       moveq           #80, d7                                 \n\t"\r
401                                                 "       move            #90, a0                                 \n\t"\r
402                                                 "       move            #100, a1                                \n\t"\r
403                                                 "       move            #110, a2                                \n\t"\r
404                                                 "       move            #120, a3                                \n\t"\r
405                                                 "       move            #130, a4                                \n\t"\r
406                                                 "       move            #140, a5                                \n\t"\r
407                                                 "       move            #150, a6                                \n\t"\r
408                                                 "                                                                               \n\t"\r
409                                                 "       cmpi.l          #10, d0                                 \n\t"\r
410                                                 "       bne                     reg_test_2_error                \n\t"\r
411                                                 "       cmpi.l          #20, d1                                 \n\t"\r
412                                                 "       bne                     reg_test_2_error                \n\t"\r
413                                                 "       cmpi.l          #30, d2                                 \n\t"\r
414                                                 "       bne                     reg_test_2_error                \n\t"\r
415                                                 "       cmpi.l          #40, d3                                 \n\t"\r
416                                                 "       bne                     reg_test_2_error                \n\t"\r
417                                                 "       cmpi.l          #50, d4                                 \n\t"\r
418                                                 "       bne                     reg_test_2_error                \n\t"\r
419                                                 "       cmpi.l          #60, d5                                 \n\t"\r
420                                                 "       bne                     reg_test_2_error                \n\t"\r
421                                                 "       cmpi.l          #70, d6                                 \n\t"\r
422                                                 "       bne                     reg_test_2_error                \n\t"\r
423                                                 "       cmpi.l          #80, d7                                 \n\t"\r
424                                                 "       bne                     reg_test_2_error                \n\t"\r
425                                                 "       move            a0, d0                                  \n\t"\r
426                                                 "       cmpi.l          #90, d0                                 \n\t"\r
427                                                 "       bne                     reg_test_2_error                \n\t"\r
428                                                 "       move            a1, d0                                  \n\t"\r
429                                                 "       cmpi.l          #100, d0                                \n\t"\r
430                                                 "       bne                     reg_test_2_error                \n\t"\r
431                                                 "       move            a2, d0                                  \n\t"\r
432                                                 "       cmpi.l          #110, d0                                \n\t"\r
433                                                 "       bne                     reg_test_2_error                \n\t"\r
434                                                 "       move            a3, d0                                  \n\t"\r
435                                                 "       cmpi.l          #120, d0                                \n\t"\r
436                                                 "       bne                     reg_test_2_error                \n\t"\r
437                                                 "       move            a4, d0                                  \n\t"\r
438                                                 "       cmpi.l          #130, d0                                \n\t"\r
439                                                 "       bne                     reg_test_2_error                \n\t"\r
440                                                 "       move            a5, d0                                  \n\t"\r
441                                                 "       cmpi.l          #140, d0                                \n\t"\r
442                                                 "       bne                     reg_test_2_error                \n\t"\r
443                                                 "       move            a6, d0                                  \n\t"\r
444                                                 "       cmpi.l          #150, d0                                \n\t"\r
445                                                 "       bne                     reg_test_2_error                \n\t"\r
446                                                 "       move            ulRegTest1Counter, d0   \n\t"\r
447                                                 "       addq            #1, d0                                  \n\t"\r
448                                                 "       move            d0, ulRegTest2Counter   \n\t"\r
449                                                 "       bra                     reg_test_2_start                \n\t"\r
450                                                 "reg_test_2_error:                                              \n\t"\r
451                                                 "       bra                     reg_test_2_error                \n\t"\r
452                                         );\r
453 }\r
454 /*-----------------------------------------------------------*/\r
455 \r
456 \r
457 \r