2 ; FreeRTOS V9.0.0 - Copyright (C) 2016 Real Time Engineers Ltd.
\r
3 ; All rights reserved
\r
6 ; ***************************************************************************
\r
8 ; * FreeRTOS tutorial books are available in pdf and paperback. *
\r
9 ; * Complete, revised, and edited pdf reference manuals are also *
\r
12 ; * Purchasing FreeRTOS documentation will not only help you, by *
\r
13 ; * ensuring you get running as quickly as possible and with an *
\r
14 ; * in-depth knowledge of how to use FreeRTOS, it will also help *
\r
15 ; * the FreeRTOS project to continue with its mission of providing *
\r
16 ; * professional grade, cross platform, de facto standard solutions *
\r
17 ; * for microcontrollers - completely free of charge! *
\r
19 ; * >>> See http://www.FreeRTOS.org/Documentation for details. <<< *
\r
21 ; * Thank you for using FreeRTOS, and thank you for your support! *
\r
23 ; ***************************************************************************
\r
26 ; This file is part of the FreeRTOS distribution.
\r
28 ; FreeRTOS is free software; you can redistribute it and/or modify it under
\r
29 ; the terms of the GNU General Public License (version 2) as published by the
\r
30 ; Free Software Foundation AND MODIFIED BY the FreeRTOS exception.
\r
31 ; >>>NOTE<<< The modification to the GPL is included to allow you to
\r
32 ; distribute a combined work that includes FreeRTOS without being obliged to
\r
33 ; provide the source code for proprietary components outside of the FreeRTOS
\r
34 ; kernel. FreeRTOS is distributed in the hope that it will be useful, but
\r
35 ; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
\r
36 ; or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
\r
37 ; more details. You should have received a copy of the GNU General Public
\r
38 ; License and the FreeRTOS license exception along with FreeRTOS; if not it
\r
39 ; can be viewed here: http://www.freertos.org/a00114.html and also obtained
\r
40 ; by writing to Richard Barry, contact details for whom are available on the
\r
41 ; FreeRTOS WEB site.
\r
43 ; 1 tab == 4 spaces!
\r
45 ; http://www.FreeRTOS.org - Documentation, latest information, license and
\r
48 ; http://www.SafeRTOS.com - A version that is certified for use in safety
\r
51 ; http://www.OpenRTOS.com - Commercial support, development, porting,
\r
52 ; licensing and training services.
\r
55 INCLUDE portmacro.inc
\r
57 IMPORT vApplicationIRQHandler
\r
58 IMPORT vTaskSwitchContext
\r
59 IMPORT ulPortYieldRequired
\r
60 IMPORT ulPortInterruptNesting
\r
61 IMPORT vTaskSwitchContext
\r
65 EXPORT FreeRTOS_SWI_Handler
\r
66 EXPORT FreeRTOS_IRQ_Handler
\r
67 EXPORT vPortRestoreTaskContext
\r
70 AREA PORT_ASM, CODE, READONLY
\r
73 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
\r
74 ; SVC handler is used to yield a task.
\r
75 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
\r
76 FreeRTOS_SWI_Handler
\r
80 ; Save the context of the current task and select a new task to run.
\r
82 LDR R0, =vTaskSwitchContext
\r
86 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
\r
87 ; vPortRestoreTaskContext is used to start the scheduler.
\r
88 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
\r
89 vPortRestoreTaskContext
\r
90 ; Switch to system mode
\r
94 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
\r
95 ; PL390 GIC interrupt handler
\r
96 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
\r
97 FreeRTOS_IRQ_Handler
\r
99 ; Return to the interrupted instruction.
\r
102 ; Push the return address and SPSR
\r
107 ; Change to supervisor mode to allow reentry.
\r
110 ; Push used registers.
\r
113 ; Increment nesting count. r3 holds the address of ulPortInterruptNesting
\r
114 ; for future use. r1 holds the original ulPortInterruptNesting value for
\r
116 LDR r3, =ulPortInterruptNesting
\r
121 ; Read value from the interrupt acknowledge register, which is stored in r0
\r
122 ; for future parameter and interrupt clearing use.
\r
126 ; Ensure bit 2 of the stack pointer is clear. r2 holds the bit 2 value for
\r
132 ; Call the interrupt handler
\r
134 LDR r1, =vApplicationIRQHandler
\r
141 ; Write the value read from ICCIAR to ICCEOIR
\r
145 ; Restore the old nesting count
\r
148 ; A context switch is never performed if the nesting count is not 0
\r
150 BNE exit_without_switch
\r
152 ; Did the interrupt request a context switch? r1 holds the address of
\r
153 ; ulPortYieldRequired and r0 the value of ulPortYieldRequired for future
\r
155 LDR r1, =ulPortYieldRequired
\r
158 BNE switch_before_exit
\r
160 exit_without_switch
\r
161 ; No context switch. Restore used registers, LR_irq and SPSR before
\r
171 ; A context swtich is to be performed. Clear the context switch pending
\r
176 ; Restore used registers, LR-irq and SPSR before saving the context
\r
177 ; to the task stack.
\r
185 ; Call the function that selects the new task to execute.
\r
186 ; vTaskSwitchContext() if vTaskSwitchContext() uses LDRD or STRD
\r
187 ; instructions, or 8 byte aligned stack allocated data. LR does not need
\r
188 ; saving as a new LR will be loaded by portRESTORE_CONTEXT anyway.
\r
189 LDR r0, =vTaskSwitchContext
\r
192 ; Restore the context of, and branch to, the task selected to execute next.
\r
193 portRESTORE_CONTEXT
\r