]> git.sur5r.net Git - freertos/blob - Source/portable/IAR/ARM_CM3/port.c
87caec32d2cbefd0a7f710b780da2d1c6ba3fe0a
[freertos] / Source / portable / IAR / ARM_CM3 / port.c
1 /*\r
2         FreeRTOS.org V4.7.2 - 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         Please ensure to read the configuration and relevant port sections of the \r
29         online documentation.\r
30 \r
31         +++ http://www.FreeRTOS.org +++\r
32         Documentation, latest information, license and contact details.  \r
33 \r
34         +++ http://www.SafeRTOS.com +++\r
35         A version that is certified for use in safety critical systems.\r
36 \r
37         +++ http://www.OpenRTOS.com +++\r
38         Commercial support, development, porting, licensing and training services.\r
39 \r
40         ***************************************************************************\r
41 */\r
42 \r
43 /*\r
44         Change from V4.2.1:\r
45 \r
46         + Introduced usage of configKERNEL_INTERRUPT_PRIORITY macro to set the\r
47           interrupt priority used by the kernel.\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 /* Constants required to manipulate the NVIC. */\r
59 #define portNVIC_SYSTICK_CTRL           ( ( volatile unsigned portLONG *) 0xe000e010 )\r
60 #define portNVIC_SYSTICK_LOAD           ( ( volatile unsigned portLONG *) 0xe000e014 )\r
61 #define portNVIC_INT_CTRL                       ( ( volatile unsigned portLONG *) 0xe000ed04 )\r
62 #define portNVIC_SYSPRI2                        ( ( volatile unsigned portLONG *) 0xe000ed20 )\r
63 #define portNVIC_SYSPRI1                        ( ( volatile unsigned portLONG *) 0xe000ed1c )\r
64 #define portNVIC_SYSTICK_CLK            0x00000004\r
65 #define portNVIC_SYSTICK_INT            0x00000002\r
66 #define portNVIC_SYSTICK_ENABLE         0x00000001\r
67 #define portNVIC_PENDSVSET                      0x10000000\r
68 #define portNVIC_PENDSV_PRI                     ( ( ( unsigned portLONG ) configKERNEL_INTERRUPT_PRIORITY ) << 16 )\r
69 #define portNVIC_SYSTICK_PRI            ( ( ( unsigned portLONG ) configKERNEL_INTERRUPT_PRIORITY ) << 24 )\r
70 \r
71 /* Constants required to set up the initial stack. */\r
72 #define portINITIAL_XPSR                        ( 0x01000000 )\r
73 \r
74 /* For backward compatibility, ensure configKERNEL_INTERRUPT_PRIORITY is\r
75 defined.  The value 255 should also ensure backward compatibility.\r
76 FreeRTOS.org versions prior to V4.3.0 did not include this definition. */\r
77 #ifndef configKERNEL_INTERRUPT_PRIORITY\r
78         #define configKERNEL_INTERRUPT_PRIORITY 0\r
79 #endif\r
80 \r
81 /* Each task maintains its own interrupt status in the critical nesting\r
82 variable. */\r
83 unsigned portBASE_TYPE uxCriticalNesting = 0xaaaaaaaa;\r
84 \r
85 /*\r
86  * Setup the timer to generate the tick interrupts.\r
87  */\r
88 static void prvSetupTimerInterrupt( void );\r
89 \r
90 /*\r
91  * Set the MSP/PSP to a known value.\r
92  */\r
93 extern void vSetMSP( unsigned long ulValue );\r
94 extern void vSetPSP( unsigned long ulValue );\r
95 \r
96 /*\r
97  * Utilities called from the assembler code.\r
98  */\r
99 void vPortSwitchContext( void );\r
100 void vPortIncrementTick( void );\r
101 \r
102 /*-----------------------------------------------------------*/\r
103 \r
104 /*\r
105  * See header file for description.\r
106  */\r
107 portSTACK_TYPE *pxPortInitialiseStack( portSTACK_TYPE *pxTopOfStack, pdTASK_CODE pxCode, void *pvParameters )\r
108 {\r
109         /* Simulate the stack frame as it would be created by a context switch\r
110         interrupt. */\r
111         *pxTopOfStack = portINITIAL_XPSR;       /* xPSR */\r
112         pxTopOfStack--;\r
113         *pxTopOfStack = ( portSTACK_TYPE ) pxCode;      /* PC */\r
114         pxTopOfStack--;\r
115         *pxTopOfStack = 0xfffffffd;     /* LR */\r
116         pxTopOfStack -= 5;      /* R12, R3, R2 and R1. */\r
117         *pxTopOfStack = ( portSTACK_TYPE ) pvParameters;        /* R0 */\r
118         pxTopOfStack -= 9;      /* R11, R10, R9, R8, R7, R6, R5 and R4. */\r
119         *pxTopOfStack = 0x00000000; /* uxCriticalNesting. */\r
120 \r
121         return pxTopOfStack;\r
122 }\r
123 /*-----------------------------------------------------------*/\r
124 \r
125 /*\r
126  * See header file for description.\r
127  */\r
128 portBASE_TYPE xPortStartScheduler( void )\r
129 {\r
130         /* Make PendSV and SysTick the lowest priority interrupts. */\r
131         *(portNVIC_SYSPRI2) |= portNVIC_PENDSV_PRI;\r
132         *(portNVIC_SYSPRI2) |= portNVIC_SYSTICK_PRI;\r
133 \r
134         /* Start the timer that generates the tick ISR.  Interrupts are disabled\r
135         here already. */\r
136         prvSetupTimerInterrupt();\r
137         \r
138         /* Start the first task. */\r
139         vSetPSP( 0 );\r
140         vSetMSP( *((unsigned portLONG *) 0 ) );\r
141         *(portNVIC_INT_CTRL) |= portNVIC_PENDSVSET;\r
142 \r
143         /* Enable interrupts */\r
144         portENABLE_INTERRUPTS();\r
145 \r
146         /* Should not get here! */\r
147         return 0;\r
148 }\r
149 /*-----------------------------------------------------------*/\r
150 \r
151 void vPortEndScheduler( void )\r
152 {\r
153         /* It is unlikely that the CM3 port will require this function as there\r
154         is nothing to return to.  */\r
155 }\r
156 /*-----------------------------------------------------------*/\r
157 \r
158 void vPortYieldFromISR( void )\r
159 {\r
160         /* Set a PendSV to request a context switch. */\r
161         *(portNVIC_INT_CTRL) |= portNVIC_PENDSVSET;\r
162 \r
163         /* This function is also called in response to a Yield(), so we want\r
164         the yield to occur immediately. */\r
165         portENABLE_INTERRUPTS();\r
166 }\r
167 /*-----------------------------------------------------------*/\r
168 \r
169 void vPortEnterCritical( void )\r
170 {\r
171         portDISABLE_INTERRUPTS();\r
172         uxCriticalNesting++;\r
173 }\r
174 /*-----------------------------------------------------------*/\r
175 \r
176 void vPortExitCritical( void )\r
177 {\r
178         uxCriticalNesting--;\r
179         if( uxCriticalNesting == 0 )\r
180         {\r
181                 portENABLE_INTERRUPTS();\r
182         }\r
183 }\r
184 /*-----------------------------------------------------------*/\r
185 \r
186 \r
187 /*\r
188  * Setup the systick timer to generate the tick interrupts at the required\r
189  * frequency.\r
190  */\r
191 void prvSetupTimerInterrupt( void )\r
192 {\r
193         /* Configure SysTick to interrupt at the requested rate. */\r
194         *(portNVIC_SYSTICK_LOAD) = configCPU_CLOCK_HZ / configTICK_RATE_HZ;\r
195         *(portNVIC_SYSTICK_CTRL) = portNVIC_SYSTICK_CLK | portNVIC_SYSTICK_INT | portNVIC_SYSTICK_ENABLE;\r
196 }\r
197 /*-----------------------------------------------------------*/\r
198 \r
199 void vPortSwitchContext( void )\r
200 {\r
201         vPortSetInterruptMask();\r
202         vTaskSwitchContext();\r
203         vPortClearInterruptMask();\r
204 }\r
205 /*-----------------------------------------------------------*/\r
206 \r
207 void vPortIncrementTick( void )\r
208 {\r
209         vPortSetInterruptMask();\r
210         vTaskIncrementTick();\r
211         vPortClearInterruptMask();\r
212 }\r
213 \r
214 \r