]> git.sur5r.net Git - freertos/blob - Demo/ColdFire_MCF5282_Eclipse/RTOSDemo/main.c
63395c3a2c5f470996cefb408e92440d5bf17bdf
[freertos] / Demo / ColdFire_MCF5282_Eclipse / RTOSDemo / main.c
1 /*\r
2         FreeRTOS.org V5.2.0 - Copyright (C) 2003-2009 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify it \r
7         under the terms of the GNU General Public License (version 2) as published\r
8         by the Free Software Foundation and modified by the FreeRTOS exception.\r
9 \r
10         FreeRTOS.org is distributed in the hope that it will be useful, but WITHOUT\r
11         ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or \r
12         FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for \r
13         more details.\r
14 \r
15         You should have received a copy of the GNU General Public License along \r
16         with FreeRTOS.org; if not, write to the Free Software Foundation, Inc., 59 \r
17         Temple Place, Suite 330, Boston, MA  02111-1307  USA.\r
18 \r
19         A special exception to the GPL is included to allow you to distribute a \r
20         combined work that includes FreeRTOS.org without being obliged to provide\r
21         the source code for any proprietary components.  See the licensing section\r
22         of http://www.FreeRTOS.org for full details.\r
23 \r
24 \r
25         ***************************************************************************\r
26         *                                                                         *\r
27         * Get the FreeRTOS eBook!  See http://www.FreeRTOS.org/Documentation      *\r
28         *                                                                         *\r
29         * This is a concise, step by step, 'hands on' guide that describes both   *\r
30         * general multitasking concepts and FreeRTOS specifics. It presents and   *\r
31         * explains numerous examples that are written using the FreeRTOS API.     *\r
32         * Full source code for all the examples is provided in an accompanying    *\r
33         * .zip file.                                                              *\r
34         *                                                                         *\r
35         ***************************************************************************\r
36 \r
37         1 tab == 4 spaces!\r
38 \r
39         Please ensure to read the configuration and relevant port sections of the\r
40         online documentation.\r
41 \r
42         http://www.FreeRTOS.org - Documentation, latest information, license and\r
43         contact details.\r
44 \r
45         http://www.SafeRTOS.com - A version that is certified for use in safety\r
46         critical systems.\r
47 \r
48         http://www.OpenRTOS.com - Commercial support, development, porting,\r
49         licensing and training services.\r
50 */\r
51 \r
52 \r
53 /*\r
54  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
55  * documentation provides more details of the standard demo application tasks.\r
56  * In addition to the standard demo tasks, the following tasks and tests are\r
57  * defined and/or created within this file:\r
58  *\r
59  * "Check" task -  This only executes every five seconds but has a high priority\r
60  * to ensure it gets processor time.  Its main function is to check that all the\r
61  * standard demo tasks are still operational.  While no errors have been\r
62  * discovered the check task will toggle an LED every 5 seconds - the toggle\r
63  * rate increasing to 500ms being a visual indication that at least one task has\r
64  * reported unexpected behaviour.\r
65  *\r
66  * "Reg test" tasks - These fill the registers with known values, then check\r
67  * that each register still contains its expected value.  Each task uses\r
68  * different values.  The tasks run with very low priority so get preempted very\r
69  * frequently.  A register containing an unexpected value is indicative of an\r
70  * error in the context switching mechanism.\r
71  *\r
72  */\r
73 \r
74 /* Standard includes. */\r
75 #include <stdio.h>\r
76 \r
77 /* Scheduler includes. */\r
78 #include "FreeRTOS.h"\r
79 #include "task.h"\r
80 #include "queue.h"\r
81 #include "semphr.h"\r
82 \r
83 /* Demo app includes. */\r
84 #include "BlockQ.h"\r
85 #include "death.h"\r
86 #include "integer.h"\r
87 #include "flash.h"\r
88 #include "partest.h"\r
89 #include "semtest.h"\r
90 #include "PollQ.h"\r
91 #include "GenQTest.h"\r
92 #include "QPeek.h"\r
93 #include "recmutex.h"\r
94 #include "IntQueue.h"\r
95 #include "comtest2.h"\r
96 \r
97 /*-----------------------------------------------------------*/\r
98 \r
99 /* The time between cycles of the 'check' functionality - as described at the\r
100 top of this file. */\r
101 #define mainNO_ERROR_PERIOD                                     ( ( portTickType ) 5000 / portTICK_RATE_MS )\r
102 \r
103 /* The rate at which the LED controlled by the 'check' task will flash should an\r
104 error have been detected. */\r
105 #define mainERROR_PERIOD                                        ( ( portTickType ) 500 / portTICK_RATE_MS )\r
106 \r
107 /* The LED controlled by the 'check' task. */\r
108 #define mainCHECK_LED                                           ( 3 )\r
109 \r
110 /* ComTest constants - there is no free LED for the comtest tasks. */\r
111 #define mainCOM_TEST_BAUD_RATE                          ( ( unsigned portLONG ) 19200 )\r
112 #define mainCOM_TEST_LED                                        ( 5 )\r
113 \r
114 /* Task priorities. */\r
115 #define mainCOM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 2 )\r
116 #define mainQUEUE_POLL_PRIORITY                         ( tskIDLE_PRIORITY + 2 )\r
117 #define mainCHECK_TASK_PRIORITY                         ( tskIDLE_PRIORITY + 3 )\r
118 #define mainSEM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
119 #define mainBLOCK_Q_PRIORITY                            ( tskIDLE_PRIORITY + 2 )\r
120 #define mainCREATOR_TASK_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
121 #define mainINTEGER_TASK_PRIORITY           ( tskIDLE_PRIORITY )\r
122 #define mainGEN_QUEUE_TASK_PRIORITY                     ( tskIDLE_PRIORITY )\r
123 \r
124 /*\r
125  * Configure the hardware for the demo.\r
126  */\r
127 static void prvSetupHardware( void );\r
128 \r
129 /*\r
130  * Implements the 'check' task functionality as described at the top of this\r
131  * file.\r
132  */\r
133 static void prvCheckTask( void *pvParameters );\r
134 \r
135 /*\r
136  * Implement the 'Reg test' functionality as described at the top of this file.\r
137  */\r
138 static void vRegTest1Task( void *pvParameters );\r
139 static void vRegTest2Task( void *pvParameters );\r
140 \r
141 /*-----------------------------------------------------------*/\r
142 \r
143 /* Counters used to detect errors within the reg test tasks. */\r
144 static volatile unsigned portLONG ulRegTest1Counter = 0x11111111, ulRegTest2Counter = 0x22222222;\r
145 \r
146 /*-----------------------------------------------------------*/\r
147 \r
148 int main( void )\r
149 {\r
150         /* Setup the hardware ready for this demo. */\r
151         prvSetupHardware();\r
152 \r
153         /* Start the standard demo tasks. */\r
154         vStartLEDFlashTasks( tskIDLE_PRIORITY );\r
155         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
156         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
157         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
158         vStartIntegerMathTasks( mainINTEGER_TASK_PRIORITY );\r
159         vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
160         vStartQueuePeekTasks();\r
161         vStartRecursiveMutexTasks();\r
162         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
163         vStartInterruptQueueTasks();\r
164 \r
165         /* Start the reg test tasks - defined in this file. */\r
166         xTaskCreate( vRegTest1Task, ( signed portCHAR * ) "Reg1", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest1Counter, tskIDLE_PRIORITY, NULL );\r
167         xTaskCreate( vRegTest2Task, ( signed portCHAR * ) "Reg2", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest2Counter, tskIDLE_PRIORITY, NULL );\r
168 \r
169         /* Create the check task. */\r
170         xTaskCreate( prvCheckTask, ( signed portCHAR * ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
171 \r
172         /* The suicide tasks must be created last as they need to know how many\r
173         tasks were running prior to their creation in order to ascertain whether\r
174         or not the correct/expected number of tasks are running at any given time. */\r
175     vCreateSuicidalTasks( mainCREATOR_TASK_PRIORITY );\r
176 \r
177         /* Start the scheduler. */\r
178         vTaskStartScheduler();\r
179 \r
180     /* Will only get here if there was insufficient memory to create the idle\r
181     task. */\r
182         for( ;; );\r
183 }\r
184 /*-----------------------------------------------------------*/\r
185 \r
186 static void prvCheckTask( void *pvParameters )\r
187 {\r
188 unsigned ulTicksToWait = mainNO_ERROR_PERIOD, ulError = 0, ulLastRegTest1Count = 0, ulLastRegTest2Count = 0;\r
189 portTickType xLastExecutionTime;\r
190 \r
191         ( void ) pvParameters;\r
192 \r
193         /* Initialise the variable used to control our iteration rate prior to\r
194         its first use. */\r
195         xLastExecutionTime = xTaskGetTickCount();\r
196 \r
197         for( ;; )\r
198         {\r
199                 /* Wait until it is time to run the tests again. */\r
200                 vTaskDelayUntil( &xLastExecutionTime, ulTicksToWait );\r
201 \r
202                 /* Has an error been found in any task? */\r
203                 if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
204                 {\r
205                         ulError |= 0x01UL;\r
206                 }\r
207 \r
208                 if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
209                 {\r
210                         ulError |= 0x02UL;\r
211                 }\r
212 \r
213                 if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
214                 {\r
215                         ulError |= 0x04UL;\r
216                 }\r
217 \r
218                 if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
219             {\r
220                 ulError |= 0x20UL;\r
221             }\r
222 \r
223                 if( xArePollingQueuesStillRunning() != pdTRUE )\r
224             {\r
225                 ulError |= 0x40UL;\r
226             }\r
227 \r
228                 if( xIsCreateTaskStillRunning() != pdTRUE )\r
229             {\r
230                 ulError |= 0x80UL;\r
231             }\r
232 \r
233                 if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
234             {\r
235                 ulError |= 0x100UL;\r
236             }\r
237 \r
238                 if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
239             {\r
240                 ulError |= 0x200UL;\r
241             }\r
242 \r
243                 if( xAreComTestTasksStillRunning() != pdTRUE )\r
244                 {\r
245                 ulError |= 0x400UL;\r
246                 }\r
247 \r
248                 if( xAreIntQueueTasksStillRunning() != pdTRUE )\r
249             {\r
250                 ulError |= 0x800UL;\r
251             }\r
252 \r
253                 if( ulLastRegTest1Count == ulRegTest1Counter )\r
254                 {\r
255                         ulError |= 0x1000UL;\r
256                 }\r
257 \r
258                 if( ulLastRegTest2Count == ulRegTest2Counter )\r
259                 {\r
260                         ulError |= 0x1000UL;\r
261                 }\r
262 \r
263                 ulLastRegTest1Count = ulRegTest1Counter;\r
264                 ulLastRegTest2Count = ulRegTest2Counter;\r
265 \r
266                 /* If an error has been found then increase our cycle rate, and in so\r
267                 going increase the rate at which the check task LED toggles. */\r
268                 if( ulError != 0 )\r
269                 {\r
270                 ulTicksToWait = mainERROR_PERIOD;\r
271                 }\r
272 \r
273                 /* Toggle the LED each itteration. */\r
274                 vParTestToggleLED( mainCHECK_LED );\r
275         }\r
276 }\r
277 /*-----------------------------------------------------------*/\r
278 \r
279 void prvSetupHardware( void )\r
280 {\r
281 extern void mcf5xxx_wr_cacr( unsigned portLONG );\r
282 \r
283         portDISABLE_INTERRUPTS();\r
284 \r
285         /* Enable the cache. */\r
286         mcf5xxx_wr_cacr( MCF5XXX_CACR_CENB | MCF5XXX_CACR_CINV | MCF5XXX_CACR_DISD | MCF5XXX_CACR_CEIB | MCF5XXX_CACR_CLNF_00 );\r
287         asm volatile( "NOP" ); /* As per errata. */\r
288 \r
289         /* Multiply 8Mhz reference crystal by 8 to achieve system clock of 64Mhz. */\r
290         MCF_CLOCK_SYNCR = MCF_CLOCK_SYNCR_MFD( 2 );\r
291 \r
292         /* Wait for PLL to lock. */\r
293         while( !( MCF_CLOCK_SYNSR & MCF_CLOCK_SYNSR_LOCK ) )\r
294         {\r
295                 __asm__ volatile ( "NOP" );\r
296         }\r
297 \r
298         /* Setup the port used to toggle LEDs. */\r
299         vParTestInitialise();\r
300 }\r
301 /*-----------------------------------------------------------*/\r
302 \r
303 void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed portCHAR *pcTaskName )\r
304 {\r
305         /* This will get called if a stack overflow is detected during the context\r
306         switch.  Set configCHECK_FOR_STACK_OVERFLOWS to 2 to also check for stack\r
307         problems within nested interrupts, but only do this for debug purposes as\r
308         it will increase the context switch time. */\r
309 \r
310         ( void ) pxTask;\r
311         ( void ) pcTaskName;\r
312 \r
313         for( ;; );\r
314 }\r
315 /*-----------------------------------------------------------*/\r
316 \r
317 static void vRegTest1Task( void *pvParameters )\r
318 {\r
319         /* Sanity check - did we receive the parameter expected? */\r
320         if( pvParameters != &ulRegTest1Counter )\r
321         {\r
322                 /* Change here so the check task can detect that an error occurred. */\r
323                 for( ;; );\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                                                 "       movel           ulRegTest1Counter, %d0  \n\t"\r
385                                                 "       addql           #1, %d0                                 \n\t"\r
386                                                 "       movel           %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         /* Set all the registers to known values, then check that each retains its\r
404         expected value - as described at the top of this file.  If an error is\r
405         found then the loop counter will no longer be incremented allowing the check\r
406         task to recognise the error. */\r
407         asm volatile    (       "reg_test_2_start:                                              \n\t"\r
408                                                 "       moveq           #10, %d0                                \n\t"\r
409                                                 "       moveq           #20, %d1                                \n\t"\r
410                                                 "       moveq           #30, %d2                                \n\t"\r
411                                                 "       moveq           #40, %d3                                \n\t"\r
412                                                 "       moveq           #50, %d4                                \n\t"\r
413                                                 "       moveq           #60, %d5                                \n\t"\r
414                                                 "       moveq           #70, %d6                                \n\t"\r
415                                                 "       moveq           #80, %d7                                \n\t"\r
416                                                 "       move            #90, %a0                                \n\t"\r
417                                                 "       move            #100, %a1                               \n\t"\r
418                                                 "       move            #110, %a2                               \n\t"\r
419                                                 "       move            #120, %a3                               \n\t"\r
420                                                 "       move            #130, %a4                               \n\t"\r
421                                                 "       move            #140, %a5                               \n\t"\r
422                                                 "       move            #150, %a6                               \n\t"\r
423                                                 "                                                                               \n\t"\r
424                                                 "       cmpi.l          #10, %d0                                \n\t"\r
425                                                 "       bne                     reg_test_2_error                \n\t"\r
426                                                 "       cmpi.l          #20, %d1                                \n\t"\r
427                                                 "       bne                     reg_test_2_error                \n\t"\r
428                                                 "       cmpi.l          #30, %d2                                \n\t"\r
429                                                 "       bne                     reg_test_2_error                \n\t"\r
430                                                 "       cmpi.l          #40, %d3                                \n\t"\r
431                                                 "       bne                     reg_test_2_error                \n\t"\r
432                                                 "       cmpi.l          #50, %d4                                \n\t"\r
433                                                 "       bne                     reg_test_2_error                \n\t"\r
434                                                 "       cmpi.l          #60, %d5                                \n\t"\r
435                                                 "       bne                     reg_test_2_error                \n\t"\r
436                                                 "       cmpi.l          #70, %d6                                \n\t"\r
437                                                 "       bne                     reg_test_2_error                \n\t"\r
438                                                 "       cmpi.l          #80, %d7                                \n\t"\r
439                                                 "       bne                     reg_test_2_error                \n\t"\r
440                                                 "       move            %a0, %d0                                \n\t"\r
441                                                 "       cmpi.l          #90, %d0                                \n\t"\r
442                                                 "       bne                     reg_test_2_error                \n\t"\r
443                                                 "       move            %a1, %d0                                \n\t"\r
444                                                 "       cmpi.l          #100, %d0                               \n\t"\r
445                                                 "       bne                     reg_test_2_error                \n\t"\r
446                                                 "       move            %a2, %d0                                \n\t"\r
447                                                 "       cmpi.l          #110, %d0                               \n\t"\r
448                                                 "       bne                     reg_test_2_error                \n\t"\r
449                                                 "       move            %a3, %d0                                \n\t"\r
450                                                 "       cmpi.l          #120, %d0                               \n\t"\r
451                                                 "       bne                     reg_test_2_error                \n\t"\r
452                                                 "       move            %a4, %d0                                \n\t"\r
453                                                 "       cmpi.l          #130, %d0                               \n\t"\r
454                                                 "       bne                     reg_test_2_error                \n\t"\r
455                                                 "       move            %a5, %d0                                \n\t"\r
456                                                 "       cmpi.l          #140, %d0                               \n\t"\r
457                                                 "       bne                     reg_test_2_error                \n\t"\r
458                                                 "       move            %a6, %d0                                \n\t"\r
459                                                 "       cmpi.l          #150, %d0                               \n\t"\r
460                                                 "       bne                     reg_test_2_error                \n\t"\r
461                                                 "       movel           ulRegTest1Counter, %d0  \n\t"\r
462                                                 "       addql           #1, %d0                                 \n\t"\r
463                                                 "       movel           %d0, ulRegTest2Counter  \n\t"\r
464                                                 "       bra                     reg_test_2_start                \n\t"\r
465                                                 "reg_test_2_error:                                              \n\t"\r
466                                                 "       bra                     reg_test_2_error                \n\t"\r
467                                         );\r
468 }\r
469 /*-----------------------------------------------------------*/\r
470 \r