2 FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.
\r
5 FreeRTOS supports many tools and architectures. V7.0.0 is sponsored by:
\r
6 Atollic AB - Atollic provides professional embedded systems development
\r
7 tools for C/C++ development, code analysis and test automation.
\r
8 See http://www.atollic.com
\r
11 ***************************************************************************
\r
13 * FreeRTOS tutorial books are available in pdf and paperback. *
\r
14 * Complete, revised, and edited pdf reference manuals are also *
\r
17 * Purchasing FreeRTOS documentation will not only help you, by *
\r
18 * ensuring you get running as quickly as possible and with an *
\r
19 * in-depth knowledge of how to use FreeRTOS, it will also help *
\r
20 * the FreeRTOS project to continue with its mission of providing *
\r
21 * professional grade, cross platform, de facto standard solutions *
\r
22 * for microcontrollers - completely free of charge! *
\r
24 * >>> See http://www.FreeRTOS.org/Documentation for details. <<< *
\r
26 * Thank you for using FreeRTOS, and thank you for your support! *
\r
28 ***************************************************************************
\r
31 This file is part of the FreeRTOS distribution.
\r
33 FreeRTOS is free software; you can redistribute it and/or modify it under
\r
34 the terms of the GNU General Public License (version 2) as published by the
\r
35 Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
\r
36 >>>NOTE<<< The modification to the GPL is included to allow you to
\r
37 distribute a combined work that includes FreeRTOS without being obliged to
\r
38 provide the source code for proprietary components outside of the FreeRTOS
\r
39 kernel. FreeRTOS is distributed in the hope that it will be useful, but
\r
40 WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
\r
41 or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
\r
42 more details. You should have received a copy of the GNU General Public
\r
43 License and the FreeRTOS license exception along with FreeRTOS; if not it
\r
44 can be viewed here: http://www.freertos.org/a00114.html and also obtained
\r
45 by writing to Richard Barry, contact details for whom are available on the
\r
50 http://www.FreeRTOS.org - Documentation, latest information, license and
\r
53 http://www.SafeRTOS.com - A version that is certified for use in safety
\r
56 http://www.OpenRTOS.com - Commercial support, development, porting,
\r
57 licensing and training services.
\r
60 .extern pxCurrentTCB
\r
61 .extern XIntc_DeviceInterruptHandler
\r
62 .extern vTaskSwitchContext
\r
63 .extern uxCriticalNesting
\r
66 /* .global vPortFreeRTOSInterruptHandler */
\r
67 .global _interrupt_handler
\r
68 .global VPortYieldASM
\r
69 .global vStartFirstTask
\r
72 .macro portSAVE_CONTEXT
\r
73 /* Make room for the context on the stack. */
\r
75 /* Save r31 so it can then be used. */
\r
77 /* Copy the msr into r31 - this is stacked later. */
\r
79 /* Stack general registers. */
\r
108 /* Stack the critical section nesting value. */
\r
109 lwi r3, r0, uxCriticalNesting
\r
111 /* Save the top of stack value to the TCB. */
\r
112 lwi r3, r0, pxCurrentTCB
\r
117 .macro portRESTORE_CONTEXT
\r
118 /* Load the top of stack value from the TCB. */
\r
119 lwi r3, r0, pxCurrentTCB
\r
121 /* Restore the general registers. */
\r
152 /* Load the critical nesting value. */
\r
154 swi r3, r0, uxCriticalNesting
\r
156 /* Obtain the MSR value from the stack. */
\r
159 /* Are interrupts enabled in the MSR? If so return using an return from
\r
160 interrupt instruction to ensure interrupts are enabled only once the task
\r
161 is running again. */
\r
166 /* Reload the rmsr from the stack, clear the enable interrupt bit in the
\r
167 value before saving back to rmsr register, then return enabling interrupts
\r
177 /* Reload the rmsr from the stack, place it in the rmsr register, and
\r
178 return without enabling interrupts. */
\r
192 /*vPortFreeRTOSInterruptHandler:*/
\r
193 _interrupt_handler:
\r
195 /* Entered via an interrupt so interrupts must be enabled in msr. */
\r
199 /* Stack the return address. As we entered via an interrupt we do
\r
200 not need to modify the return address prior to stacking. */
\r
202 /* Now switch to use the ISR stack. */
\r
203 lwi r3, r0, pulISRStack
\r
205 bralid r15, XIntc_DeviceInterruptHandler
\r
207 portRESTORE_CONTEXT
\r
214 /* Modify the return address so we return to the instruction after the
\r
218 /* Now switch to use the ISR stack. */
\r
219 lwi r3, r0, pulISRStack
\r
221 bralid r15, vTaskSwitchContext
\r
223 portRESTORE_CONTEXT
\r
226 portRESTORE_CONTEXT
\r