]> git.sur5r.net Git - freertos/blob - Source/portable/GCC/ARM7_AT91FR40008/portISR.c
2e2f01443e983f4bd61d7796bc930ffc00214965
[freertos] / Source / portable / GCC / ARM7_AT91FR40008 / portISR.c
1 /*\r
2         FreeRTOS.org V4.4.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 for an IEC 61508 compliant version along\r
32         with commercial development and support options.\r
33         ***************************************************************************\r
34 */\r
35 \r
36 \r
37 /*-----------------------------------------------------------\r
38  * Components that can be compiled to either ARM or THUMB mode are\r
39  * contained in port.c  The ISR routines, which can only be compiled\r
40  * to ARM mode, are contained in this file.\r
41  *----------------------------------------------------------*/\r
42 \r
43 /*\r
44         Changes from V3.2.4\r
45 \r
46         + The assembler statements are now included in a single asm block rather\r
47           than each line having its own asm block.\r
48 */\r
49 \r
50 \r
51 /* Scheduler includes. */\r
52 #include "FreeRTOS.h"\r
53 #include "task.h"\r
54 \r
55 /* Constants required to handle interrupts. */\r
56 #define portCLEAR_AIC_INTERRUPT         ( ( unsigned portLONG ) 0 )\r
57 \r
58 /* Constants required to handle critical sections. */\r
59 #define portNO_CRITICAL_NESTING         ( ( unsigned portLONG ) 0 )\r
60 volatile unsigned portLONG ulCriticalNesting = 9999UL;\r
61 \r
62 /*-----------------------------------------------------------*/\r
63 \r
64 /* ISR to handle manual context switches (from a call to taskYIELD()). */\r
65 void vPortYieldProcessor( void ) __attribute__((interrupt("SWI"), naked));\r
66 \r
67 /* \r
68  * The scheduler can only be started from ARM mode, hence the inclusion of this\r
69  * function here.\r
70  */\r
71 void vPortISRStartFirstTask( void );\r
72 /*-----------------------------------------------------------*/\r
73 \r
74 void vPortISRStartFirstTask( void )\r
75 {\r
76         /* Simply start the scheduler.  This is included here as it can only be\r
77         called from ARM mode. */\r
78         portRESTORE_CONTEXT();\r
79 }\r
80 /*-----------------------------------------------------------*/\r
81 \r
82 /*\r
83  * Called by portYIELD() or taskYIELD() to manually force a context switch.\r
84  *\r
85  * When a context switch is performed from the task level the saved task \r
86  * context is made to look as if it occurred from within the tick ISR.  This\r
87  * way the same restore context function can be used when restoring the context\r
88  * saved from the ISR or that saved from a call to vPortYieldProcessor.\r
89  */\r
90 void vPortYieldProcessor( void )\r
91 {\r
92         /* Within an IRQ ISR the link register has an offset from the true return \r
93         address, but an SWI ISR does not.  Add the offset manually so the same \r
94         ISR return code can be used in both cases. */\r
95         asm volatile ( "ADD             LR, LR, #4" );\r
96 \r
97         /* Perform the context switch.  First save the context of the current task. */\r
98         portSAVE_CONTEXT();\r
99 \r
100         /* Find the highest priority task that is ready to run. */\r
101         vTaskSwitchContext();\r
102 \r
103         /* Restore the context of the new task. */\r
104         portRESTORE_CONTEXT();  \r
105 }\r
106 /*-----------------------------------------------------------*/\r
107 \r
108 /* \r
109  * The ISR used for the scheduler tick depends on whether the cooperative or\r
110  * the preemptive scheduler is being used.\r
111  */\r
112 \r
113 #if configUSE_PREEMPTION == 0\r
114 \r
115         /* The cooperative scheduler requires a normal IRQ service routine to \r
116         simply increment the system tick. */\r
117         void vNonPreemptiveTick( void ) __attribute__ ((interrupt ("IRQ")));\r
118         void vNonPreemptiveTick( void )\r
119         {               \r
120         static volatile unsigned portLONG ulDummy;\r
121 \r
122                 /* Clear tick timer interrupt indication. */\r
123                 ulDummy = portTIMER_REG_BASE_PTR->TC_SR;  \r
124 \r
125                 vTaskIncrementTick();\r
126 \r
127                 /* Acknowledge the interrupt at AIC level... */\r
128                 AT91C_BASE_AIC->AIC_EOICR = portCLEAR_AIC_INTERRUPT;\r
129         }\r
130 \r
131 #else  /* else preemption is turned on */\r
132 \r
133         /* The preemptive scheduler is defined as "naked" as the full context is\r
134         saved on entry as part of the context switch. */\r
135         void vPreemptiveTick( void ) __attribute__((naked));\r
136         void vPreemptiveTick( void )\r
137         {\r
138                 /* Save the context of the interrupted task. */\r
139                 portSAVE_CONTEXT();     \r
140 \r
141                 /* WARNING - Do not use local (stack) variables here.  Use globals\r
142                                          if you must! */\r
143                 static volatile unsigned portLONG ulDummy;\r
144 \r
145                 /* Clear tick timer interrupt indication. */\r
146                 ulDummy = portTIMER_REG_BASE_PTR->TC_SR;  \r
147 \r
148                 /* Increment the RTOS tick count, then look for the highest priority \r
149                 task that is ready to run. */\r
150                 vTaskIncrementTick();\r
151                 vTaskSwitchContext();\r
152 \r
153                 /* Acknowledge the interrupt at AIC level... */\r
154                 AT91C_BASE_AIC->AIC_EOICR = portCLEAR_AIC_INTERRUPT;\r
155 \r
156                 /* Restore the context of the new task. */\r
157                 portRESTORE_CONTEXT();\r
158         }\r
159 \r
160 #endif\r
161 /*-----------------------------------------------------------*/\r
162 \r
163 /*\r
164  * The interrupt management utilities can only be called from ARM mode.  When\r
165  * THUMB_INTERWORK is defined the utilities are defined as functions here to\r
166  * ensure a switch to ARM mode.  When THUMB_INTERWORK is not defined then\r
167  * the utilities are defined as macros in portmacro.h - as per other ports.\r
168  */\r
169 #ifdef THUMB_INTERWORK\r
170 \r
171         void vPortDisableInterruptsFromThumb( void ) __attribute__ ((naked));\r
172         void vPortEnableInterruptsFromThumb( void ) __attribute__ ((naked));\r
173 \r
174         void vPortDisableInterruptsFromThumb( void )\r
175         {\r
176                 asm volatile ( \r
177                         "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                                                     */\r
178                         "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                                            */\r
179                         "ORR    R0, R0, #0xC0   \n\t"   /* Disable IRQ, FIQ.                                            */\r
180                         "MSR    CPSR, R0                \n\t"   /* Write back modified value.                           */\r
181                         "LDMIA  SP!, {R0}               \n\t"   /* Pop R0.                                                                      */\r
182                         "BX             R14" );                                 /* Return back to thumb.                                        */\r
183         }\r
184                         \r
185         void vPortEnableInterruptsFromThumb( void )\r
186         {\r
187                 asm volatile ( \r
188                         "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                                                     */      \r
189                         "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                                            */      \r
190                         "BIC    R0, R0, #0xC0   \n\t"   /* Enable IRQ, FIQ.                                                     */      \r
191                         "MSR    CPSR, R0                \n\t"   /* Write back modified value.                           */      \r
192                         "LDMIA  SP!, {R0}               \n\t"   /* Pop R0.                                                                      */\r
193                         "BX             R14" );                                 /* Return back to thumb.                                        */\r
194         }\r
195 \r
196 #endif /* THUMB_INTERWORK */\r
197 \r
198 /* The code generated by the GCC compiler uses the stack in different ways at\r
199 different optimisation levels.  The interrupt flags can therefore not always\r
200 be saved to the stack.  Instead the critical section nesting level is stored\r
201 in a variable, which is then saved as part of the stack context. */\r
202 void vPortEnterCritical( void )\r
203 {\r
204         /* Disable interrupts as per portDISABLE_INTERRUPTS();                                                  */\r
205         asm volatile ( \r
206                 "STMDB  SP!, {R0}                       \n\t"   /* Push R0.                                                             */\r
207                 "MRS    R0, CPSR                        \n\t"   /* Get CPSR.                                                    */\r
208                 "ORR    R0, R0, #0xC0           \n\t"   /* Disable IRQ, FIQ.                                    */\r
209                 "MSR    CPSR, R0                        \n\t"   /* Write back modified value.                   */\r
210                 "LDMIA  SP!, {R0}" );                           /* Pop R0.                                                              */\r
211 \r
212         /* Now interrupts are disabled ulCriticalNesting can be accessed \r
213         directly.  Increment ulCriticalNesting to keep a count of how many times\r
214         portENTER_CRITICAL() has been called. */\r
215         ulCriticalNesting++;\r
216 }\r
217 \r
218 void vPortExitCritical( void )\r
219 {\r
220         if( ulCriticalNesting > portNO_CRITICAL_NESTING )\r
221         {\r
222                 /* Decrement the nesting count as we are leaving a critical section. */\r
223                 ulCriticalNesting--;\r
224 \r
225                 /* If the nesting level has reached zero then interrupts should be\r
226                 re-enabled. */\r
227                 if( ulCriticalNesting == portNO_CRITICAL_NESTING )\r
228                 {\r
229                         /* Enable interrupts as per portEXIT_CRITICAL().                                */\r
230                         asm volatile ( \r
231                                 "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                             */      \r
232                                 "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                    */      \r
233                                 "BIC    R0, R0, #0xC0   \n\t"   /* Enable IRQ, FIQ.                             */      \r
234                                 "MSR    CPSR, R0                \n\t"   /* Write back modified value.   */      \r
235                                 "LDMIA  SP!, {R0}" );                   /* Pop R0.                                              */\r
236                 }\r
237         }\r
238 }\r
239 \r