]> git.sur5r.net Git - freertos/blob - Source/portable/RVDS/ARM_CM3/port.c
Update to V5.0.3.
[freertos] / Source / portable / RVDS / ARM_CM3 / port.c
1 /*\r
2         FreeRTOS.org V5.0.3 - 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  * Implementation of functions defined in portable.h for the ARM CM3 port.\r
52  *----------------------------------------------------------*/\r
53 \r
54 /* Scheduler includes. */\r
55 #include "FreeRTOS.h"\r
56 #include "task.h"\r
57 \r
58 #ifndef configKERNEL_INTERRUPT_PRIORITY\r
59         #define configKERNEL_INTERRUPT_PRIORITY 255\r
60 #endif\r
61 \r
62 /* Constants required to manipulate the NVIC. */\r
63 #define portNVIC_SYSTICK_CTRL           ( ( volatile unsigned portLONG *) 0xe000e010 )\r
64 #define portNVIC_SYSTICK_LOAD           ( ( volatile unsigned portLONG *) 0xe000e014 )\r
65 #define portNVIC_INT_CTRL                       ( ( volatile unsigned portLONG *) 0xe000ed04 )\r
66 #define portNVIC_SYSPRI2                        ( ( volatile unsigned portLONG *) 0xe000ed20 )\r
67 #define portNVIC_SYSTICK_CLK            0x00000004\r
68 #define portNVIC_SYSTICK_INT            0x00000002\r
69 #define portNVIC_SYSTICK_ENABLE         0x00000001\r
70 #define portNVIC_PENDSVSET                      0x10000000\r
71 #define portNVIC_PENDSV_PRI                     ( ( ( unsigned portLONG ) configKERNEL_INTERRUPT_PRIORITY ) << 16 )\r
72 #define portNVIC_SYSTICK_PRI            ( ( ( unsigned portLONG ) configKERNEL_INTERRUPT_PRIORITY ) << 24 )\r
73 \r
74 /* Constants required to set up the initial stack. */\r
75 #define portINITIAL_XPSR                        ( 0x01000000 )\r
76 \r
77 /* Each task maintains its own interrupt status in the critical nesting\r
78 variable. */\r
79 static unsigned portBASE_TYPE uxCriticalNesting = 0xaaaaaaaa;\r
80 \r
81 /* \r
82  * Setup the timer to generate the tick interrupts.\r
83  */\r
84 static void prvSetupTimerInterrupt( void );\r
85 \r
86 /*\r
87  * Exception handlers.\r
88  */\r
89 void xPortPendSVHandler( void );\r
90 void xPortSysTickHandler( void );\r
91 void vPortSVCHandler( void );\r
92 \r
93 /*\r
94  * Start first task is a separate function so it can be tested in isolation.\r
95  */\r
96 void vPortStartFirstTask( void );\r
97 \r
98 /*-----------------------------------------------------------*/\r
99 \r
100 /* \r
101  * See header file for description. \r
102  */\r
103 portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
104 {\r
105         /* Simulate the stack frame as it would be created by a context switch\r
106         interrupt. */\r
107         *pxTopOfStack = portINITIAL_XPSR;       /* xPSR */\r
108         pxTopOfStack--;\r
109         *pxTopOfStack = ( portSTACK_TYPE ) pxCode;      /* PC */\r
110         pxTopOfStack--;\r
111         *pxTopOfStack = 0;      /* LR */\r
112         pxTopOfStack -= 5;      /* R12, R3, R2 and R1. */\r
113         *pxTopOfStack = ( portSTACK_TYPE ) pvParameters;        /* R0 */\r
114         pxTopOfStack -= 8;      /* R11, R10, R9, R8, R7, R6, R5 and R4. */\r
115 \r
116         return pxTopOfStack;\r
117 }\r
118 /*-----------------------------------------------------------*/\r
119 \r
120 __asm void vPortSVCHandler( void )\r
121 {\r
122         PRESERVE8\r
123 \r
124         ldr     r3, =pxCurrentTCB               /* Restore the context. */\r
125         ldr r1, [r3]                            /* Use pxCurrentTCBConst to get the pxCurrentTCB address. */\r
126         ldr r0, [r1]                            /* The first item in pxCurrentTCB is the task top of stack. */\r
127         ldmia r0!, {r4-r11}             /* Pop the registers that are not automatically saved on exception entry and the critical nesting count. */\r
128         msr psp, r0                                     /* Restore the task stack pointer. */\r
129         mov r0, #0\r
130         msr     basepri, r0\r
131         orr r14, #0xd                           \r
132         bx r14                                          \r
133 }\r
134 /*-----------------------------------------------------------*/\r
135 \r
136 __asm void vPortStartFirstTask( void )\r
137 {\r
138         PRESERVE8\r
139 \r
140         /* Use the NVIC offset register to locate the stack. */\r
141         ldr r0, =0xE000ED08\r
142         ldr r0, [r0]\r
143         ldr r0, [r0]\r
144         /* Set the msp back to the start of the stack. */\r
145         msr msp, r0\r
146         /* Call SVC to start the first task. */\r
147         svc 0\r
148 }\r
149 /*-----------------------------------------------------------*/\r
150 \r
151 /* \r
152  * See header file for description. \r
153  */\r
154 portBASE_TYPE xPortStartScheduler( void )\r
155 {\r
156         /* Make PendSV, CallSV and SysTick the same priroity as the kernel. */\r
157         *(portNVIC_SYSPRI2) |= portNVIC_PENDSV_PRI;\r
158         *(portNVIC_SYSPRI2) |= portNVIC_SYSTICK_PRI;\r
159 \r
160         /* Start the timer that generates the tick ISR.  Interrupts are disabled\r
161         here already. */\r
162         prvSetupTimerInterrupt();\r
163         \r
164         /* Initialise the critical nesting count ready for the first task. */\r
165         uxCriticalNesting = 0;\r
166 \r
167         /* Start the first task. */\r
168         vPortStartFirstTask();\r
169 \r
170         /* Should not get here! */\r
171         return 0;\r
172 }\r
173 /*-----------------------------------------------------------*/\r
174 \r
175 void vPortEndScheduler( void )\r
176 {\r
177         /* It is unlikely that the CM3 port will require this function as there\r
178         is nothing to return to.  */\r
179 }\r
180 /*-----------------------------------------------------------*/\r
181 \r
182 void vPortYieldFromISR( void )\r
183 {\r
184         /* Set a PendSV to request a context switch. */\r
185         *(portNVIC_INT_CTRL) |= portNVIC_PENDSVSET;\r
186 }\r
187 /*-----------------------------------------------------------*/\r
188 \r
189 void vPortEnterCritical( void )\r
190 {\r
191         portDISABLE_INTERRUPTS();\r
192         uxCriticalNesting++;\r
193 }\r
194 /*-----------------------------------------------------------*/\r
195 \r
196 void vPortExitCritical( void )\r
197 {\r
198         uxCriticalNesting--;\r
199         if( uxCriticalNesting == 0 )\r
200         {\r
201                 portENABLE_INTERRUPTS();\r
202         }\r
203 }\r
204 /*-----------------------------------------------------------*/\r
205 \r
206 __asm void xPortPendSVHandler( void )\r
207 {\r
208         extern uxCriticalNesting;\r
209         extern pxCurrentTCB;\r
210         extern vTaskSwitchContext;\r
211 \r
212         PRESERVE8\r
213 \r
214         mrs r0, psp                                              \r
215 \r
216         ldr     r3, =pxCurrentTCB                        /* Get the location of the current TCB. */\r
217         ldr     r2, [r3]                                                \r
218 \r
219         stmdb r0!, {r4-r11}                              /* Save the remaining registers. */\r
220         str r0, [r2]                                     /* Save the new top of stack into the first member of the TCB. */\r
221 \r
222         stmdb sp!, {r3, r14}            \r
223         mov r0, #configMAX_SYSCALL_INTERRUPT_PRIORITY\r
224         msr basepri, r0          \r
225         bl vTaskSwitchContext\r
226         mov r0, #0\r
227         msr basepri, r0\r
228         ldmia sp!, {r3, r14}                    \r
229 \r
230         ldr r1, [r3]                                     \r
231         ldr r0, [r1]                                     /* The first item in pxCurrentTCB is the task top of stack. */\r
232         ldmia r0!, {r4-r11}                      /* Pop the registers and the critical nesting count. */\r
233         msr psp, r0                                              \r
234         bx r14\r
235         nop\r
236 }\r
237 /*-----------------------------------------------------------*/\r
238 \r
239 void xPortSysTickHandler( void )\r
240 {\r
241 unsigned portLONG ulDummy;\r
242 \r
243         /* If using preemption, also force a context switch. */\r
244         #if configUSE_PREEMPTION == 1\r
245                 *(portNVIC_INT_CTRL) |= portNVIC_PENDSVSET;     \r
246         #endif\r
247 \r
248         ulDummy = portSET_INTERRUPT_MASK_FROM_ISR();\r
249         {\r
250                 vTaskIncrementTick();\r
251         }\r
252         portCLEAR_INTERRUPT_MASK_FROM_ISR( ulDummy );\r
253 }\r
254 /*-----------------------------------------------------------*/\r
255 \r
256 /*\r
257  * Setup the systick timer to generate the tick interrupts at the required\r
258  * frequency.\r
259  */\r
260 void prvSetupTimerInterrupt( void )\r
261 {\r
262         /* Configure SysTick to interrupt at the requested rate. */\r
263         *(portNVIC_SYSTICK_LOAD) = ( configCPU_CLOCK_HZ / configTICK_RATE_HZ ) - 1UL;\r
264         *(portNVIC_SYSTICK_CTRL) = portNVIC_SYSTICK_CLK | portNVIC_SYSTICK_INT | portNVIC_SYSTICK_ENABLE;\r
265 }\r
266 /*-----------------------------------------------------------*/\r
267 \r
268 __asm void vPortSetInterruptMask( void )\r
269 {\r
270         PRESERVE8\r
271 \r
272         push { r0 }\r
273         mov r0, #configMAX_SYSCALL_INTERRUPT_PRIORITY\r
274         msr basepri, r0\r
275         pop { r0 }\r
276         bx r14\r
277 }\r
278 \r
279 /*-----------------------------------------------------------*/\r
280 \r
281 __asm void vPortClearInterruptMask( void )\r
282 {\r
283         PRESERVE8\r
284 \r
285         push { r0 }\r
286         mov r0, #0\r
287         msr basepri, r0\r
288         pop { r0 }\r
289         bx r14\r
290 }\r