]> git.sur5r.net Git - freertos/blob - Source/portable/GCC/ARM7_AT91SAM7S/portISR.c
aa51db11f8de647b3837c1523ca9493d1784f8dd
[freertos] / Source / portable / GCC / ARM7_AT91SAM7S / portISR.c
1 /*\r
2     FreeRTOS V6.0.4 - Copyright (C) 2010 Real Time Engineers Ltd.\r
3 \r
4     ***************************************************************************\r
5     *                                                                         *\r
6     * If you are:                                                             *\r
7     *                                                                         *\r
8     *    + New to FreeRTOS,                                                   *\r
9     *    + Wanting to learn FreeRTOS or multitasking in general quickly       *\r
10     *    + Looking for basic training,                                        *\r
11     *    + Wanting to improve your FreeRTOS skills and productivity           *\r
12     *                                                                         *\r
13     * then take a look at the FreeRTOS eBook                                  *\r
14     *                                                                         *\r
15     *        "Using the FreeRTOS Real Time Kernel - a Practical Guide"        *\r
16     *                  http://www.FreeRTOS.org/Documentation                  *\r
17     *                                                                         *\r
18     * A pdf reference manual is also available.  Both are usually delivered   *\r
19     * to your inbox within 20 minutes to two hours when purchased between 8am *\r
20     * and 8pm GMT (although please allow up to 24 hours in case of            *\r
21     * exceptional circumstances).  Thank you for your support!                *\r
22     *                                                                         *\r
23     ***************************************************************************\r
24 \r
25     This file is part of the FreeRTOS distribution.\r
26 \r
27     FreeRTOS is free software; you can redistribute it and/or modify it under\r
28     the terms of the GNU General Public License (version 2) as published by the\r
29     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
30     ***NOTE*** The exception to the GPL is included to allow you to distribute\r
31     a combined work that includes FreeRTOS without being obliged to provide the\r
32     source code for proprietary components outside of the FreeRTOS kernel.\r
33     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT\r
34     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or\r
35     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
36     more details. You should have received a copy of the GNU General Public \r
37     License and the FreeRTOS license exception along with FreeRTOS; if not it \r
38     can be viewed here: http://www.freertos.org/a00114.html and also obtained \r
39     by writing to Richard Barry, contact details for whom are available on the\r
40     FreeRTOS WEB site.\r
41 \r
42     1 tab == 4 spaces!\r
43 \r
44     http://www.FreeRTOS.org - Documentation, latest information, license and\r
45     contact details.\r
46 \r
47     http://www.SafeRTOS.com - A version that is certified for use in safety\r
48     critical systems.\r
49 \r
50     http://www.OpenRTOS.com - Commercial support, development, porting,\r
51     licensing and training services.\r
52 */\r
53 \r
54 \r
55 /*-----------------------------------------------------------\r
56  * Components that can be compiled to either ARM or THUMB mode are\r
57  * contained in port.c  The ISR routines, which can only be compiled\r
58  * to ARM mode, are contained in this file.\r
59  *----------------------------------------------------------*/\r
60 \r
61 /*\r
62         Changes from V3.2.4\r
63 \r
64         + The assembler statements are now included in a single asm block rather\r
65           than each line having its own asm block.\r
66 */\r
67 \r
68 /* Scheduler includes. */\r
69 #include "FreeRTOS.h"\r
70 #include "task.h"\r
71 \r
72 #include "AT91SAM7X256.h"\r
73 \r
74 /* Constants required to handle interrupts. */\r
75 #define portTIMER_MATCH_ISR_BIT         ( ( unsigned char ) 0x01 )\r
76 #define portCLEAR_VIC_INTERRUPT         ( ( unsigned long ) 0 )\r
77 \r
78 /* Constants required to handle critical sections. */\r
79 #define portNO_CRITICAL_NESTING         ( ( unsigned long ) 0 )\r
80 volatile unsigned long ulCriticalNesting = 9999UL;\r
81 \r
82 /*-----------------------------------------------------------*/\r
83 \r
84 /* ISR to handle manual context switches (from a call to taskYIELD()). */\r
85 void vPortYieldProcessor( void ) __attribute__((interrupt("SWI"), naked));\r
86 \r
87 /* \r
88  * The scheduler can only be started from ARM mode, hence the inclusion of this\r
89  * function here.\r
90  */\r
91 void vPortISRStartFirstTask( void );\r
92 /*-----------------------------------------------------------*/\r
93 \r
94 void vPortISRStartFirstTask( void )\r
95 {\r
96         /* Simply start the scheduler.  This is included here as it can only be\r
97         called from ARM mode. */\r
98         portRESTORE_CONTEXT();\r
99 }\r
100 /*-----------------------------------------------------------*/\r
101 \r
102 /*\r
103  * Called by portYIELD() or taskYIELD() to manually force a context switch.\r
104  *\r
105  * When a context switch is performed from the task level the saved task \r
106  * context is made to look as if it occurred from within the tick ISR.  This\r
107  * way the same restore context function can be used when restoring the context\r
108  * saved from the ISR or that saved from a call to vPortYieldProcessor.\r
109  */\r
110 void vPortYieldProcessor( void )\r
111 {\r
112         /* Within an IRQ ISR the link register has an offset from the true return \r
113         address, but an SWI ISR does not.  Add the offset manually so the same \r
114         ISR return code can be used in both cases. */\r
115         asm volatile ( "ADD             LR, LR, #4" );\r
116 \r
117         /* Perform the context switch.  First save the context of the current task. */\r
118         portSAVE_CONTEXT();\r
119 \r
120         /* Find the highest priority task that is ready to run. */\r
121         vTaskSwitchContext();\r
122 \r
123         /* Restore the context of the new task. */\r
124         portRESTORE_CONTEXT();  \r
125 }\r
126 /*-----------------------------------------------------------*/\r
127 \r
128 /* \r
129  * The ISR used for the scheduler tick depends on whether the cooperative or\r
130  * the preemptive scheduler is being used.\r
131  */\r
132 \r
133 #if configUSE_PREEMPTION == 0\r
134 \r
135         /* The cooperative scheduler requires a normal IRQ service routine to \r
136         simply increment the system tick. */\r
137         void vNonPreemptiveTick( void ) __attribute__ ((interrupt ("IRQ")));\r
138         void vNonPreemptiveTick( void )\r
139         {               \r
140                 unsigned long ulDummy;\r
141                 \r
142                 /* Increment the tick count - which may wake some tasks but as the\r
143                 preemptive scheduler is not being used any woken task is not given\r
144                 processor time no matter what its priority. */\r
145                 vTaskIncrementTick();\r
146                 \r
147                 /* Clear the PIT interrupt. */\r
148                 ulDummy = AT91C_BASE_PITC->PITC_PIVR;\r
149                 \r
150                 /* End the interrupt in the AIC. */\r
151                 AT91C_BASE_AIC->AIC_EOICR = ulDummy;\r
152         }\r
153 \r
154 #else\r
155 \r
156         /* The preemptive scheduler is defined as "naked" as the full context is\r
157         saved on entry as part of the context switch. */\r
158         void vPreemptiveTick( void ) __attribute__((naked));\r
159         void vPreemptiveTick( void )\r
160         {\r
161                 /* Save the context of the current task. */\r
162                 portSAVE_CONTEXT();                     \r
163 \r
164                 /* Increment the tick count - this may wake a task. */\r
165                 vTaskIncrementTick();\r
166 \r
167                 /* Find the highest priority task that is ready to run. */\r
168                 vTaskSwitchContext();\r
169                 \r
170                 /* End the interrupt in the AIC. */\r
171                 AT91C_BASE_AIC->AIC_EOICR = AT91C_BASE_PITC->PITC_PIVR;;\r
172                 \r
173                 portRESTORE_CONTEXT();\r
174         }\r
175 \r
176 #endif\r
177 /*-----------------------------------------------------------*/\r
178 \r
179 /*\r
180  * The interrupt management utilities can only be called from ARM mode.  When\r
181  * THUMB_INTERWORK is defined the utilities are defined as functions here to\r
182  * ensure a switch to ARM mode.  When THUMB_INTERWORK is not defined then\r
183  * the utilities are defined as macros in portmacro.h - as per other ports.\r
184  */\r
185 void vPortDisableInterruptsFromThumb( void ) __attribute__ ((naked));\r
186 void vPortEnableInterruptsFromThumb( void ) __attribute__ ((naked));\r
187 \r
188 void vPortDisableInterruptsFromThumb( void )\r
189 {\r
190         asm volatile ( \r
191                 "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                                                     */\r
192                 "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                                            */\r
193                 "ORR    R0, R0, #0xC0   \n\t"   /* Disable IRQ, FIQ.                                            */\r
194                 "MSR    CPSR, R0                \n\t"   /* Write back modified value.                           */\r
195                 "LDMIA  SP!, {R0}               \n\t"   /* Pop R0.                                                                      */\r
196                 "BX             R14" );                                 /* Return back to thumb.                                        */\r
197 }\r
198                 \r
199 void vPortEnableInterruptsFromThumb( void )\r
200 {\r
201         asm volatile ( \r
202                 "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                                                     */      \r
203                 "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                                            */      \r
204                 "BIC    R0, R0, #0xC0   \n\t"   /* Enable IRQ, FIQ.                                                     */      \r
205                 "MSR    CPSR, R0                \n\t"   /* Write back modified value.                           */      \r
206                 "LDMIA  SP!, {R0}               \n\t"   /* Pop R0.                                                                      */\r
207                 "BX             R14" );                                 /* Return back to thumb.                                        */\r
208 }\r
209 \r
210 \r
211 /* The code generated by the GCC compiler uses the stack in different ways at\r
212 different optimisation levels.  The interrupt flags can therefore not always\r
213 be saved to the stack.  Instead the critical section nesting level is stored\r
214 in a variable, which is then saved as part of the stack context. */\r
215 void vPortEnterCritical( void )\r
216 {\r
217         /* Disable interrupts as per portDISABLE_INTERRUPTS();                                                  */\r
218         asm volatile ( \r
219                 "STMDB  SP!, {R0}                       \n\t"   /* Push R0.                                                             */\r
220                 "MRS    R0, CPSR                        \n\t"   /* Get CPSR.                                                    */\r
221                 "ORR    R0, R0, #0xC0           \n\t"   /* Disable IRQ, FIQ.                                    */\r
222                 "MSR    CPSR, R0                        \n\t"   /* Write back modified value.                   */\r
223                 "LDMIA  SP!, {R0}" );                           /* Pop R0.                                                              */\r
224 \r
225         /* Now interrupts are disabled ulCriticalNesting can be accessed \r
226         directly.  Increment ulCriticalNesting to keep a count of how many times\r
227         portENTER_CRITICAL() has been called. */\r
228         ulCriticalNesting++;\r
229 }\r
230 \r
231 void vPortExitCritical( void )\r
232 {\r
233         if( ulCriticalNesting > portNO_CRITICAL_NESTING )\r
234         {\r
235                 /* Decrement the nesting count as we are leaving a critical section. */\r
236                 ulCriticalNesting--;\r
237 \r
238                 /* If the nesting level has reached zero then interrupts should be\r
239                 re-enabled. */\r
240                 if( ulCriticalNesting == portNO_CRITICAL_NESTING )\r
241                 {\r
242                         /* Enable interrupts as per portEXIT_CRITICAL().                                        */\r
243                         asm volatile ( \r
244                                 "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                             */      \r
245                                 "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                    */      \r
246                                 "BIC    R0, R0, #0xC0   \n\t"   /* Enable IRQ, FIQ.                             */      \r
247                                 "MSR    CPSR, R0                \n\t"   /* Write back modified value.   */      \r
248                                 "LDMIA  SP!, {R0}" );                   /* Pop R0.                                              */\r
249                 }\r
250         }\r
251 }\r
252 \r