]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/ARM7_AT91FR40008/portmacro.h
Update version number to 8.1.2 after moving the defaulting of configUSE_PORT_OPTIMISE...
[freertos] / FreeRTOS / Source / portable / GCC / ARM7_AT91FR40008 / portmacro.h
1 /*\r
2     FreeRTOS V8.1.2 - Copyright (C) 2014 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     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS provides completely free yet professionally developed,    *\r
10      *    robust, strictly quality controlled, supported, and cross          *\r
11      *    platform software that has become a de facto standard.             *\r
12      *                                                                       *\r
13      *    Help yourself get started quickly and support the FreeRTOS         *\r
14      *    project by purchasing a FreeRTOS tutorial book, reference          *\r
15      *    manual, or both from: http://www.FreeRTOS.org/Documentation        *\r
16      *                                                                       *\r
17      *    Thank you!                                                         *\r
18      *                                                                       *\r
19     ***************************************************************************\r
20 \r
21     This file is part of the FreeRTOS distribution.\r
22 \r
23     FreeRTOS is free software; you can redistribute it and/or modify it under\r
24     the terms of the GNU General Public License (version 2) as published by the\r
25     Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.\r
26 \r
27     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
28     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
29     >>!   obliged to provide the source code for proprietary components     !<<\r
30     >>!   outside of the FreeRTOS kernel.                                   !<<\r
31 \r
32     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
33     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
34     FOR A PARTICULAR PURPOSE.  Full license text is available from the following\r
35     link: http://www.freertos.org/a00114.html\r
36 \r
37     1 tab == 4 spaces!\r
38 \r
39     ***************************************************************************\r
40      *                                                                       *\r
41      *    Having a problem?  Start by reading the FAQ "My application does   *\r
42      *    not run, what could be wrong?"                                     *\r
43      *                                                                       *\r
44      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
45      *                                                                       *\r
46     ***************************************************************************\r
47 \r
48     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
49     license and Real Time Engineers Ltd. contact details.\r
50 \r
51     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
52     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
53     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
54 \r
55     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
56     Integrity Systems to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
57     licenses offer ticketed support, indemnification and middleware.\r
58 \r
59     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
60     engineered and independently SIL3 certified version for use in safety and\r
61     mission critical applications that require provable dependability.\r
62 \r
63     1 tab == 4 spaces!\r
64 */\r
65 \r
66 /*\r
67         Changes from V3.2.3\r
68 \r
69         + Modified portENTER_SWITCHING_ISR() to allow use with GCC V4.0.1.\r
70 \r
71         Changes from V3.2.4\r
72 \r
73         + Removed the use of the %0 parameter within the assembler macros and\r
74           replaced them with hard coded registers.  This will ensure the\r
75           assembler does not select the link register as the temp register as\r
76           was occasionally happening previously.\r
77 \r
78         + The assembler statements are now included in a single asm block rather\r
79           than each line having its own asm block.\r
80 \r
81         Changes from V4.5.0\r
82 \r
83         + Removed the portENTER_SWITCHING_ISR() and portEXIT_SWITCHING_ISR() macros\r
84           and replaced them with portYIELD_FROM_ISR() macro.  Application code\r
85           should now make use of the portSAVE_CONTEXT() and portRESTORE_CONTEXT()\r
86           macros as per the V4.5.1 demo code.\r
87 */\r
88 \r
89 #ifndef PORTMACRO_H\r
90 #define PORTMACRO_H\r
91 \r
92 #ifdef __cplusplus\r
93 extern "C" {\r
94 #endif\r
95 \r
96 /*-----------------------------------------------------------\r
97  * Port specific definitions.\r
98  *\r
99  * The settings in this file configure FreeRTOS correctly for the\r
100  * given hardware and compiler.\r
101  *\r
102  * These settings should not be altered.\r
103  *-----------------------------------------------------------\r
104  */\r
105 \r
106 /* Type definitions. */\r
107 #define portCHAR                char\r
108 #define portFLOAT               float\r
109 #define portDOUBLE              double\r
110 #define portLONG                long\r
111 #define portSHORT               short\r
112 #define portSTACK_TYPE  uint32_t\r
113 #define portBASE_TYPE   long\r
114 \r
115 typedef portSTACK_TYPE StackType_t;\r
116 typedef long BaseType_t;\r
117 typedef unsigned long UBaseType_t;\r
118 \r
119 #if( configUSE_16_BIT_TICKS == 1 )\r
120         typedef uint16_t TickType_t;\r
121         #define portMAX_DELAY ( TickType_t ) 0xffff\r
122 #else\r
123         typedef uint32_t TickType_t;\r
124         #define portMAX_DELAY ( TickType_t ) 0xffffffffUL\r
125 #endif\r
126 /*-----------------------------------------------------------*/\r
127 \r
128 /* Hardware specifics. */\r
129 #define portSTACK_GROWTH                        ( -1 )\r
130 #define portTICK_PERIOD_MS                      ( ( TickType_t ) 1000 / configTICK_RATE_HZ )\r
131 #define portBYTE_ALIGNMENT                      8\r
132 #define portYIELD()                                     asm volatile ( "SWI 0" )\r
133 #define portNOP()                                       asm volatile ( "NOP" )\r
134 \r
135 /*\r
136  * These define the timer to use for generating the tick interrupt.\r
137  * They are put in this file so they can be shared between "port.c"\r
138  * and "portisr.c".\r
139  */\r
140 #define portTIMER_REG_BASE_PTR          AT91C_BASE_TC0\r
141 #define portTIMER_CLK_ENABLE_BIT        AT91C_PS_TC0\r
142 #define portTIMER_AIC_CHANNEL           ( ( uint32_t ) 4 )\r
143 /*-----------------------------------------------------------*/\r
144 \r
145 /* Task utilities. */\r
146 \r
147 /*\r
148  * portRESTORE_CONTEXT, portRESTORE_CONTEXT, portENTER_SWITCHING_ISR\r
149  * and portEXIT_SWITCHING_ISR can only be called from ARM mode, but\r
150  * are included here for efficiency.  An attempt to call one from\r
151  * THUMB mode code will result in a compile time error.\r
152  */\r
153 \r
154 #define portRESTORE_CONTEXT()                                                                                   \\r
155 {                                                                                                                                               \\r
156 extern volatile void * volatile pxCurrentTCB;                                                   \\r
157 extern volatile uint32_t ulCriticalNesting;                                     \\r
158                                                                                                                                                 \\r
159         /* Set the LR to the task stack. */                                                                     \\r
160         asm volatile (                                                                                                          \\r
161         "LDR            R0, =pxCurrentTCB                                                               \n\t"   \\r
162         "LDR            R0, [R0]                                                                                \n\t"   \\r
163         "LDR            LR, [R0]                                                                                \n\t"   \\r
164                                                                                                                                                 \\r
165         /* The critical nesting depth is the first item on the stack. */        \\r
166         /* Load it into the ulCriticalNesting variable. */                                      \\r
167         "LDR            R0, =ulCriticalNesting                                                  \n\t"   \\r
168         "LDMFD  LR!, {R1}                                                                                       \n\t"   \\r
169         "STR            R1, [R0]                                                                                \n\t"   \\r
170                                                                                                                                                 \\r
171         /* Get the SPSR from the stack. */                                                                      \\r
172         "LDMFD  LR!, {R0}                                                                                       \n\t"   \\r
173         "MSR            SPSR, R0                                                                                \n\t"   \\r
174                                                                                                                                                 \\r
175         /* Restore all system mode registers for the task. */                           \\r
176         "LDMFD  LR, {R0-R14}^                                                                           \n\t"   \\r
177         "NOP                                                                                                            \n\t"   \\r
178                                                                                                                                                 \\r
179         /* Restore the return address. */                                                                       \\r
180         "LDR            LR, [LR, #+60]                                                                  \n\t"   \\r
181                                                                                                                                                 \\r
182         /* And return - correcting the offset in the LR to obtain the */        \\r
183         /* correct address. */                                                                                          \\r
184         "SUBS   PC, LR, #4                                                                                      \n\t"   \\r
185         );                                                                                                                                      \\r
186         ( void ) ulCriticalNesting;                                                                                     \\r
187         ( void ) pxCurrentTCB;                                                                                          \\r
188 }\r
189 /*-----------------------------------------------------------*/\r
190 \r
191 #define portSAVE_CONTEXT()                                                                                              \\r
192 {                                                                                                                                               \\r
193 extern volatile void * volatile pxCurrentTCB;                                                   \\r
194 extern volatile uint32_t ulCriticalNesting;                                     \\r
195                                                                                                                                                 \\r
196         /* Push R0 as we are going to use the register. */                                      \\r
197         asm volatile (                                                                                                          \\r
198         "STMDB  SP!, {R0}                                                                                       \n\t"   \\r
199                                                                                                                                                 \\r
200         /* Set R0 to point to the task stack pointer. */                                        \\r
201         "STMDB  SP,{SP}^                                                                                        \n\t"   \\r
202         "NOP                                                                                                            \n\t"   \\r
203         "SUB    SP, SP, #4                                                                                      \n\t"   \\r
204         "LDMIA  SP!,{R0}                                                                                        \n\t"   \\r
205                                                                                                                                                 \\r
206         /* Push the return address onto the stack. */                                           \\r
207         "STMDB  R0!, {LR}                                                                                       \n\t"   \\r
208                                                                                                                                                 \\r
209         /* Now we have saved LR we can use it instead of R0. */                         \\r
210         "MOV    LR, R0                                                                                          \n\t"   \\r
211                                                                                                                                                 \\r
212         /* Pop R0 so we can save it onto the system mode stack. */                      \\r
213         "LDMIA  SP!, {R0}                                                                                       \n\t"   \\r
214                                                                                                                                                 \\r
215         /* Push all the system mode registers onto the task stack. */           \\r
216         "STMDB  LR,{R0-LR}^                                                                                     \n\t"   \\r
217         "NOP                                                                                                            \n\t"   \\r
218         "SUB    LR, LR, #60                                                                                     \n\t"   \\r
219                                                                                                                                                 \\r
220         /* Push the SPSR onto the task stack. */                                                        \\r
221         "MRS    R0, SPSR                                                                                        \n\t"   \\r
222         "STMDB  LR!, {R0}                                                                                       \n\t"   \\r
223                                                                                                                                                 \\r
224         "LDR    R0, =ulCriticalNesting                                                          \n\t"   \\r
225         "LDR    R0, [R0]                                                                                        \n\t"   \\r
226         "STMDB  LR!, {R0}                                                                                       \n\t"   \\r
227                                                                                                                                                 \\r
228         /* Store the new top of stack for the task. */                                          \\r
229         "LDR    R0, =pxCurrentTCB                                                                       \n\t"   \\r
230         "LDR    R0, [R0]                                                                                        \n\t"   \\r
231         "STR    LR, [R0]                                                                                        \n\t"   \\r
232         );                                                                                                                                      \\r
233         ( void ) ulCriticalNesting;                                                                                     \\r
234         ( void ) pxCurrentTCB;                                                                                          \\r
235 }\r
236 \r
237 #define portYIELD_FROM_ISR() vTaskSwitchContext()\r
238 \r
239 /* Critical section handling. */\r
240 \r
241 /*\r
242  * The interrupt management utilities can only be called from ARM mode.  When\r
243  * THUMB_INTERWORK is defined the utilities are defined as functions in\r
244  * portISR.c to ensure a switch to ARM mode.  When THUMB_INTERWORK is not\r
245  * defined then the utilities are defined as macros here - as per other ports.\r
246  */\r
247 \r
248 #ifdef THUMB_INTERWORK\r
249 \r
250         extern void vPortDisableInterruptsFromThumb( void ) __attribute__ ((naked));\r
251         extern void vPortEnableInterruptsFromThumb( void ) __attribute__ ((naked));\r
252 \r
253         #define portDISABLE_INTERRUPTS()        vPortDisableInterruptsFromThumb()\r
254         #define portENABLE_INTERRUPTS()         vPortEnableInterruptsFromThumb()\r
255 \r
256 #else\r
257 \r
258         #define portDISABLE_INTERRUPTS()                                                                                        \\r
259                 asm volatile (                                                                                                                  \\r
260                         "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                             */      \\r
261                         "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                    */      \\r
262                         "ORR    R0, R0, #0xC0   \n\t"   /* Disable IRQ, FIQ.                    */      \\r
263                         "MSR    CPSR, R0                \n\t"   /* Write back modified value.   */      \\r
264                         "LDMIA  SP!, {R0}                       " )     /* Pop R0.                                              */\r
265 \r
266         #define portENABLE_INTERRUPTS()                                                                                         \\r
267                 asm volatile (                                                                                                                  \\r
268                         "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                             */      \\r
269                         "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                    */      \\r
270                         "BIC    R0, R0, #0xC0   \n\t"   /* Enable IRQ, FIQ.                             */      \\r
271                         "MSR    CPSR, R0                \n\t"   /* Write back modified value.   */      \\r
272                         "LDMIA  SP!, {R0}                       " )     /* Pop R0.                                              */\r
273 \r
274 #endif /* THUMB_INTERWORK */\r
275 \r
276 extern void vPortEnterCritical( void );\r
277 extern void vPortExitCritical( void );\r
278 \r
279 #define portENTER_CRITICAL()            vPortEnterCritical();\r
280 #define portEXIT_CRITICAL()                     vPortExitCritical();\r
281 \r
282 /*-----------------------------------------------------------*/\r
283 \r
284 /* Task function macros as described on the FreeRTOS.org WEB site. */\r
285 #define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
286 #define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
287 \r
288 #ifdef __cplusplus\r
289 }\r
290 #endif\r
291 \r
292 #endif /* PORTMACRO_H */\r
293 \r