]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c
Update version number to 9.0.0rc2.
[freertos] / FreeRTOS / Source / portable / GCC / ARM7_LPC23xx / portISR.c
1 /*\r
2     FreeRTOS V9.0.0rc2 - Copyright (C) 2016 Real Time Engineers Ltd.\r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     This file is part of the FreeRTOS distribution.\r
8 \r
9     FreeRTOS is free software; you can redistribute it and/or modify it under\r
10     the terms of the GNU General Public License (version 2) as published by the\r
11     Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
12 \r
13     ***************************************************************************\r
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
16     >>!   obliged to provide the source code for proprietary components     !<<\r
17     >>!   outside of the FreeRTOS kernel.                                   !<<\r
18     ***************************************************************************\r
19 \r
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
23     link: http://www.freertos.org/a00114.html\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    FreeRTOS provides completely free yet professionally developed,    *\r
28      *    robust, strictly quality controlled, supported, and cross          *\r
29      *    platform software that is more than just the market leader, it     *\r
30      *    is the industry's de facto standard.                               *\r
31      *                                                                       *\r
32      *    Help yourself get started quickly while simultaneously helping     *\r
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
34      *    tutorial book, reference manual, or both:                          *\r
35      *    http://www.FreeRTOS.org/Documentation                              *\r
36      *                                                                       *\r
37     ***************************************************************************\r
38 \r
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
40     the FAQ page "My application does not run, what could be wrong?".  Have you\r
41     defined configASSERT()?\r
42 \r
43     http://www.FreeRTOS.org/support - In return for receiving this top quality\r
44     embedded software for free we request you assist our global community by\r
45     participating in the support forum.\r
46 \r
47     http://www.FreeRTOS.org/training - Investing in training allows your team to\r
48     be as productive as possible as early as possible.  Now you can receive\r
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
50     Ltd, and the world's leading authority on the world's leading RTOS.\r
51 \r
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
55 \r
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
58 \r
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
61     licenses offer ticketed support, indemnification and commercial middleware.\r
62 \r
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
64     engineered and independently SIL3 certified version for use in safety and\r
65     mission critical applications that require provable dependability.\r
66 \r
67     1 tab == 4 spaces!\r
68 */\r
69 \r
70 \r
71 /*-----------------------------------------------------------\r
72  * Components that can be compiled to either ARM or THUMB mode are\r
73  * contained in port.c  The ISR routines, which can only be compiled\r
74  * to ARM mode, are contained in this file.\r
75  *----------------------------------------------------------*/\r
76 \r
77 /* Scheduler includes. */\r
78 #include "FreeRTOS.h"\r
79 #include "task.h"\r
80 \r
81 /* Constants required to handle interrupts. */\r
82 #define portTIMER_MATCH_ISR_BIT         ( ( uint8_t ) 0x01 )\r
83 #define portCLEAR_VIC_INTERRUPT         ( ( uint32_t ) 0 )\r
84 \r
85 /* Constants required to handle critical sections. */\r
86 #define portNO_CRITICAL_NESTING         ( ( uint32_t ) 0 )\r
87 volatile uint32_t ulCriticalNesting = 9999UL;\r
88 \r
89 /*-----------------------------------------------------------*/\r
90 \r
91 /* ISR to handle manual context switches (from a call to taskYIELD()). */\r
92 void vPortYieldProcessor( void ) __attribute__((interrupt("SWI"), naked));\r
93 \r
94 /* \r
95  * The scheduler can only be started from ARM mode, hence the inclusion of this\r
96  * function here.\r
97  */\r
98 void vPortISRStartFirstTask( void );\r
99 /*-----------------------------------------------------------*/\r
100 \r
101 void vPortISRStartFirstTask( void )\r
102 {\r
103         /* Simply start the scheduler.  This is included here as it can only be\r
104         called from ARM mode. */\r
105         portRESTORE_CONTEXT();\r
106 }\r
107 /*-----------------------------------------------------------*/\r
108 \r
109 /*\r
110  * Called by portYIELD() or taskYIELD() to manually force a context switch.\r
111  *\r
112  * When a context switch is performed from the task level the saved task \r
113  * context is made to look as if it occurred from within the tick ISR.  This\r
114  * way the same restore context function can be used when restoring the context\r
115  * saved from the ISR or that saved from a call to vPortYieldProcessor.\r
116  */\r
117 void vPortYieldProcessor( void )\r
118 {\r
119         /* Within an IRQ ISR the link register has an offset from the true return \r
120         address, but an SWI ISR does not.  Add the offset manually so the same \r
121         ISR return code can be used in both cases. */\r
122         __asm volatile ( "ADD           LR, LR, #4" );\r
123 \r
124         /* Perform the context switch.  First save the context of the current task. */\r
125         portSAVE_CONTEXT();\r
126 \r
127         /* Find the highest priority task that is ready to run. */\r
128         __asm volatile( "bl                     vTaskSwitchContext" );\r
129 \r
130         /* Restore the context of the new task. */\r
131         portRESTORE_CONTEXT();  \r
132 }\r
133 /*-----------------------------------------------------------*/\r
134 \r
135 /* \r
136  * The ISR used for the scheduler tick depends on whether the cooperative or\r
137  * the preemptive scheduler is being used.\r
138  */\r
139 \r
140 \r
141 #if configUSE_PREEMPTION == 0\r
142 \r
143         /* The cooperative scheduler requires a normal IRQ service routine to \r
144         simply increment the system tick. */\r
145         void vNonPreemptiveTick( void ) __attribute__ ((interrupt ("IRQ")));\r
146         void vNonPreemptiveTick( void )\r
147         {       \r
148                 xTaskIncrementTick();\r
149                 T0IR = 2;\r
150                 VICVectAddr = portCLEAR_VIC_INTERRUPT;\r
151         }\r
152 \r
153 #else\r
154 \r
155         /* The preemptive scheduler is defined as "naked" as the full context is\r
156         saved on entry as part of the context switch. */\r
157         void vPreemptiveTick( void ) __attribute__((naked));\r
158         void vPreemptiveTick( void )\r
159         {\r
160                 /* Save the context of the interrupted task. */\r
161                 portSAVE_CONTEXT();     \r
162 \r
163                 /* Increment the RTOS tick count, then look for the highest priority \r
164                 task that is ready to run. */\r
165                 __asm volatile\r
166                 (\r
167                         "       bl xTaskIncrementTick   \t\n" \\r
168                         "       cmp r0, #0                              \t\n" \\r
169                         "       beq SkipContextSwitch   \t\n" \\r
170                         "       bl vTaskSwitchContext   \t\n" \\r
171                         "SkipContextSwitch:                     \t\n"\r
172                 );\r
173 \r
174                 /* Ready for the next interrupt. */\r
175                 T0IR = 2;\r
176                 VICVectAddr = portCLEAR_VIC_INTERRUPT;\r
177                 \r
178                 /* Restore the context of the new task. */\r
179                 portRESTORE_CONTEXT();\r
180         }\r
181 \r
182 #endif\r
183 /*-----------------------------------------------------------*/\r
184 \r
185 /*\r
186  * The interrupt management utilities can only be called from ARM mode.  When\r
187  * THUMB_INTERWORK is defined the utilities are defined as functions here to\r
188  * ensure a switch to ARM mode.  When THUMB_INTERWORK is not defined then\r
189  * the utilities are defined as macros in portmacro.h - as per other ports.\r
190  */\r
191 #ifdef THUMB_INTERWORK\r
192 \r
193         void vPortDisableInterruptsFromThumb( void ) __attribute__ ((naked));\r
194         void vPortEnableInterruptsFromThumb( void ) __attribute__ ((naked));\r
195 \r
196         void vPortDisableInterruptsFromThumb( void )\r
197         {\r
198                 __asm volatile ( \r
199                         "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                                                     */\r
200                         "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                                            */\r
201                         "ORR    R0, R0, #0xC0   \n\t"   /* Disable IRQ, FIQ.                                            */\r
202                         "MSR    CPSR, R0                \n\t"   /* Write back modified value.                           */\r
203                         "LDMIA  SP!, {R0}               \n\t"   /* Pop R0.                                                                      */\r
204                         "BX             R14" );                                 /* Return back to thumb.                                        */\r
205         }\r
206                         \r
207         void vPortEnableInterruptsFromThumb( void )\r
208         {\r
209                 __asm volatile ( \r
210                         "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                                                     */      \r
211                         "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                                            */      \r
212                         "BIC    R0, R0, #0xC0   \n\t"   /* Enable IRQ, FIQ.                                                     */      \r
213                         "MSR    CPSR, R0                \n\t"   /* Write back modified value.                           */      \r
214                         "LDMIA  SP!, {R0}               \n\t"   /* Pop R0.                                                                      */\r
215                         "BX             R14" );                                 /* Return back to thumb.                                        */\r
216         }\r
217 \r
218 #endif /* THUMB_INTERWORK */\r
219 \r
220 /* The code generated by the GCC compiler uses the stack in different ways at\r
221 different optimisation levels.  The interrupt flags can therefore not always\r
222 be saved to the stack.  Instead the critical section nesting level is stored\r
223 in a variable, which is then saved as part of the stack context. */\r
224 void vPortEnterCritical( void )\r
225 {\r
226         /* Disable interrupts as per portDISABLE_INTERRUPTS();                                                  */\r
227         __asm volatile ( \r
228                 "STMDB  SP!, {R0}                       \n\t"   /* Push R0.                                                             */\r
229                 "MRS    R0, CPSR                        \n\t"   /* Get CPSR.                                                    */\r
230                 "ORR    R0, R0, #0xC0           \n\t"   /* Disable IRQ, FIQ.                                    */\r
231                 "MSR    CPSR, R0                        \n\t"   /* Write back modified value.                   */\r
232                 "LDMIA  SP!, {R0}" );                           /* Pop R0.                                                              */\r
233 \r
234         /* Now interrupts are disabled ulCriticalNesting can be accessed \r
235         directly.  Increment ulCriticalNesting to keep a count of how many times\r
236         portENTER_CRITICAL() has been called. */\r
237         ulCriticalNesting++;\r
238 }\r
239 \r
240 void vPortExitCritical( void )\r
241 {\r
242         if( ulCriticalNesting > portNO_CRITICAL_NESTING )\r
243         {\r
244                 /* Decrement the nesting count as we are leaving a critical section. */\r
245                 ulCriticalNesting--;\r
246 \r
247                 /* If the nesting level has reached zero then interrupts should be\r
248                 re-enabled. */\r
249                 if( ulCriticalNesting == portNO_CRITICAL_NESTING )\r
250                 {\r
251                         /* Enable interrupts as per portEXIT_CRITICAL().                                        */\r
252                         __asm volatile ( \r
253                                 "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                             */      \r
254                                 "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                    */      \r
255                                 "BIC    R0, R0, #0xC0   \n\t"   /* Enable IRQ, FIQ.                             */      \r
256                                 "MSR    CPSR, R0                \n\t"   /* Write back modified value.   */      \r
257                                 "LDMIA  SP!, {R0}" );                   /* Pop R0.                                              */\r
258                 }\r
259         }\r
260 }\r