2 * FreeRTOS SMP Kernel V202110.00
3 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
5 * Permission is hereby granted, free of charge, to any person obtaining a copy of
6 * this software and associated documentation files (the "Software"), to deal in
7 * the Software without restriction, including without limitation the rights to
8 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 * the Software, and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 * https://www.FreeRTOS.org
23 * https://github.com/FreeRTOS
27 .eabi_attribute Tag_ABI_align_preserved, 1
35 /* Hardware registers. */
40 /* Variables and functions. */
41 .extern ulMaxAPIPriorityMask
42 .extern _freertos_vector_table
44 .extern vTaskSwitchContext
45 .extern vApplicationIRQHandler
46 .extern ulPortInterruptNesting
47 .extern ulPortTaskHasFPUContext
49 .global FreeRTOS_IRQ_Handler
50 .global FreeRTOS_SWI_Handler
51 .global vPortRestoreTaskContext
56 .macro portSAVE_CONTEXT
58 /* Save the LR and SPSR onto the system mode stack before switching to
59 system mode to save the remaining system mode registers. */
64 /* Push the critical nesting count. */
65 LDR R2, ulCriticalNestingConst
69 /* Does the task have a floating point context that needs saving? If
70 ulPortTaskHasFPUContext is 0 then no. */
71 LDR R2, ulPortTaskHasFPUContextConst
75 /* Save the floating point context, if any. */
81 /* Save ulPortTaskHasFPUContext itself. */
84 /* Save the stack pointer in the TCB. */
85 LDR R0, pxCurrentTCBConst
91 ; /**********************************************************************/
93 .macro portRESTORE_CONTEXT
95 /* Set the SP to point to the stack of the task being restored. */
96 LDR R0, pxCurrentTCBConst
100 /* Is there a floating point context to restore? If the restored
101 ulPortTaskHasFPUContext is zero then no. */
102 LDR R0, ulPortTaskHasFPUContextConst
107 /* Restore the floating point context, if any. */
113 /* Restore the critical section nesting depth. */
114 LDR R0, ulCriticalNestingConst
118 /* Ensure the priority mask is correct for the critical nesting depth. */
119 LDR R2, ulICCPMRConst
123 LDRNE R4, ulMaxAPIPriorityMaskConst
127 /* Restore all system mode registers other than the SP (which is already
131 /* Return to the task code, loading CPSR on the way. */
139 /******************************************************************************
140 * SVC handler is used to start the scheduler.
141 *****************************************************************************/
143 .type FreeRTOS_SWI_Handler, %function
144 FreeRTOS_SWI_Handler:
145 /* Save the context of the current task and select a new task to run. */
147 LDR R0, vTaskSwitchContextConst
152 /******************************************************************************
153 * vPortRestoreTaskContext is used to start the scheduler.
154 *****************************************************************************/
155 .type vPortRestoreTaskContext, %function
156 vPortRestoreTaskContext:
157 /* Switch to system mode. */
162 .type FreeRTOS_IRQ_Handler, %function
163 FreeRTOS_IRQ_Handler:
164 /* Return to the interrupted instruction. */
167 /* Push the return address and SPSR. */
172 /* Change to supervisor mode to allow reentry. */
175 /* Push used registers. */
178 /* Increment nesting count. r3 holds the address of ulPortInterruptNesting
179 for future use. r1 holds the original ulPortInterruptNesting value for
181 LDR r3, ulPortInterruptNestingConst
186 /* Read value from the interrupt acknowledge register, which is stored in r0
187 for future parameter and interrupt clearing use. */
188 LDR r2, ulICCIARConst
192 /* Ensure bit 2 of the stack pointer is clear. r2 holds the bit 2 value for
193 future use. _RB_ Does this ever actually need to be done provided the start
194 of the stack is 8-byte aligned? */
199 /* Call the interrupt handler. r4 pushed to maintain alignment. */
201 LDR r1, vApplicationIRQHandlerConst
210 /* Write the value read from ICCIAR to ICCEOIR. */
211 LDR r4, ulICCEOIRConst
215 /* Restore the old nesting count. */
218 /* A context switch is never performed if the nesting count is not 0. */
220 BNE exit_without_switch
222 /* Did the interrupt request a context switch? r1 holds the address of
223 ulPortYieldRequired and r0 the value of ulPortYieldRequired for future
225 LDR r1, =ulPortYieldRequired
228 BNE switch_before_exit
231 /* No context switch. Restore used registers, LR_irq and SPSR before
241 /* A context swtich is to be performed. Clear the context switch pending
246 /* Restore used registers, LR-irq and SPSR before saving the context
247 to the task stack. */
255 /* Call the function that selects the new task to execute.
256 vTaskSwitchContext() if vTaskSwitchContext() uses LDRD or STRD
257 instructions, or 8 byte aligned stack allocated data. LR does not need
258 saving as a new LR will be loaded by portRESTORE_CONTEXT anyway. */
259 LDR R0, vTaskSwitchContextConst
262 /* Restore the context of, and branch to, the task selected to execute
267 /******************************************************************************
268 * If the application provides an implementation of vApplicationIRQHandler(),
269 * then it will get called directly without saving the FPU registers on
270 * interrupt entry, and this weak implementation of
271 * vApplicationIRQHandler() will not get called.
273 * If the application provides its own implementation of
274 * vApplicationFPUSafeIRQHandler() then this implementation of
275 * vApplicationIRQHandler() will be called, save the FPU registers, and then
276 * call vApplicationFPUSafeIRQHandler().
278 * Therefore, if the application writer wants FPU registers to be saved on
279 * interrupt entry their IRQ handler must be called
280 * vApplicationFPUSafeIRQHandler(), and if the application writer does not want
281 * FPU registers to be saved on interrupt entry their IRQ handler must be
282 * called vApplicationIRQHandler().
283 *****************************************************************************/
286 .weak vApplicationIRQHandler
287 .type vApplicationIRQHandler, %function
288 vApplicationIRQHandler:
295 LDR r1, vApplicationFPUSafeIRQHandlerConst
306 ulICCIARConst: .word ulICCIAR
307 ulICCEOIRConst: .word ulICCEOIR
308 ulICCPMRConst: .word ulICCPMR
309 pxCurrentTCBConst: .word pxCurrentTCB
310 ulCriticalNestingConst: .word ulCriticalNesting
311 ulPortTaskHasFPUContextConst: .word ulPortTaskHasFPUContext
312 ulMaxAPIPriorityMaskConst: .word ulMaxAPIPriorityMask
313 vTaskSwitchContextConst: .word vTaskSwitchContext
314 vApplicationIRQHandlerConst: .word vApplicationIRQHandler
315 ulPortInterruptNestingConst: .word ulPortInterruptNesting
316 vApplicationFPUSafeIRQHandlerConst: .word vApplicationFPUSafeIRQHandler