]> begriffs open source - freertos/blob - Source/portable/GCC/ARM7_LPC2000/port.c
Update to V5.0.0.
[freertos] / Source / portable / GCC / ARM7_LPC2000 / port.c
1 /*\r
2         FreeRTOS.org V5.0.0 - Copyright (C) 2003-2008 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     ***************************************************************************\r
28     *                                                                         *\r
29     * SAVE TIME AND MONEY!  We can port FreeRTOS.org to your own hardware,    *\r
30     * and even write all or part of your application on your behalf.          *\r
31     * See http://www.OpenRTOS.com for details of the services we provide to   *\r
32     * expedite your project.                                                  *\r
33     *                                                                         *\r
34     ***************************************************************************\r
35     ***************************************************************************\r
36 \r
37         Please ensure to read the configuration and relevant port sections of the\r
38         online documentation.\r
39 \r
40         http://www.FreeRTOS.org - Documentation, latest information, license and \r
41         contact details.\r
42 \r
43         http://www.SafeRTOS.com - A version that is certified for use in safety \r
44         critical systems.\r
45 \r
46         http://www.OpenRTOS.com - Commercial support, development, porting, \r
47         licensing and training services.\r
48 */\r
49 \r
50 \r
51 /*-----------------------------------------------------------\r
52  * Implementation of functions defined in portable.h for the ARM7 port.\r
53  *\r
54  * Components that can be compiled to either ARM or THUMB mode are\r
55  * contained in this file.  The ISR routines, which can only be compiled\r
56  * to ARM mode are contained in portISR.c.\r
57  *----------------------------------------------------------*/\r
58 \r
59 /*\r
60         Changes from V2.5.2\r
61                 \r
62         + ulCriticalNesting is now saved as part of the task context, as is \r
63           therefore added to the initial task stack during pxPortInitialiseStack.\r
64 \r
65         Changes from V3.2.2\r
66 \r
67         + Bug fix - The prescale value for the timer setup is now written to T0_PR \r
68           instead of T0_PC.  This bug would have had no effect unless a prescale \r
69           value was actually used.\r
70 */\r
71 \r
72 \r
73 /* Standard includes. */\r
74 #include <stdlib.h>\r
75 \r
76 /* Scheduler includes. */\r
77 #include "FreeRTOS.h"\r
78 #include "task.h"\r
79 \r
80 /* Constants required to setup the task context. */\r
81 #define portINITIAL_SPSR                                ( ( portSTACK_TYPE ) 0x1f ) /* System mode, ARM mode, interrupts enabled. */\r
82 #define portTHUMB_MODE_BIT                              ( ( portSTACK_TYPE ) 0x20 )\r
83 #define portINSTRUCTION_SIZE                    ( ( portSTACK_TYPE ) 4 )\r
84 #define portNO_CRITICAL_SECTION_NESTING ( ( portSTACK_TYPE ) 0 )\r
85 \r
86 /* Constants required to setup the tick ISR. */\r
87 #define portENABLE_TIMER                        ( ( unsigned portCHAR ) 0x01 )\r
88 #define portPRESCALE_VALUE                      0x00\r
89 #define portINTERRUPT_ON_MATCH          ( ( unsigned portLONG ) 0x01 )\r
90 #define portRESET_COUNT_ON_MATCH        ( ( unsigned portLONG ) 0x02 )\r
91 \r
92 /* Constants required to setup the VIC for the tick ISR. */\r
93 #define portTIMER_VIC_CHANNEL           ( ( unsigned portLONG ) 0x0004 )\r
94 #define portTIMER_VIC_CHANNEL_BIT       ( ( unsigned portLONG ) 0x0010 )\r
95 #define portTIMER_VIC_ENABLE            ( ( unsigned portLONG ) 0x0020 )\r
96 \r
97 /*-----------------------------------------------------------*/\r
98 \r
99 /* Setup the timer to generate the tick interrupts. */\r
100 static void prvSetupTimerInterrupt( void );\r
101 \r
102 /* \r
103  * The scheduler can only be started from ARM mode, so \r
104  * vPortISRStartFirstSTask() is defined in portISR.c. \r
105  */\r
106 extern void vPortISRStartFirstTask( void );\r
107 \r
108 /*-----------------------------------------------------------*/\r
109 \r
110 /* \r
111  * Initialise the stack of a task to look exactly as if a call to \r
112  * portSAVE_CONTEXT had been called.\r
113  *\r
114  * See header file for description. \r
115  */\r
116 portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
117 {\r
118 portSTACK_TYPE *pxOriginalTOS;\r
119 \r
120         pxOriginalTOS = pxTopOfStack;\r
121 \r
122         /* Setup the initial stack of the task.  The stack is set exactly as \r
123         expected by the portRESTORE_CONTEXT() macro. */\r
124 \r
125         /* First on the stack is the return address - which in this case is the\r
126         start of the task.  The offset is added to make the return address appear\r
127         as it would within an IRQ ISR. */\r
128         *pxTopOfStack = ( portSTACK_TYPE ) pxCode + portINSTRUCTION_SIZE;               \r
129         pxTopOfStack--;\r
130 \r
131         *pxTopOfStack = ( portSTACK_TYPE ) 0xaaaaaaaa;  /* R14 */\r
132         pxTopOfStack--; \r
133         *pxTopOfStack = ( portSTACK_TYPE ) pxOriginalTOS; /* Stack used when task starts goes in R13. */\r
134         pxTopOfStack--;\r
135         *pxTopOfStack = ( portSTACK_TYPE ) 0x12121212;  /* R12 */\r
136         pxTopOfStack--; \r
137         *pxTopOfStack = ( portSTACK_TYPE ) 0x11111111;  /* R11 */\r
138         pxTopOfStack--; \r
139         *pxTopOfStack = ( portSTACK_TYPE ) 0x10101010;  /* R10 */\r
140         pxTopOfStack--; \r
141         *pxTopOfStack = ( portSTACK_TYPE ) 0x09090909;  /* R9 */\r
142         pxTopOfStack--; \r
143         *pxTopOfStack = ( portSTACK_TYPE ) 0x08080808;  /* R8 */\r
144         pxTopOfStack--; \r
145         *pxTopOfStack = ( portSTACK_TYPE ) 0x07070707;  /* R7 */\r
146         pxTopOfStack--; \r
147         *pxTopOfStack = ( portSTACK_TYPE ) 0x06060606;  /* R6 */\r
148         pxTopOfStack--; \r
149         *pxTopOfStack = ( portSTACK_TYPE ) 0x05050505;  /* R5 */\r
150         pxTopOfStack--; \r
151         *pxTopOfStack = ( portSTACK_TYPE ) 0x04040404;  /* R4 */\r
152         pxTopOfStack--; \r
153         *pxTopOfStack = ( portSTACK_TYPE ) 0x03030303;  /* R3 */\r
154         pxTopOfStack--; \r
155         *pxTopOfStack = ( portSTACK_TYPE ) 0x02020202;  /* R2 */\r
156         pxTopOfStack--; \r
157         *pxTopOfStack = ( portSTACK_TYPE ) 0x01010101;  /* R1 */\r
158         pxTopOfStack--; \r
159 \r
160         /* When the task starts is will expect to find the function parameter in\r
161         R0. */\r
162         *pxTopOfStack = ( portSTACK_TYPE ) pvParameters; /* R0 */\r
163         pxTopOfStack--;\r
164 \r
165         /* The last thing onto the stack is the status register, which is set for\r
166         system mode, with interrupts enabled. */\r
167         *pxTopOfStack = ( portSTACK_TYPE ) portINITIAL_SPSR;\r
168 \r
169         #ifdef THUMB_INTERWORK\r
170         {\r
171                 /* We want the task to start in thumb mode. */\r
172                 *pxTopOfStack |= portTHUMB_MODE_BIT;\r
173         }\r
174         #endif\r
175 \r
176         pxTopOfStack--;\r
177 \r
178         /* Some optimisation levels use the stack differently to others.  This \r
179         means the interrupt flags cannot always be stored on the stack and will\r
180         instead be stored in a variable, which is then saved as part of the\r
181         tasks context. */\r
182         *pxTopOfStack = portNO_CRITICAL_SECTION_NESTING;\r
183 \r
184         return pxTopOfStack;\r
185 }\r
186 /*-----------------------------------------------------------*/\r
187 \r
188 portBASE_TYPE xPortStartScheduler( void )\r
189 {\r
190         /* Start the timer that generates the tick ISR.  Interrupts are disabled\r
191         here already. */\r
192         prvSetupTimerInterrupt();\r
193 \r
194         /* Start the first task. */\r
195         vPortISRStartFirstTask();       \r
196 \r
197         /* Should not get here! */\r
198         return 0;\r
199 }\r
200 /*-----------------------------------------------------------*/\r
201 \r
202 void vPortEndScheduler( void )\r
203 {\r
204         /* It is unlikely that the ARM port will require this function as there\r
205         is nothing to return to.  */\r
206 }\r
207 /*-----------------------------------------------------------*/\r
208 \r
209 /*\r
210  * Setup the timer 0 to generate the tick interrupts at the required frequency.\r
211  */\r
212 static void prvSetupTimerInterrupt( void )\r
213 {\r
214 unsigned portLONG ulCompareMatch;\r
215 extern void ( vTickISR )( void );\r
216 \r
217         /* A 1ms tick does not require the use of the timer prescale.  This is\r
218         defaulted to zero but can be used if necessary. */\r
219         T0_PR = portPRESCALE_VALUE;\r
220 \r
221         /* Calculate the match value required for our wanted tick rate. */\r
222         ulCompareMatch = configCPU_CLOCK_HZ / configTICK_RATE_HZ;\r
223 \r
224         /* Protect against divide by zero.  Using an if() statement still results\r
225         in a warning - hence the #if. */\r
226         #if portPRESCALE_VALUE != 0\r
227         {\r
228                 ulCompareMatch /= ( portPRESCALE_VALUE + 1 );\r
229         }\r
230         #endif\r
231         T0_MR0 = ulCompareMatch;\r
232 \r
233         /* Generate tick with timer 0 compare match. */\r
234         T0_MCR = portRESET_COUNT_ON_MATCH | portINTERRUPT_ON_MATCH;\r
235 \r
236         /* Setup the VIC for the timer. */\r
237         VICIntSelect &= ~( portTIMER_VIC_CHANNEL_BIT );\r
238         VICIntEnable |= portTIMER_VIC_CHANNEL_BIT;\r
239         \r
240         /* The ISR installed depends on whether the preemptive or cooperative\r
241         scheduler is being used. */\r
242 \r
243         VICVectAddr0 = ( portLONG ) vTickISR;\r
244         VICVectCntl0 = portTIMER_VIC_CHANNEL | portTIMER_VIC_ENABLE;\r
245 \r
246         /* Start the timer - interrupts are disabled when this function is called\r
247         so it is okay to do this here. */\r
248         T0_TCR = portENABLE_TIMER;\r
249 }\r
250 /*-----------------------------------------------------------*/\r
251 \r
252 \r
253 \r