2 ; * FreeRTOS Kernel V10.5.1
\r
3 ; * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
\r
5 ; * SPDX-License-Identifier: MIT
\r
7 ; * Permission is hereby granted, free of charge, to any person obtaining a copy of
\r
8 ; * this software and associated documentation files (the "Software"), to deal in
\r
9 ; * the Software without restriction, including without limitation the rights to
\r
10 ; * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
\r
11 ; * the Software, and to permit persons to whom the Software is furnished to do so,
\r
12 ; * subject to the following conditions:
\r
14 ; * The above copyright notice and this permission notice shall be included in all
\r
15 ; * copies or substantial portions of the Software.
\r
17 ; * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
\r
18 ; * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
\r
19 ; * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
\r
20 ; * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
\r
21 ; * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
\r
22 ; * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
\r
24 ; * https://www.FreeRTOS.org
\r
25 ; * https://github.com/FreeRTOS
\r
29 #include "FreeRTOSConfig.h"
\r
31 SECTION .text:CODE:ROOT(2)
\r
34 /* Variables and functions. */
\r
36 EXTERN vTaskSwitchContext
\r
37 EXTERN vApplicationIRQHandler
\r
38 EXTERN ulPortInterruptNesting
\r
39 EXTERN ulPortTaskHasFPUContext
\r
40 EXTERN ulPortYieldRequired
\r
41 EXTERN ulCriticalNesting
\r
43 PUBLIC FreeRTOS_IRQ_Handler
\r
44 PUBLIC FreeRTOS_SVC_Handler
\r
45 PUBLIC vPortRestoreTaskContext
\r
51 portSAVE_CONTEXT MACRO
\r
53 /* Save the LR and SPSR onto the system mode stack before switching to
\r
54 system mode to save the remaining system mode registers. */
\r
55 SRSDB sp!, #SYS_MODE
\r
59 /* Push the critical nesting count. */
\r
60 LDR R2, =ulCriticalNesting
\r
64 /* Does the task have a floating point context that needs saving? If
\r
65 ulPortTaskHasFPUContext is 0 then no. */
\r
66 LDR R2, =ulPortTaskHasFPUContext
\r
70 /* Save the floating point context, if any. */
\r
73 #if configFPU_D32 == 1
\r
75 #endif /* configFPU_D32 */
\r
78 /* Save ulPortTaskHasFPUContext itself. */
\r
81 /* Save the stack pointer in the TCB. */
\r
82 LDR R0, =pxCurrentTCB
\r
88 ; /**********************************************************************/
\r
90 portRESTORE_CONTEXT MACRO
\r
92 /* Set the SP to point to the stack of the task being restored. */
\r
93 LDR R0, =pxCurrentTCB
\r
97 /* Is there a floating point context to restore? If the restored
\r
98 ulPortTaskHasFPUContext is zero then no. */
\r
99 LDR R0, =ulPortTaskHasFPUContext
\r
104 /* Restore the floating point context, if any. */
\r
106 #if configFPU_D32 == 1
\r
108 #endif /* configFPU_D32 */
\r
112 /* Restore the critical section nesting depth. */
\r
113 LDR R0, =ulCriticalNesting
\r
117 /* Restore all system mode registers other than the SP (which is already
\r
121 /* Return to the task code, loading CPSR on the way. */
\r
129 /******************************************************************************
\r
130 * SVC handler is used to yield.
\r
131 *****************************************************************************/
\r
132 FreeRTOS_SVC_Handler:
\r
133 /* Save the context of the current task and select a new task to run. */
\r
135 LDR R0, =vTaskSwitchContext
\r
137 portRESTORE_CONTEXT
\r
140 /******************************************************************************
\r
141 * vPortRestoreTaskContext is used to start the scheduler.
\r
142 *****************************************************************************/
\r
143 vPortRestoreTaskContext:
\r
144 /* Switch to system mode. */
\r
146 portRESTORE_CONTEXT
\r
148 FreeRTOS_IRQ_Handler:
\r
149 /* Return to the interrupted instruction. */
\r
152 /* Push the return address and SPSR. */
\r
157 /* Change to supervisor mode to allow reentry. */
\r
160 /* Push used registers. */
\r
163 /* Increment nesting count. r3 holds the address of ulPortInterruptNesting
\r
164 for future use. r1 holds the original ulPortInterruptNesting value for
\r
166 LDR r3, =ulPortInterruptNesting
\r
171 /* Ensure bit 2 of the stack pointer is clear. r2 holds the bit 2 value for
\r
177 /* Call the interrupt handler. */
\r
179 LDR r1, =vApplicationIRQHandler
\r
188 /* Write to the EOI register. */
\r
189 LDR r2, =configEOI_ADDRESS
\r
192 /* Restore the old nesting count. */
\r
195 /* A context switch is never performed if the nesting count is not 0. */
\r
197 BNE exit_without_switch
\r
199 /* Did the interrupt request a context switch? r1 holds the address of
\r
200 ulPortYieldRequired and r0 the value of ulPortYieldRequired for future
\r
202 LDR r1, =ulPortYieldRequired
\r
205 BNE switch_before_exit
\r
207 exit_without_switch:
\r
208 /* No context switch. Restore used registers, LR_irq and SPSR before
\r
217 switch_before_exit:
\r
218 /* A context swtich is to be performed. Clear the context switch pending
\r
223 /* Restore used registers, LR-irq and SPSR before saving the context
\r
224 to the task stack. */
\r
232 /* Call the function that selects the new task to execute.
\r
233 vTaskSwitchContext() if vTaskSwitchContext() uses LDRD or STRD
\r
234 instructions, or 8 byte aligned stack allocated data. LR does not need
\r
235 saving as a new LR will be loaded by portRESTORE_CONTEXT anyway. */
\r
236 LDR R0, =vTaskSwitchContext
\r
239 /* Restore the context of, and branch to, the task selected to execute
\r
241 portRESTORE_CONTEXT
\r