2 FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd.
\r
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
\r
7 ***************************************************************************
\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
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
19 ***************************************************************************
\r
21 This file is part of the FreeRTOS distribution.
\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
27 >>! NOTE: The modification to the GPL is included to allow you to distribute
\r
28 >>! a combined work that includes FreeRTOS without being obliged to provide
\r
29 >>! the source code for proprietary components outside of the FreeRTOS
\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
39 ***************************************************************************
\r
41 * Having a problem? Start by reading the FAQ "My application does *
\r
42 * not run, what could be wrong?" *
\r
44 * http://www.FreeRTOS.org/FAQHelp.html *
\r
46 ***************************************************************************
\r
48 http://www.FreeRTOS.org - Documentation, books, training, latest versions,
\r
49 license and Real Time Engineers Ltd. contact details.
\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
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
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
69 + Modified portENTER_SWITCHING_ISR() to allow use with GCC V4.0.1.
\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
78 + The assembler statements are now included in a single asm block rather
\r
79 than each line having its own asm block.
\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
96 /*-----------------------------------------------------------
\r
97 * Port specific definitions.
\r
99 * The settings in this file configure FreeRTOS correctly for the
\r
100 * given hardware and compiler.
\r
102 * These settings should not be altered.
\r
103 *-----------------------------------------------------------
\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 portLONG
\r
115 typedef portSTACK_TYPE StackType_t;
\r
116 typedef long BaseType_t;
\r
117 typedef unsigned long UBaseType_t;
\r
119 #if( configUSE_16_BIT_TICKS == 1 )
\r
120 typedef uint16_t TickType_t;
\r
121 #define portMAX_DELAY ( TickType_t ) 0xffff
\r
123 typedef uint32_t TickType_t;
\r
124 #define portMAX_DELAY ( TickType_t ) 0xffffffffUL
\r
126 /*-----------------------------------------------------------*/
\r
128 /* Architecture specifics. */
\r
129 #define portSTACK_GROWTH ( -1 )
\r
130 #define portTICK_RATE_MS ( ( TickType_t ) 1000 / configTICK_RATE_HZ )
\r
131 #define portBYTE_ALIGNMENT 8
\r
132 #define portNOP() __asm volatile ( "NOP" );
\r
133 /*-----------------------------------------------------------*/
\r
136 /* Scheduler utilities. */
\r
139 * portRESTORE_CONTEXT, portRESTORE_CONTEXT, portENTER_SWITCHING_ISR
\r
140 * and portEXIT_SWITCHING_ISR can only be called from ARM mode, but
\r
141 * are included here for efficiency. An attempt to call one from
\r
142 * THUMB mode code will result in a compile time error.
\r
145 #define portRESTORE_CONTEXT() \
\r
147 extern volatile void * volatile pxCurrentTCB; \
\r
148 extern volatile uint32_t ulCriticalNesting; \
\r
150 /* Set the LR to the task stack. */ \
\r
152 "LDR R0, =pxCurrentTCB \n\t" \
\r
153 "LDR R0, [R0] \n\t" \
\r
154 "LDR LR, [R0] \n\t" \
\r
156 /* The critical nesting depth is the first item on the stack. */ \
\r
157 /* Load it into the ulCriticalNesting variable. */ \
\r
158 "LDR R0, =ulCriticalNesting \n\t" \
\r
159 "LDMFD LR!, {R1} \n\t" \
\r
160 "STR R1, [R0] \n\t" \
\r
162 /* Get the SPSR from the stack. */ \
\r
163 "LDMFD LR!, {R0} \n\t" \
\r
164 "MSR SPSR, R0 \n\t" \
\r
166 /* Restore all system mode registers for the task. */ \
\r
167 "LDMFD LR, {R0-R14}^ \n\t" \
\r
170 /* Restore the return address. */ \
\r
171 "LDR LR, [LR, #+60] \n\t" \
\r
173 /* And return - correcting the offset in the LR to obtain the */ \
\r
174 /* correct address. */ \
\r
175 "SUBS PC, LR, #4 \n\t" \
\r
177 ( void ) ulCriticalNesting; \
\r
178 ( void ) pxCurrentTCB; \
\r
180 /*-----------------------------------------------------------*/
\r
182 #define portSAVE_CONTEXT() \
\r
184 extern volatile void * volatile pxCurrentTCB; \
\r
185 extern volatile uint32_t ulCriticalNesting; \
\r
187 /* Push R0 as we are going to use the register. */ \
\r
189 "STMDB SP!, {R0} \n\t" \
\r
191 /* Set R0 to point to the task stack pointer. */ \
\r
192 "STMDB SP,{SP}^ \n\t" \
\r
194 "SUB SP, SP, #4 \n\t" \
\r
195 "LDMIA SP!,{R0} \n\t" \
\r
197 /* Push the return address onto the stack. */ \
\r
198 "STMDB R0!, {LR} \n\t" \
\r
200 /* Now we have saved LR we can use it instead of R0. */ \
\r
201 "MOV LR, R0 \n\t" \
\r
203 /* Pop R0 so we can save it onto the system mode stack. */ \
\r
204 "LDMIA SP!, {R0} \n\t" \
\r
206 /* Push all the system mode registers onto the task stack. */ \
\r
207 "STMDB LR,{R0-LR}^ \n\t" \
\r
209 "SUB LR, LR, #60 \n\t" \
\r
211 /* Push the SPSR onto the task stack. */ \
\r
212 "MRS R0, SPSR \n\t" \
\r
213 "STMDB LR!, {R0} \n\t" \
\r
215 "LDR R0, =ulCriticalNesting \n\t" \
\r
216 "LDR R0, [R0] \n\t" \
\r
217 "STMDB LR!, {R0} \n\t" \
\r
219 /* Store the new top of stack for the task. */ \
\r
220 "LDR R0, =pxCurrentTCB \n\t" \
\r
221 "LDR R0, [R0] \n\t" \
\r
222 "STR LR, [R0] \n\t" \
\r
224 ( void ) ulCriticalNesting; \
\r
225 ( void ) pxCurrentTCB; \
\r
229 #define portYIELD_FROM_ISR() vTaskSwitchContext()
\r
230 #define portYIELD() __asm volatile ( "SWI 0" )
\r
231 /*-----------------------------------------------------------*/
\r
234 /* Critical section management. */
\r
237 * The interrupt management utilities can only be called from ARM mode. When
\r
238 * THUMB_INTERWORK is defined the utilities are defined as functions in
\r
239 * portISR.c to ensure a switch to ARM mode. When THUMB_INTERWORK is not
\r
240 * defined then the utilities are defined as macros here - as per other ports.
\r
243 #ifdef THUMB_INTERWORK
\r
245 extern void vPortDisableInterruptsFromThumb( void ) __attribute__ ((naked));
\r
246 extern void vPortEnableInterruptsFromThumb( void ) __attribute__ ((naked));
\r
248 #define portDISABLE_INTERRUPTS() vPortDisableInterruptsFromThumb()
\r
249 #define portENABLE_INTERRUPTS() vPortEnableInterruptsFromThumb()
\r
253 #define portDISABLE_INTERRUPTS() \
\r
255 "STMDB SP!, {R0} \n\t" /* Push R0. */ \
\r
256 "MRS R0, CPSR \n\t" /* Get CPSR. */ \
\r
257 "ORR R0, R0, #0xC0 \n\t" /* Disable IRQ, FIQ. */ \
\r
258 "MSR CPSR, R0 \n\t" /* Write back modified value. */ \
\r
259 "LDMIA SP!, {R0} " ) /* Pop R0. */
\r
261 #define portENABLE_INTERRUPTS() \
\r
263 "STMDB SP!, {R0} \n\t" /* Push R0. */ \
\r
264 "MRS R0, CPSR \n\t" /* Get CPSR. */ \
\r
265 "BIC R0, R0, #0xC0 \n\t" /* Enable IRQ, FIQ. */ \
\r
266 "MSR CPSR, R0 \n\t" /* Write back modified value. */ \
\r
267 "LDMIA SP!, {R0} " ) /* Pop R0. */
\r
269 #endif /* THUMB_INTERWORK */
\r
271 extern void vPortEnterCritical( void );
\r
272 extern void vPortExitCritical( void );
\r
274 #define portENTER_CRITICAL() vPortEnterCritical();
\r
275 #define portEXIT_CRITICAL() vPortExitCritical();
\r
276 /*-----------------------------------------------------------*/
\r
278 /* Task function macros as described on the FreeRTOS.org WEB site. */
\r
279 #define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters )
\r
280 #define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )
\r
286 #endif /* PORTMACRO_H */
\r