]> git.sur5r.net Git - freertos/blob - Demo/ARM7_LPC2106_GCC/main.c
Update to V4.7.0.
[freertos] / Demo / ARM7_LPC2106_GCC / main.c
1 /*\r
2         FreeRTOS.org V4.7.0 - Copyright (C) 2003-2007 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\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section \r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26         ***************************************************************************\r
27         See http://www.FreeRTOS.org for documentation, latest information, license \r
28         and contact details.  Please ensure to read the configuration and relevant \r
29         port sections of the online documentation.\r
30 \r
31         Also see http://www.SafeRTOS.com a version that has been certified for use\r
32         in safety critical systems, plus commercial licensing, development and\r
33         support options.\r
34         ***************************************************************************\r
35 */\r
36 \r
37 /* \r
38         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
39         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
40         called.  The demo applications included in the FreeRTOS.org download switch\r
41         to supervisor mode prior to main being called.  If you are not using one of\r
42         these demo application projects then ensure Supervisor mode is used.\r
43 */\r
44 \r
45 \r
46 /*\r
47  * Creates all the demo application tasks, then starts the scheduler.  The WEB\r
48  * documentation provides more details of the demo application tasks.\r
49  * \r
50  * Main.c also creates a task called "Check".  This only executes every three \r
51  * seconds but has the highest priority so is guaranteed to get processor time.  \r
52  * Its main function is to check that all the other tasks are still operational.\r
53  * Each task (other than the "flash" tasks) maintains a unique count that is \r
54  * incremented each time the task successfully completes its function.  Should \r
55  * any error occur within such a task the count is permanently halted.  The \r
56  * check task inspects the count of each task to ensure it has changed since\r
57  * the last time the check task executed.  If all the count variables have \r
58  * changed all the tasks are still executing error free, and the check task\r
59  * toggles the onboard LED.  Should any task contain an error at any time \r
60  * the LED toggle rate will change from 3 seconds to 500ms.\r
61  *\r
62  * To check the operation of the memory allocator the check task also \r
63  * dynamically creates a task before delaying, and deletes it again when it \r
64  * wakes.  If memory cannot be allocated for the new task the call to xTaskCreate\r
65  * will fail and an error is signalled.  The dynamically created task itself\r
66  * allocates and frees memory just to give the allocator a bit more exercise.\r
67  *\r
68  */\r
69 \r
70 /* \r
71         Changes from V2.4.2\r
72 \r
73         + The vErrorChecks() task now dynamically creates then deletes a task each\r
74           cycle.  This tests the operation of the memory allocator.\r
75 \r
76         Changes from V2.5.2\r
77                 \r
78         + vParTestInitialise() is called during initialisation to ensure all the \r
79           LED's start off.\r
80 */\r
81 \r
82 \r
83 /* Standard includes. */\r
84 #include <stdlib.h>\r
85 #include <string.h>\r
86 \r
87 /* Scheduler includes. */\r
88 #include "FreeRTOS.h"\r
89 #include "task.h"\r
90 \r
91 /* Demo application includes. */\r
92 #include "partest.h"\r
93 #include "flash.h"\r
94 #include "integer.h"\r
95 #include "PollQ.h"\r
96 #include "comtest2.h"\r
97 #include "semtest.h"\r
98 #include "flop.h"\r
99 #include "dynamic.h"\r
100 #include "BlockQ.h"\r
101 #include "serial.h"\r
102 \r
103 /*-----------------------------------------------------------*/\r
104 \r
105 /* Constants to setup I/O. */\r
106 #define mainTX_ENABLE   ( ( unsigned portLONG ) 0x0001 )\r
107 #define mainRX_ENABLE   ( ( unsigned portLONG ) 0x0004 )\r
108 #define mainP0_14               ( ( unsigned portLONG ) 0x4000 )\r
109 #define mainJTAG_PORT   ( ( unsigned portLONG ) 0x3E0000UL )\r
110 \r
111 /* Constants to setup the PLL. */\r
112 #define mainPLL_MUL_4           ( ( unsigned portCHAR ) 0x0003 )\r
113 #define mainPLL_DIV_1           ( ( unsigned portCHAR ) 0x0000 )\r
114 #define mainPLL_ENABLE          ( ( unsigned portCHAR ) 0x0001 )\r
115 #define mainPLL_CONNECT         ( ( unsigned portCHAR ) 0x0003 )\r
116 #define mainPLL_FEED_BYTE1      ( ( unsigned portCHAR ) 0xaa )\r
117 #define mainPLL_FEED_BYTE2      ( ( unsigned portCHAR ) 0x55 )\r
118 #define mainPLL_LOCK            ( ( unsigned portLONG ) 0x0400 )\r
119 \r
120 /* Constants to setup the MAM. */\r
121 #define mainMAM_TIM_3           ( ( unsigned portCHAR ) 0x03 )\r
122 #define mainMAM_MODE_FULL       ( ( unsigned portCHAR ) 0x02 )\r
123 \r
124 /* Constants to setup the peripheral bus. */\r
125 #define mainBUS_CLK_FULL        ( ( unsigned portCHAR ) 0x01 )\r
126 \r
127 /* Constants for the ComTest tasks. */\r
128 #define mainCOM_TEST_BAUD_RATE  ( ( unsigned portLONG ) 115200 )\r
129 #define mainCOM_TEST_LED                ( 3 )\r
130 \r
131 /* Priorities for the demo application tasks. */\r
132 #define mainLED_TASK_PRIORITY           ( tskIDLE_PRIORITY + 3 )\r
133 #define mainCOM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 2 )\r
134 #define mainQUEUE_POLL_PRIORITY         ( tskIDLE_PRIORITY + 0 )\r
135 #define mainCHECK_TASK_PRIORITY         ( tskIDLE_PRIORITY + 4 )\r
136 #define mainSEM_TEST_PRIORITY           ( tskIDLE_PRIORITY + 0 )\r
137 #define mainBLOCK_Q_PRIORITY            ( tskIDLE_PRIORITY + 2 )\r
138 \r
139 /* The rate at which the on board LED will toggle when there is/is not an \r
140 error. */\r
141 #define mainNO_ERROR_FLASH_PERIOD       ( ( portTickType ) 3000 / portTICK_RATE_MS  )\r
142 #define mainERROR_FLASH_PERIOD          ( ( portTickType ) 500 / portTICK_RATE_MS  )\r
143 #define mainON_BOARD_LED_BIT            ( ( unsigned portLONG ) 0x80 )\r
144 \r
145 /* Constants used by the vMemCheckTask() task. */\r
146 #define mainCOUNT_INITIAL_VALUE         ( ( unsigned portLONG ) 0 )\r
147 #define mainNO_TASK                                     ( 0 )\r
148 \r
149 /* The size of the memory blocks allocated by the vMemCheckTask() task. */\r
150 #define mainMEM_CHECK_SIZE_1            ( ( size_t ) 51 )\r
151 #define mainMEM_CHECK_SIZE_2            ( ( size_t ) 52 )\r
152 #define mainMEM_CHECK_SIZE_3            ( ( size_t ) 151 )\r
153 \r
154 /*-----------------------------------------------------------*/\r
155 \r
156 /*\r
157  * The Olimex demo board has a single built in LED.  This function simply\r
158  * toggles its state. \r
159  */\r
160 void prvToggleOnBoardLED( void );\r
161 \r
162 /*\r
163  * Checks that all the demo application tasks are still executing without error\r
164  * - as described at the top of the file.\r
165  */\r
166 static portLONG prvCheckOtherTasksAreStillRunning( unsigned portLONG ulMemCheckTaskCount );\r
167 \r
168 /*\r
169  * The task that executes at the highest priority and calls \r
170  * prvCheckOtherTasksAreStillRunning().  See the description at the top\r
171  * of the file.\r
172  */\r
173 static void vErrorChecks( void *pvParameters );\r
174 \r
175 /*\r
176  * Dynamically created and deleted during each cycle of the vErrorChecks()\r
177  * task.  This is done to check the operation of the memory allocator.\r
178  * See the top of vErrorChecks for more details.\r
179  */\r
180 static void vMemCheckTask( void *pvParameters );\r
181 \r
182 /*\r
183  * Configure the processor for use with the Olimex demo board.  This includes\r
184  * setup for the I/O, system clock, and access timings.\r
185  */\r
186 static void prvSetupHardware( void );\r
187 \r
188 /*-----------------------------------------------------------*/\r
189 \r
190 /*\r
191  * Starts all the other tasks, then starts the scheduler. \r
192  */\r
193 int main( void )\r
194 {\r
195         /* Setup the hardware for use with the Olimex demo board. */\r
196         prvSetupHardware();\r
197 \r
198         /* Start the demo/test application tasks. */\r
199         vStartIntegerMathTasks( tskIDLE_PRIORITY );\r
200         vAltStartComTestTasks( mainCOM_TEST_PRIORITY, mainCOM_TEST_BAUD_RATE, mainCOM_TEST_LED );\r
201         vStartLEDFlashTasks( mainLED_TASK_PRIORITY );\r
202         vStartPolledQueueTasks( mainQUEUE_POLL_PRIORITY );\r
203         vStartMathTasks( tskIDLE_PRIORITY );\r
204         vStartSemaphoreTasks( mainSEM_TEST_PRIORITY );\r
205         vStartDynamicPriorityTasks();\r
206         vStartBlockingQueueTasks( mainBLOCK_Q_PRIORITY );\r
207 \r
208         /* Start the check task - which is defined in this file. */\r
209         xTaskCreate( vErrorChecks, ( signed portCHAR * ) "Check", configMINIMAL_STACK_SIZE, NULL, mainCHECK_TASK_PRIORITY, NULL );\r
210 \r
211         /* Now all the tasks have been started - start the scheduler.\r
212 \r
213         NOTE : Tasks run in system mode and the scheduler runs in Supervisor mode.\r
214         The processor MUST be in supervisor mode when vTaskStartScheduler is \r
215         called.  The demo applications included in the FreeRTOS.org download switch\r
216         to supervisor mode prior to main being called.  If you are not using one of\r
217         these demo application projects then ensure Supervisor mode is used here. */\r
218         vTaskStartScheduler();\r
219 \r
220         /* Should never reach here! */\r
221         return 0;\r
222 }\r
223 /*-----------------------------------------------------------*/\r
224 \r
225 static void vErrorChecks( void *pvParameters )\r
226 {\r
227 portTickType xDelayPeriod = mainNO_ERROR_FLASH_PERIOD;\r
228 unsigned portLONG ulMemCheckTaskRunningCount;\r
229 xTaskHandle xCreatedTask;\r
230 \r
231         /* The parameters are not used in this function. */\r
232         ( void ) pvParameters;\r
233 \r
234         /* Cycle for ever, delaying then checking all the other tasks are still\r
235         operating without error.  If an error is detected then the delay period\r
236         is decreased from mainNO_ERROR_FLASH_PERIOD to mainERROR_FLASH_PERIOD so\r
237         the on board LED flash rate will increase. \r
238         \r
239         In addition to the standard tests the memory allocator is tested through\r
240         the dynamic creation and deletion of a task each cycle.  Each time the \r
241         task is created memory must be allocated for its stack.  When the task is\r
242         deleted this memory is returned to the heap.  If the task cannot be created \r
243         then it is likely that the memory allocation failed. */\r
244 \r
245         for( ;; )\r
246         {\r
247                 /* Dynamically create a task - passing ulMemCheckTaskRunningCount as a \r
248                 parameter. */\r
249                 ulMemCheckTaskRunningCount = mainCOUNT_INITIAL_VALUE;\r
250                 xCreatedTask = mainNO_TASK;\r
251 \r
252                 if( xTaskCreate( vMemCheckTask, ( signed portCHAR * ) "MEM_CHECK", configMINIMAL_STACK_SIZE, ( void * ) &ulMemCheckTaskRunningCount, tskIDLE_PRIORITY, &xCreatedTask ) != pdPASS )\r
253                 {\r
254                         /* Could not create the task - we have probably run out of heap. */\r
255                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
256                 }\r
257 \r
258                 /* Delay until it is time to execute again. */\r
259                 vTaskDelay( xDelayPeriod );\r
260         \r
261                 /* Delete the dynamically created task. */\r
262                 if( xCreatedTask != mainNO_TASK )\r
263                 {\r
264                         vTaskDelete( xCreatedTask );\r
265                 }\r
266 \r
267                 /* Check all the standard demo application tasks are executing without \r
268                 error.  ulMemCheckTaskRunningCount is checked to ensure it was\r
269                 modified by the task just deleted. */\r
270                 if( prvCheckOtherTasksAreStillRunning( ulMemCheckTaskRunningCount ) != pdPASS )\r
271                 {\r
272                         /* An error has been detected in one of the tasks - flash faster. */\r
273                         xDelayPeriod = mainERROR_FLASH_PERIOD;\r
274                 }\r
275 \r
276                 prvToggleOnBoardLED();\r
277         }\r
278 }\r
279 /*-----------------------------------------------------------*/\r
280 \r
281 static void prvSetupHardware( void )\r
282 {\r
283         #ifdef RUN_FROM_RAM\r
284                 /* Remap the interrupt vectors to RAM if we are are running from RAM. */\r
285                 SCB_MEMMAP = 2;\r
286         #endif\r
287 \r
288         /* Configure the RS2332 pins.  All other pins remain at their default of 0. */\r
289         PCB_PINSEL0 |= mainTX_ENABLE;\r
290         PCB_PINSEL0 |= mainRX_ENABLE;\r
291 \r
292         /* Set all GPIO to output other than the P0.14 (BSL), and the JTAG pins.  \r
293         The JTAG pins are left as input as I'm not sure what will happen if the \r
294         Wiggler is connected after powerup - not that it would be a good idea to\r
295         do that anyway. */\r
296         GPIO_IODIR = ~( mainP0_14 + mainJTAG_PORT );\r
297 \r
298         /* Setup the PLL to multiply the XTAL input by 4. */\r
299         SCB_PLLCFG = ( mainPLL_MUL_4 | mainPLL_DIV_1 );\r
300 \r
301         /* Activate the PLL by turning it on then feeding the correct sequence of\r
302         bytes. */\r
303         SCB_PLLCON = mainPLL_ENABLE;\r
304         SCB_PLLFEED = mainPLL_FEED_BYTE1;\r
305         SCB_PLLFEED = mainPLL_FEED_BYTE2;\r
306 \r
307         /* Wait for the PLL to lock... */\r
308         while( !( SCB_PLLSTAT & mainPLL_LOCK ) );\r
309 \r
310         /* ...before connecting it using the feed sequence again. */\r
311         SCB_PLLCON = mainPLL_CONNECT;\r
312         SCB_PLLFEED = mainPLL_FEED_BYTE1;\r
313         SCB_PLLFEED = mainPLL_FEED_BYTE2;\r
314 \r
315         /* Setup and turn on the MAM.  Three cycle access is used due to the fast\r
316         PLL used.  It is possible faster overall performance could be obtained by\r
317         tuning the MAM and PLL settings. */\r
318         MAM_TIM = mainMAM_TIM_3;\r
319         MAM_CR = mainMAM_MODE_FULL;\r
320 \r
321         /* Setup the peripheral bus to be the same as the PLL output. */\r
322         SCB_VPBDIV = mainBUS_CLK_FULL;\r
323         \r
324         /* Initialise LED outputs. */\r
325         vParTestInitialise();\r
326 }\r
327 /*-----------------------------------------------------------*/\r
328 \r
329 void prvToggleOnBoardLED( void )\r
330 {\r
331 unsigned portLONG ulState;\r
332 \r
333         ulState = GPIO0_IOPIN;\r
334         if( ulState & mainON_BOARD_LED_BIT )\r
335         {\r
336                 GPIO_IOCLR = mainON_BOARD_LED_BIT;\r
337         }\r
338         else\r
339         {\r
340                 GPIO_IOSET = mainON_BOARD_LED_BIT;\r
341         }       \r
342 }\r
343 /*-----------------------------------------------------------*/\r
344 \r
345 static portLONG prvCheckOtherTasksAreStillRunning( unsigned portLONG ulMemCheckTaskCount )\r
346 {\r
347 portLONG lReturn = ( portLONG ) pdPASS;\r
348 \r
349         /* Check all the demo tasks (other than the flash tasks) to ensure\r
350         that they are all still running, and that none of them have detected\r
351         an error. */\r
352 \r
353         if( xAreIntegerMathsTaskStillRunning() != pdTRUE )\r
354         {\r
355                 lReturn = ( portLONG ) pdFAIL;\r
356         }\r
357 \r
358         if( xAreComTestTasksStillRunning() != pdTRUE )\r
359         {\r
360                 lReturn = ( portLONG ) pdFAIL;\r
361         }\r
362 \r
363         if( xArePollingQueuesStillRunning() != pdTRUE )\r
364         {\r
365                 lReturn = ( portLONG ) pdFAIL;\r
366         }\r
367 \r
368         if( xAreMathsTaskStillRunning() != pdTRUE )\r
369         {\r
370                 lReturn = ( portLONG ) pdFAIL;\r
371         }\r
372 \r
373         if( xAreSemaphoreTasksStillRunning() != pdTRUE )\r
374         {\r
375                 lReturn = ( portLONG ) pdFAIL;\r
376         }\r
377 \r
378         if( xAreDynamicPriorityTasksStillRunning() != pdTRUE )\r
379         {\r
380                 lReturn = ( portLONG ) pdFAIL;\r
381         }\r
382 \r
383         if( xAreBlockingQueuesStillRunning() != pdTRUE )\r
384         {\r
385                 lReturn = ( portLONG ) pdFAIL;\r
386         }\r
387 \r
388         if( ulMemCheckTaskCount == mainCOUNT_INITIAL_VALUE )\r
389         {\r
390                 /* The vMemCheckTask did not increment the counter - it must\r
391                 have failed. */\r
392                 lReturn = ( portLONG ) pdFAIL;\r
393         }\r
394 \r
395         return lReturn;\r
396 }\r
397 /*-----------------------------------------------------------*/\r
398 \r
399 static void vMemCheckTask( void *pvParameters )\r
400 {\r
401 unsigned portLONG *pulMemCheckTaskRunningCounter;\r
402 void *pvMem1, *pvMem2, *pvMem3;\r
403 static portLONG lErrorOccurred = pdFALSE;\r
404 \r
405         /* This task is dynamically created then deleted during each cycle of the\r
406         vErrorChecks task to check the operation of the memory allocator.  Each time\r
407         the task is created memory is allocated for the stack and TCB.  Each time\r
408         the task is deleted this memory is returned to the heap.  This task itself\r
409         exercises the allocator by allocating and freeing blocks. \r
410         \r
411         The task executes at the idle priority so does not require a delay. \r
412         \r
413         pulMemCheckTaskRunningCounter is incremented each cycle to indicate to the\r
414         vErrorChecks() task that this task is still executing without error. */\r
415 \r
416         pulMemCheckTaskRunningCounter = ( unsigned portLONG * ) pvParameters;\r
417 \r
418         for( ;; )\r
419         {\r
420                 if( lErrorOccurred == pdFALSE )\r
421                 {\r
422                         /* We have never seen an error so increment the counter. */\r
423                         ( *pulMemCheckTaskRunningCounter )++;\r
424                 }\r
425 \r
426                 /* Allocate some memory - just to give the allocator some extra \r
427                 exercise.  This has to be in a critical section to ensure the\r
428                 task does not get deleted while it has memory allocated. */\r
429                 vTaskSuspendAll();\r
430                 {\r
431                         pvMem1 = pvPortMalloc( mainMEM_CHECK_SIZE_1 );\r
432                         if( pvMem1 == NULL )\r
433                         {\r
434                                 lErrorOccurred = pdTRUE;\r
435                         }\r
436                         else\r
437                         {\r
438                                 memset( pvMem1, 0xaa, mainMEM_CHECK_SIZE_1 );\r
439                                 vPortFree( pvMem1 );\r
440                         }\r
441                 }\r
442                 xTaskResumeAll();\r
443 \r
444                 /* Again - with a different size block. */\r
445                 vTaskSuspendAll();\r
446                 {\r
447                         pvMem2 = pvPortMalloc( mainMEM_CHECK_SIZE_2 );\r
448                         if( pvMem2 == NULL )\r
449                         {\r
450                                 lErrorOccurred = pdTRUE;\r
451                         }\r
452                         else\r
453                         {\r
454                                 memset( pvMem2, 0xaa, mainMEM_CHECK_SIZE_2 );\r
455                                 vPortFree( pvMem2 );\r
456                         }\r
457                 }\r
458                 xTaskResumeAll();\r
459 \r
460                 /* Again - with a different size block. */\r
461                 vTaskSuspendAll();\r
462                 {\r
463                         pvMem3 = pvPortMalloc( mainMEM_CHECK_SIZE_3 );\r
464                         if( pvMem3 == NULL )\r
465                         {\r
466                                 lErrorOccurred = pdTRUE;\r
467                         }\r
468                         else\r
469                         {\r
470                                 memset( pvMem3, 0xaa, mainMEM_CHECK_SIZE_3 );\r
471                                 vPortFree( pvMem3 );\r
472                         }\r
473                 }\r
474                 xTaskResumeAll();\r
475         }\r
476 }\r
477 \r
478 \r
479 \r