]> git.sur5r.net Git - freertos/blob - FreeRTOS/Source/portable/GCC/ARM7_LPC2000/portmacro.h
c193a8bf2af602ef2c6c26cdfa76675d18e4164c
[freertos] / FreeRTOS / Source / portable / GCC / ARM7_LPC2000 / portmacro.h
1 /*\r
2     FreeRTOS V8.2.3 - Copyright (C) 2015 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 #ifndef PORTMACRO_H\r
71 #define PORTMACRO_H\r
72 \r
73 #ifdef __cplusplus\r
74 extern "C" {\r
75 #endif\r
76 \r
77 /*-----------------------------------------------------------\r
78  * Port specific definitions.\r
79  *\r
80  * The settings in this file configure FreeRTOS correctly for the\r
81  * given hardware and compiler.\r
82  *\r
83  * These settings should not be altered.\r
84  *-----------------------------------------------------------\r
85  */\r
86 \r
87 /* Type definitions. */\r
88 #define portCHAR                char\r
89 #define portFLOAT               float\r
90 #define portDOUBLE              double\r
91 #define portLONG                long\r
92 #define portSHORT               short\r
93 #define portSTACK_TYPE  uint32_t\r
94 #define portBASE_TYPE   portLONG\r
95 \r
96 typedef portSTACK_TYPE StackType_t;\r
97 typedef long BaseType_t;\r
98 typedef unsigned long UBaseType_t;\r
99 \r
100 #if( configUSE_16_BIT_TICKS == 1 )\r
101         typedef uint16_t TickType_t;\r
102         #define portMAX_DELAY ( TickType_t ) 0xffff\r
103 #else\r
104         typedef uint32_t TickType_t;\r
105         #define portMAX_DELAY ( TickType_t ) 0xffffffffUL\r
106 #endif\r
107 /*-----------------------------------------------------------*/\r
108 \r
109 /* Architecture specifics. */\r
110 #define portSTACK_GROWTH                        ( -1 )\r
111 #define portTICK_PERIOD_MS                      ( ( TickType_t ) 1000 / configTICK_RATE_HZ )\r
112 #define portBYTE_ALIGNMENT                      8\r
113 #define portNOP()                                       __asm volatile ( "NOP" );\r
114 /*-----------------------------------------------------------*/\r
115 \r
116 \r
117 /* Scheduler utilities. */\r
118 \r
119 /*\r
120  * portRESTORE_CONTEXT, portRESTORE_CONTEXT, portENTER_SWITCHING_ISR\r
121  * and portEXIT_SWITCHING_ISR can only be called from ARM mode, but\r
122  * are included here for efficiency.  An attempt to call one from\r
123  * THUMB mode code will result in a compile time error.\r
124  */\r
125 \r
126 #define portRESTORE_CONTEXT()                                                                                   \\r
127 {                                                                                                                                               \\r
128 extern volatile void * volatile pxCurrentTCB;                                                   \\r
129 extern volatile uint32_t ulCriticalNesting;                                     \\r
130                                                                                                                                                 \\r
131         /* Set the LR to the task stack. */                                                                     \\r
132         __asm volatile (                                                                                                        \\r
133         "LDR            R0, =pxCurrentTCB                                                               \n\t"   \\r
134         "LDR            R0, [R0]                                                                                \n\t"   \\r
135         "LDR            LR, [R0]                                                                                \n\t"   \\r
136                                                                                                                                                 \\r
137         /* The critical nesting depth is the first item on the stack. */        \\r
138         /* Load it into the ulCriticalNesting variable. */                                      \\r
139         "LDR            R0, =ulCriticalNesting                                                  \n\t"   \\r
140         "LDMFD  LR!, {R1}                                                                                       \n\t"   \\r
141         "STR            R1, [R0]                                                                                \n\t"   \\r
142                                                                                                                                                 \\r
143         /* Get the SPSR from the stack. */                                                                      \\r
144         "LDMFD  LR!, {R0}                                                                                       \n\t"   \\r
145         "MSR            SPSR, R0                                                                                \n\t"   \\r
146                                                                                                                                                 \\r
147         /* Restore all system mode registers for the task. */                           \\r
148         "LDMFD  LR, {R0-R14}^                                                                           \n\t"   \\r
149         "NOP                                                                                                            \n\t"   \\r
150                                                                                                                                                 \\r
151         /* Restore the return address. */                                                                       \\r
152         "LDR            LR, [LR, #+60]                                                                  \n\t"   \\r
153                                                                                                                                                 \\r
154         /* And return - correcting the offset in the LR to obtain the */        \\r
155         /* correct address. */                                                                                          \\r
156         "SUBS   PC, LR, #4                                                                                      \n\t"   \\r
157         );                                                                                                                                      \\r
158         ( void ) ulCriticalNesting;                                                                                     \\r
159         ( void ) pxCurrentTCB;                                                                                          \\r
160 }\r
161 /*-----------------------------------------------------------*/\r
162 \r
163 #define portSAVE_CONTEXT()                                                                                              \\r
164 {                                                                                                                                               \\r
165 extern volatile void * volatile pxCurrentTCB;                                                   \\r
166 extern volatile uint32_t ulCriticalNesting;                                     \\r
167                                                                                                                                                 \\r
168         /* Push R0 as we are going to use the register. */                                      \\r
169         __asm volatile (                                                                                                        \\r
170         "STMDB  SP!, {R0}                                                                                       \n\t"   \\r
171                                                                                                                                                 \\r
172         /* Set R0 to point to the task stack pointer. */                                        \\r
173         "STMDB  SP,{SP}^                                                                                        \n\t"   \\r
174         "NOP                                                                                                            \n\t"   \\r
175         "SUB    SP, SP, #4                                                                                      \n\t"   \\r
176         "LDMIA  SP!,{R0}                                                                                        \n\t"   \\r
177                                                                                                                                                 \\r
178         /* Push the return address onto the stack. */                                           \\r
179         "STMDB  R0!, {LR}                                                                                       \n\t"   \\r
180                                                                                                                                                 \\r
181         /* Now we have saved LR we can use it instead of R0. */                         \\r
182         "MOV    LR, R0                                                                                          \n\t"   \\r
183                                                                                                                                                 \\r
184         /* Pop R0 so we can save it onto the system mode stack. */                      \\r
185         "LDMIA  SP!, {R0}                                                                                       \n\t"   \\r
186                                                                                                                                                 \\r
187         /* Push all the system mode registers onto the task stack. */           \\r
188         "STMDB  LR,{R0-LR}^                                                                                     \n\t"   \\r
189         "NOP                                                                                                            \n\t"   \\r
190         "SUB    LR, LR, #60                                                                                     \n\t"   \\r
191                                                                                                                                                 \\r
192         /* Push the SPSR onto the task stack. */                                                        \\r
193         "MRS    R0, SPSR                                                                                        \n\t"   \\r
194         "STMDB  LR!, {R0}                                                                                       \n\t"   \\r
195                                                                                                                                                 \\r
196         "LDR    R0, =ulCriticalNesting                                                          \n\t"   \\r
197         "LDR    R0, [R0]                                                                                        \n\t"   \\r
198         "STMDB  LR!, {R0}                                                                                       \n\t"   \\r
199                                                                                                                                                 \\r
200         /* Store the new top of stack for the task. */                                          \\r
201         "LDR    R0, =pxCurrentTCB                                                                       \n\t"   \\r
202         "LDR    R0, [R0]                                                                                        \n\t"   \\r
203         "STR    LR, [R0]                                                                                        \n\t"   \\r
204         );                                                                                                                                      \\r
205         ( void ) ulCriticalNesting;                                                                                     \\r
206         ( void ) pxCurrentTCB;                                                                                          \\r
207 }\r
208 \r
209 extern void vTaskSwitchContext( void );\r
210 #define portYIELD_FROM_ISR()            vTaskSwitchContext()\r
211 #define portYIELD()                                     __asm volatile ( "SWI 0" )\r
212 /*-----------------------------------------------------------*/\r
213 \r
214 \r
215 /* Critical section management. */\r
216 \r
217 /*\r
218  * The interrupt management utilities can only be called from ARM mode.  When\r
219  * THUMB_INTERWORK is defined the utilities are defined as functions in\r
220  * portISR.c to ensure a switch to ARM mode.  When THUMB_INTERWORK is not\r
221  * defined then the utilities are defined as macros here - as per other ports.\r
222  */\r
223 \r
224 #ifdef THUMB_INTERWORK\r
225 \r
226         extern void vPortDisableInterruptsFromThumb( void ) __attribute__ ((naked));\r
227         extern void vPortEnableInterruptsFromThumb( void ) __attribute__ ((naked));\r
228 \r
229         #define portDISABLE_INTERRUPTS()        vPortDisableInterruptsFromThumb()\r
230         #define portENABLE_INTERRUPTS()         vPortEnableInterruptsFromThumb()\r
231 \r
232 #else\r
233 \r
234         #define portDISABLE_INTERRUPTS()                                                                                        \\r
235                 __asm volatile (                                                                                                                \\r
236                         "STMDB  SP!, {R0}               \n\t"   /* Push R0.                                             */      \\r
237                         "MRS    R0, CPSR                \n\t"   /* Get CPSR.                                    */      \\r
238                         "ORR    R0, R0, #0xC0   \n\t"   /* Disable IRQ, FIQ.                    */      \\r
239                         "MSR    CPSR, R0                \n\t"   /* Write back modified value.   */      \\r
240                         "LDMIA  SP!, {R0}                       " )     /* Pop R0.                                              */\r
241 \r
242         #define portENABLE_INTERRUPTS()                                                                                         \\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 #endif /* THUMB_INTERWORK */\r
251 \r
252 extern void vPortEnterCritical( void );\r
253 extern void vPortExitCritical( void );\r
254 \r
255 #define portENTER_CRITICAL()            vPortEnterCritical();\r
256 #define portEXIT_CRITICAL()                     vPortExitCritical();\r
257 /*-----------------------------------------------------------*/\r
258 \r
259 /* Task function macros as described on the FreeRTOS.org WEB site. */\r
260 #define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
261 #define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )\r
262 \r
263 #ifdef __cplusplus\r
264 }\r
265 #endif\r
266 \r
267 #endif /* PORTMACRO_H */\r
268 \r