]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/ColdFire_MCF51CN128_CodeWarrior/Sources/main.c
d5e5247d79016b96ceb768a7940426a8f1643746
[freertos] / FreeRTOS / Demo / ColdFire_MCF51CN128_CodeWarrior / Sources / main.c
1 /*\r
2     FreeRTOS V7.5.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3 \r
4     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
5 \r
6     ***************************************************************************\r
7      *                                                                       *\r
8      *    FreeRTOS provides completely free yet professionally developed,    *\r
9      *    robust, strictly quality controlled, supported, and cross          *\r
10      *    platform software that has become a de facto standard.             *\r
11      *                                                                       *\r
12      *    Help yourself get started quickly and support the FreeRTOS         *\r
13      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
14      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
15      *                                                                       *\r
16      *    Thank you!                                                         *\r
17      *                                                                       *\r
18     ***************************************************************************\r
19 \r
20     This file is part of the FreeRTOS distribution.\r
21 \r
22     FreeRTOS is free software; you can redistribute it and/or modify it under\r
23     the terms of the GNU General Public License (version 2) as published by the\r
24     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
25 \r
26     >>! NOTE: The modification to the GPL is included to allow you to distribute\r
27     >>! a combined work that includes FreeRTOS without being obliged to provide\r
28     >>! the source code for proprietary components outside of the FreeRTOS\r
29     >>! kernel.\r
30 \r
31     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
32     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
33     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
34     link: http://www.freertos.org/a00114.html\r
35 \r
36     1 tab == 4 spaces!\r
37 \r
38     ***************************************************************************\r
39      *                                                                       *\r
40      *    Having a problem?  Start by reading the FAQ "My application does   *\r
41      *    not run, what could be wrong?"                                     *\r
42      *                                                                       *\r
43      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
44      *                                                                       *\r
45     ***************************************************************************\r
46 \r
47     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
48     license and Real Time Engineers Ltd. contact details.\r
49 \r
50     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
51     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
52     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
53 \r
54     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
55     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
56     licenses offer ticketed support, indemnification and middleware.\r
57 \r
58     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
59     engineered and independently SIL3 certified version for use in safety and\r
60     mission critical applications that require provable dependability.\r
61 \r
62     1 tab == 4 spaces!\r
63 */\r
64 \r
65 \r
66 /*\r
67  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
68  * documentation provides more details of the standard demo application tasks.\r
69  * In addition to the standard demo tasks, the following tasks and tests are\r
70  * defined and/or created within this file:\r
71  *\r
72  * "Web server" - Very basic demonstration of the uIP stack.  The WEB server\r
73  * simply generates a page that shows the current state of all the tasks within\r
74  * the system, including the high water mark of each task stack. The high water\r
75  * mark is displayed as the amount of stack that has never been used, so the\r
76  * closer the value is to zero the closer the task has come to overflowing its\r
77  * stack.  The IP address and net mask are set within FreeRTOSConfig.h.  Sub\r
78  * pages display some TCP/IP status information and permit LED3 to be turned on\r
79  * and off using a check box.\r
80  *\r
81  * Tick hook function that implements a "Check" function -  This is executed \r
82  * every 5 seconds from the tick hook function.  It checks to ensure that all \r
83  * the standard demo tasks are still operational and running without error.  \r
84  * The system status (pass/fail) is then displayed underneith the task table on \r
85  * the served WEB pages.  \r
86  *\r
87  * "Reg test" tasks - These fill the registers with known values, then check\r
88  * that each register still contains its expected value.  Each task uses\r
89  * different values.  The tasks run with very low priority so get preempted very\r
90  * frequently.  A register containing an unexpected value is indicative of an\r
91  * error in the context switching mechanism.\r
92  *\r
93  */\r
94 \r
95 /* Standard includes. */\r
96 #include <stdio.h>\r
97 \r
98 /* Scheduler includes. */\r
99 #include "FreeRTOS.h"\r
100 #include "task.h"\r
101 #include "queue.h"\r
102 #include "semphr.h"\r
103 \r
104 /* Demo app includes. */\r
105 #include "BlockQ.h"\r
106 #include "death.h"\r
107 #include "flash.h"\r
108 #include "partest.h"\r
109 #include "GenQTest.h"\r
110 #include "QPeek.h"\r
111 #include "recmutex.h"\r
112 \r
113 /*-----------------------------------------------------------*/\r
114 \r
115 /* ComTest constants - there is no free LED for the comtest tasks. */\r
116 #define mainCOM_TEST_BAUD_RATE                          ( ( unsigned long ) 19200 )\r
117 #define mainCOM_TEST_LED                                        ( 5 )\r
118 \r
119 /* Task priorities. */\r
120 #define mainQUEUE_POLL_PRIORITY                         ( tskIDLE_PRIORITY + 2 )\r
121 #define mainCHECK_TASK_PRIORITY                         ( tskIDLE_PRIORITY + 3 )\r
122 #define mainSEM_TEST_PRIORITY                           ( tskIDLE_PRIORITY + 1 )\r
123 #define mainBLOCK_Q_PRIORITY                            ( tskIDLE_PRIORITY + 2 )\r
124 #define mainCREATOR_TASK_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
125 #define mainINTEGER_TASK_PRIORITY           ( tskIDLE_PRIORITY )\r
126 #define mainGEN_QUEUE_TASK_PRIORITY                     ( tskIDLE_PRIORITY )\r
127 #define mainWEB_TASK_PRIORITY                   ( tskIDLE_PRIORITY + 2 )\r
128 \r
129 /* WEB server requires enough stack for the string handling functions. */\r
130 #define mainBASIC_WEB_STACK_SIZE            ( configMINIMAL_STACK_SIZE * 2 )\r
131 \r
132 /*\r
133  * Configure the hardware for the demo.\r
134  */\r
135 static void prvSetupHardware( void );\r
136 \r
137 /*\r
138  * Implements the 'check' function as described at the top of this file.\r
139  */\r
140 static void prvCheckFunction( void );\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  * The task that handles the uIP stack.  All TCP/IP processing is performed in\r
150  * this task.\r
151  */\r
152 extern void vuIP_Task( void *pvParameters );\r
153 \r
154 /*-----------------------------------------------------------*/\r
155 \r
156 /* Counters used to detect errors within the reg test tasks. */\r
157 static volatile unsigned long ulRegTest1Counter = 0x11111111, ulRegTest2Counter = 0x22222222;\r
158 \r
159 /* Flag that latches any errors detected in the system. */\r
160 unsigned long ulCheckErrors = 0;\r
161 \r
162 /*-----------------------------------------------------------*/\r
163 \r
164 int main( void )\r
165 {\r
166 extern void vBasicWEBServer( void *pv );\r
167 \r
168         /* Setup the hardware ready for this demo. */\r
169         prvSetupHardware();\r
170         \r
171         xTaskCreate( vuIP_Task, ( signed char * ) "uIP", mainBASIC_WEB_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY - 1, NULL );\r
172 \r
173         /* Start the standard demo tasks. */\r
174         vStartLEDFlashTasks( tskIDLE_PRIORITY );\r
175         vStartGenericQueueTasks( mainGEN_QUEUE_TASK_PRIORITY );\r
176         vStartQueuePeekTasks();\r
177         vStartRecursiveMutexTasks();\r
178         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
179 \r
180         /* Start the reg test tasks - defined in this file. */\r
181         xTaskCreate( vRegTest1Task, ( signed char * ) "Reg1", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest1Counter, tskIDLE_PRIORITY, NULL );\r
182         xTaskCreate( vRegTest2Task, ( signed char * ) "Reg2", configMINIMAL_STACK_SIZE, ( void * ) &ulRegTest2Counter, tskIDLE_PRIORITY, NULL );\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 void vApplicationTickHook( void )\r
196 {\r
197 static unsigned long ulExecutionCount = 0, ulLastRegTest1Count = 0, ulLastRegTest2Count = 0;\r
198 const unsigned long ulExecutionRate = 5000 / portTICK_RATE_MS;\r
199         \r
200     /* Increment the count of how many times the tick hook has been called. */\r
201     ulExecutionCount++;\r
202     \r
203     /* Is it time to perform the check again? */\r
204         if( ulExecutionCount >= ulExecutionRate )\r
205         {\r
206                 /* Reset the execution count so this function is called again in 5\r
207                 seconds time. */\r
208                 ulExecutionCount = 0;\r
209         \r
210                 /* Has an error been found in any task? */\r
211                 if( xAreGenericQueueTasksStillRunning() != pdTRUE )\r
212                 {\r
213                         ulCheckErrors |= 0x01UL;\r
214                 }\r
215 \r
216                 if( xAreQueuePeekTasksStillRunning() != pdTRUE )\r
217                 {\r
218                         ulCheckErrors |= 0x02UL;\r
219                 }\r
220 \r
221                 if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
222                 {\r
223                         ulCheckErrors |= 0x04UL;\r
224                 }\r
225 \r
226                 if( xAreRecursiveMutexTasksStillRunning() != pdTRUE )\r
227             {\r
228                 ulCheckErrors |= 0x200UL;\r
229             }\r
230 \r
231                 if( ulLastRegTest1Count == ulRegTest1Counter )\r
232                 {\r
233                         ulCheckErrors |= 0x1000UL;\r
234                 }\r
235 \r
236                 if( ulLastRegTest2Count == ulRegTest2Counter )\r
237                 {\r
238                         ulCheckErrors |= 0x1000UL;\r
239                 }\r
240 \r
241                 ulLastRegTest1Count = ulRegTest1Counter;\r
242                 ulLastRegTest2Count = ulRegTest2Counter;\r
243         }\r
244 }\r
245 /*-----------------------------------------------------------*/\r
246 \r
247 static void prvSetupHardware( void ) \r
248 {\r
249         /* Disable the watchdog, STOP and WAIT modes. */\r
250         SOPT1 = 0;\r
251 \r
252         /* --- Setup clock to use external 25MHz source. --- */\r
253         \r
254         /* Extal and xtal pin ON. */\r
255         PTDPF1_D4 = 0x03;\r
256         PTDPF1_D5 = 0x03;\r
257 \r
258         /* Switch from FEI to FBE (FLL bypassed external)\r
259         enable external clock source */\r
260         MCGC2 = MCGC2_ERCLKEN_MASK  /* Activate external reference clock */\r
261               | MCGC2_EREFS_MASK    /* Because crystal is being used */\r
262               | MCGC2_RANGE_MASK;   /* High range */\r
263                 \r
264         /* Select clock mode and clear IREFs. */\r
265         MCGC1 = (0x02 << 6 )        /* CLKS = 10 -> external reference clock. */\r
266               | (0x04 << 3 )        /* RDIV = 2^4 -> 25MHz/16 = 1.5625 MHz */\r
267               | MCGC1_IRCLKEN_MASK; /* IRCLK to RTC enabled */\r
268           \r
269         /* Wait for Reference and Clock status bits to update. */\r
270         while( MCGSC_IREFST | ( MCGSC_CLKST != 0x02 ) )\r
271         {\r
272                 /* Nothing to do here. */\r
273         }\r
274 \r
275         /* Switch from FBE to PBE (PLL bypassed internal) mode. */\r
276         MCGC3 =  0x08               /* Set PLL multi 50MHz. */\r
277               |  MCGC3_PLLS_MASK;   /* Select PLL. */\r
278 \r
279         /* Wait for PLL status and lock bits to update. */\r
280         while( !MCGSC_PLLST | !MCGSC_LOCK )\r
281         {\r
282                 /* Nothing to do here. */\r
283         }\r
284 \r
285 \r
286         /* Now in PBE Mode, finally switch from PBE to PEE (PLL enabled external \r
287         mode). */\r
288         MCGC1_CLKS  = 0b00; /* PLL clock to system (MCGOUT) */\r
289 \r
290         /* Wait for the clock status bits to update. */\r
291         while( MCGSC_CLKST != 0x03 )\r
292         {\r
293                 /* Nothing to do here. */\r
294         }\r
295 \r
296         /* Setup the IO for the LED outputs. */\r
297         vParTestInitialise();\r
298 }\r
299 /*-----------------------------------------------------------*/\r
300 \r
301 void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )\r
302 {\r
303         /* This will get called if a stack overflow is detected during the context\r
304         switch.  Set configCHECK_FOR_STACK_OVERFLOWS to 2 to also check for stack\r
305         problems within nested interrupts, but only do this for debug purposes as\r
306         it will increase the context switch time. */\r
307 \r
308         ( void ) pxTask;\r
309         ( void ) pcTaskName;\r
310 \r
311         for( ;; )\r
312         {\r
313         }\r
314 }\r
315 /*-----------------------------------------------------------*/\r
316 \r
317 static void vRegTest1Task( void *pvParameters )\r
318 {\r
319   /* Just to remove compiler warnings. */\r
320   ( void ) pvParameters;\r
321   \r
322         /* Set all the registers to known values, then check that each retains its\r
323         expected value - as described at the top of this file.  If an error is\r
324         found then the loop counter will no longer be incremented allowing the check\r
325         task to recognise the error. */\r
326         asm volatile    (       "reg_test_1_start:                                              \n\t"\r
327                                                 "       moveq           #1, d0                                  \n\t"\r
328                                                 "       moveq           #2, d1                                  \n\t"\r
329                                                 "       moveq           #3, d2                                  \n\t"\r
330                                                 "       moveq           #4, d3                                  \n\t"\r
331                                                 "       moveq           #5, d4                                  \n\t"\r
332                                                 "       moveq           #6, d5                                  \n\t"                                           \r
333                                                 "       moveq           #7, d6                                  \n\t"\r
334                                                 "       moveq           #8, d7                                  \n\t"\r
335                                                 "       move            #9, a0                                  \n\t"\r
336                                                 "       move            #10, a1                                 \n\t"\r
337                                                 "       move            #11, a2                                 \n\t"\r
338                                                 "       move            #12, a3                                 \n\t"\r
339                                                 "       move            #13, a4                                 \n\t"\r
340                                                 "       move            #15, a6                                 \n\t"\r
341                                                 "                                                                               \n\t"\r
342                                                 "       cmpi.l          #1, d0                                  \n\t"\r
343                                                 "       bne                     reg_test_1_error                \n\t"\r
344                                                 "       cmpi.l          #2, d1                                  \n\t"\r
345                                                 "       bne                     reg_test_1_error                \n\t"\r
346                                                 "       cmpi.l          #3, d2                                  \n\t"\r
347                                                 "       bne                     reg_test_1_error                \n\t"\r
348                                                 "       cmpi.l          #4, d3                                  \n\t"\r
349                                                 "       bne                     reg_test_1_error                \n\t"\r
350                                                 "       cmpi.l          #5, d4                                  \n\t"\r
351                                                 "       bne                     reg_test_1_error                \n\t"\r
352                                                 "       cmpi.l          #6, d5                                  \n\t"\r
353                                                 "       bne                     reg_test_1_error                \n\t"\r
354                                                 "       cmpi.l          #7, d6                                  \n\t"\r
355                                                 "       bne                     reg_test_1_error                \n\t"\r
356                                                 "       cmpi.l          #8, d7                                  \n\t"\r
357                                                 "       bne                     reg_test_1_error                \n\t"\r
358                                                 "       move            a0, d0                                  \n\t"\r
359                                                 "       cmpi.l          #9, d0                                  \n\t"\r
360                                                 "       bne                     reg_test_1_error                \n\t"\r
361                                                 "       move            a1, d0                                  \n\t"\r
362                                                 "       cmpi.l          #10, d0                                 \n\t"\r
363                                                 "       bne                     reg_test_1_error                \n\t"\r
364                                                 "       move            a2, d0                                  \n\t"\r
365                                                 "       cmpi.l          #11, d0                                 \n\t"\r
366                                                 "       bne                     reg_test_1_error                \n\t"\r
367                                                 "       move            a3, d0                                  \n\t"\r
368                                                 "       cmpi.l          #12, d0                                 \n\t"\r
369                                                 "       bne                     reg_test_1_error                \n\t"\r
370                                                 "       move            a4, d0                                  \n\t"\r
371                                                 "       cmpi.l          #13, d0                                 \n\t"\r
372                                                 "       bne                     reg_test_1_error                \n\t"\r
373                                                 "       move            a6, d0                                  \n\t"\r
374                                                 "       cmpi.l          #15, d0                                 \n\t"\r
375                                                 "       bne                     reg_test_1_error                \n\t"\r
376                                                 "       move            ulRegTest1Counter, d0   \n\t"\r
377                                                 "       addq            #1, d0                                  \n\t"\r
378                                                 "       move            d0, ulRegTest1Counter   \n\t"\r
379                                                 "       bra                     reg_test_1_start                \n\t"\r
380                                                 "reg_test_1_error:                                              \n\t"\r
381                                                 "       bra                     reg_test_1_error                \n\t"\r
382                                         );\r
383 }\r
384 /*-----------------------------------------------------------*/\r
385 \r
386 static void vRegTest2Task( void *pvParameters )\r
387 {\r
388   /* Just to remove compiler warnings. */\r
389   ( void ) pvParameters;\r
390 \r
391         /* Set all the registers to known values, then check that each retains its\r
392         expected value - as described at the top of this file.  If an error is\r
393         found then the loop counter will no longer be incremented allowing the check\r
394         task to recognise the error. */\r
395         asm volatile    (       "reg_test_2_start:                                              \n\t"\r
396                                                 "       moveq           #10, d0                                 \n\t"\r
397                                                 "       moveq           #20, d1                                 \n\t"\r
398                                                 "       moveq           #30, d2                                 \n\t"\r
399                                                 "       moveq           #40, d3                                 \n\t"\r
400                                                 "       moveq           #50, d4                                 \n\t"\r
401                                                 "       moveq           #60, d5                                 \n\t"\r
402                                                 "       moveq           #70, d6                                 \n\t"\r
403                                                 "       moveq           #80, d7                                 \n\t"\r
404                                                 "       move            #90, a0                                 \n\t"\r
405                                                 "       move            #100, a1                                \n\t"\r
406                                                 "       move            #110, a2                                \n\t"\r
407                                                 "       move            #120, a3                                \n\t"\r
408                                                 "       move            #130, a4                                \n\t"\r
409                                                 "       move            #150, a6                                \n\t"\r
410                                                 "                                                                               \n\t"\r
411                                                 "       cmpi.l          #10, d0                                 \n\t"\r
412                                                 "       bne                     reg_test_2_error                \n\t"\r
413                                                 "       cmpi.l          #20, d1                                 \n\t"\r
414                                                 "       bne                     reg_test_2_error                \n\t"\r
415                                                 "       cmpi.l          #30, d2                                 \n\t"\r
416                                                 "       bne                     reg_test_2_error                \n\t"\r
417                                                 "       cmpi.l          #40, d3                                 \n\t"\r
418                                                 "       bne                     reg_test_2_error                \n\t"\r
419                                                 "       cmpi.l          #50, d4                                 \n\t"\r
420                                                 "       bne                     reg_test_2_error                \n\t"\r
421                                                 "       cmpi.l          #60, d5                                 \n\t"\r
422                                                 "       bne                     reg_test_2_error                \n\t"\r
423                                                 "       cmpi.l          #70, d6                                 \n\t"\r
424                                                 "       bne                     reg_test_2_error                \n\t"\r
425                                                 "       cmpi.l          #80, d7                                 \n\t"\r
426                                                 "       bne                     reg_test_2_error                \n\t"\r
427                                                 "       move            a0, d0                                  \n\t"\r
428                                                 "       cmpi.l          #90, d0                                 \n\t"\r
429                                                 "       bne                     reg_test_2_error                \n\t"\r
430                                                 "       move            a1, d0                                  \n\t"\r
431                                                 "       cmpi.l          #100, d0                                \n\t"\r
432                                                 "       bne                     reg_test_2_error                \n\t"\r
433                                                 "       move            a2, d0                                  \n\t"\r
434                                                 "       cmpi.l          #110, d0                                \n\t"\r
435                                                 "       bne                     reg_test_2_error                \n\t"\r
436                                                 "       move            a3, d0                                  \n\t"\r
437                                                 "       cmpi.l          #120, d0                                \n\t"\r
438                                                 "       bne                     reg_test_2_error                \n\t"\r
439                                                 "       move            a4, d0                                  \n\t"\r
440                                                 "       cmpi.l          #130, d0                                \n\t"\r
441                                                 "       bne                     reg_test_2_error                \n\t"\r
442                                                 "       move            a6, d0                                  \n\t"\r
443                                                 "       cmpi.l          #150, d0                                \n\t"\r
444                                                 "       bne                     reg_test_2_error                \n\t"\r
445                                                 "       move            ulRegTest1Counter, d0   \n\t"\r
446                                                 "       addq            #1, d0                                  \n\t"\r
447                                                 "       move            d0, ulRegTest2Counter   \n\t"\r
448                                                 "       bra                     reg_test_2_start                \n\t"\r
449                                                 "reg_test_2_error:                                              \n\t"\r
450                                                 "       bra                     reg_test_2_error                \n\t"\r
451                                         );\r
452 }\r
453 /*-----------------------------------------------------------*/\r
454 \r