init
This commit is contained in:
281
CMSIS_5-develop/CMSIS/RTOS2/RTX/Source/GCC/irq_armv7m.S
Normal file
281
CMSIS_5-develop/CMSIS/RTOS2/RTX/Source/GCC/irq_armv7m.S
Normal file
@@ -0,0 +1,281 @@
|
||||
/*
|
||||
* Copyright (c) 2013-2023 Arm Limited. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the License); you may
|
||||
* not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*
|
||||
* -----------------------------------------------------------------------------
|
||||
*
|
||||
* Project: CMSIS-RTOS RTX
|
||||
* Title: ARMv7-M Exception handlers
|
||||
*
|
||||
* -----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
|
||||
.syntax unified
|
||||
|
||||
#include "rtx_def.h"
|
||||
|
||||
#if (defined(__ARM_FP) && (__ARM_FP > 0))
|
||||
.equ FPU_USED, 1
|
||||
#else
|
||||
.equ FPU_USED, 0
|
||||
#endif
|
||||
|
||||
.equ I_T_RUN_OFS, 20 // osRtxInfo.thread.run offset
|
||||
.equ TCB_SP_OFS, 56 // TCB.SP offset
|
||||
.equ TCB_SF_OFS, 34 // TCB.stack_frame offset
|
||||
.equ TCB_ZONE_OFS, 68 // TCB.zone offset
|
||||
|
||||
.equ FPCCR, 0xE000EF34 // FPCCR Address
|
||||
|
||||
.equ osRtxErrorStackOverflow, 1 // Stack overflow
|
||||
.equ osRtxErrorSVC, 6 // Invalid SVC function called
|
||||
|
||||
.section ".rodata"
|
||||
.global irqRtxLib // Non weak library reference
|
||||
irqRtxLib:
|
||||
.byte 0
|
||||
|
||||
|
||||
.thumb
|
||||
.section ".text"
|
||||
.align 2
|
||||
.eabi_attribute Tag_ABI_align_preserved, 1
|
||||
|
||||
|
||||
.thumb_func
|
||||
.type SVC_Handler, %function
|
||||
.global SVC_Handler
|
||||
.fnstart
|
||||
.cantunwind
|
||||
SVC_Handler:
|
||||
|
||||
tst lr,#0x04 // Determine return stack from EXC_RETURN bit 2
|
||||
ite eq
|
||||
mrseq r0,msp // Get MSP if return stack is MSP
|
||||
mrsne r0,psp // Get PSP if return stack is PSP
|
||||
|
||||
ldr r1,[r0,#24] // Load saved PC from stack
|
||||
ldrb r1,[r1,#-2] // Load SVC number
|
||||
cmp r1,#0 // Check SVC number
|
||||
bne SVC_User // Branch if not SVC 0
|
||||
|
||||
#ifdef RTX_SVC_PTR_CHECK
|
||||
|
||||
ldr r12,[r0,#16] // Load function address from stack
|
||||
sub r1,r12,#1 // Clear T-bit of function address
|
||||
lsls r2,r1,#30 // Check if 4-byte aligned
|
||||
beq SVC_PtrBoundsCheck // Branch if address is aligned
|
||||
|
||||
SVC_PtrInvalid:
|
||||
push {r0,lr} // Save SP and EXC_RETURN
|
||||
movs r0,#osRtxErrorSVC // Parameter: code
|
||||
mov r1,r12 // Parameter: object_id
|
||||
bl osRtxKernelErrorNotify // Call osRtxKernelErrorNotify
|
||||
pop {r12,lr} // Restore SP and EXC_RETURN
|
||||
b SVC_Context // Branch to context handling
|
||||
|
||||
SVC_PtrBoundsCheck:
|
||||
ldr r2,=Image$$RTX_SVC_VENEERS$$Base
|
||||
ldr r3,=Image$$RTX_SVC_VENEERS$$Length
|
||||
subs r2,r1,r2 // Subtract SVC table base address
|
||||
cmp r2,r3 // Compare with SVC table boundaries
|
||||
bhs SVC_PtrInvalid // Branch if address is out of bounds
|
||||
|
||||
#endif // RTX_SVC_PTR_CHECK
|
||||
|
||||
push {r0,lr} // Save SP and EXC_RETURN
|
||||
ldm r0,{r0-r3,r12} // Load function parameters and address from stack
|
||||
blx r12 // Call service function
|
||||
pop {r12,lr} // Restore SP and EXC_RETURN
|
||||
str r0,[r12] // Store function return value
|
||||
|
||||
SVC_Context:
|
||||
ldr r3,=osRtxInfo+I_T_RUN_OFS // Load address of osRtxInfo.thread.run
|
||||
ldm r3,{r1,r2} // Load osRtxInfo.thread.run: curr & next
|
||||
cmp r1,r2 // Check if thread switch is required
|
||||
it eq
|
||||
bxeq lr // Exit when threads are the same
|
||||
|
||||
str r2,[r3] // osRtxInfo.thread.run: curr = next
|
||||
|
||||
.if (FPU_USED != 0)
|
||||
cbnz r1,SVC_ContextSave // Branch if running thread is not deleted
|
||||
SVC_FP_LazyState:
|
||||
tst lr,#0x10 // Determine stack frame from EXC_RETURN bit 4
|
||||
bne SVC_ContextRestore // Branch if not extended stack frame
|
||||
ldr r3,=FPCCR // FPCCR Address
|
||||
ldr r0,[r3] // Load FPCCR
|
||||
bic r0,r0,#1 // Clear LSPACT (Lazy state preservation)
|
||||
str r0,[r3] // Store FPCCR
|
||||
b SVC_ContextRestore // Branch to context restore handling
|
||||
.else
|
||||
cbz r1,SVC_ContextRestore // Branch if running thread is deleted
|
||||
.endif
|
||||
|
||||
SVC_ContextSave:
|
||||
#ifdef RTX_STACK_CHECK
|
||||
sub r12,r12,#32 // Calculate SP: space for R4..R11
|
||||
.if (FPU_USED != 0)
|
||||
tst lr,#0x10 // Determine stack frame from EXC_RETURN bit 4
|
||||
it eq // If extended stack frame
|
||||
subeq r12,r12,#64 // Additional space for S16..S31
|
||||
strb lr, [r1,#TCB_SF_OFS] // Store stack frame information
|
||||
.endif
|
||||
str r12,[r1,#TCB_SP_OFS] // Store SP
|
||||
|
||||
push {r1,r2} // Save osRtxInfo.thread.run: curr & next
|
||||
mov r0,r1 // Parameter: osRtxInfo.thread.run.curr
|
||||
bl osRtxThreadStackCheck // Check if thread stack is overrun
|
||||
pop {r1,r2} // Restore osRtxInfo.thread.run: curr & next
|
||||
cbnz r0,SVC_ContextSaveRegs // Branch when stack check is ok
|
||||
|
||||
.if (FPU_USED != 0)
|
||||
mov r4,r1 // Assign osRtxInfo.thread.run.curr to R4
|
||||
.endif
|
||||
movs r0,#osRtxErrorStackOverflow // Parameter: r0=code, r1=object_id
|
||||
bl osRtxKernelErrorNotify // Call osRtxKernelErrorNotify
|
||||
ldr r3,=osRtxInfo+I_T_RUN_OFS // Load address of osRtxInfo.thread.run
|
||||
ldr r2,[r3,#4] // Load osRtxInfo.thread.run: next
|
||||
str r2,[r3] // osRtxInfo.thread.run: curr = next
|
||||
movs r1,#0 // Simulate deleted running thread
|
||||
.if (FPU_USED != 0)
|
||||
ldrsb lr,[r4,#TCB_SF_OFS] // Load stack frame information
|
||||
b SVC_FP_LazyState // Branch to FP lazy state handling
|
||||
.else
|
||||
b SVC_ContextRestore // Branch to context restore handling
|
||||
.endif
|
||||
|
||||
SVC_ContextSaveRegs:
|
||||
ldr r12,[r1,#TCB_SP_OFS] // Load SP
|
||||
.if (FPU_USED != 0)
|
||||
ldrsb lr, [r1,#TCB_SF_OFS] // Load stack frame information
|
||||
tst lr,#0x10 // Determine stack frame from EXC_RETURN bit 4
|
||||
it eq // If extended stack frame
|
||||
vstmiaeq r12!,{s16-s31} // Save VFP S16..S31
|
||||
.endif
|
||||
stm r12,{r4-r11} // Save R4..R11
|
||||
#else
|
||||
stmdb r12!,{r4-r11} // Save R4..R11
|
||||
.if (FPU_USED != 0)
|
||||
tst lr,#0x10 // Determine stack frame from EXC_RETURN bit 4
|
||||
it eq // If extended stack frame
|
||||
vstmdbeq r12!,{s16-s31} // Save VFP S16.S31
|
||||
strb lr, [r1,#TCB_SF_OFS] // Store stack frame information
|
||||
.endif
|
||||
str r12,[r1,#TCB_SP_OFS] // Store SP
|
||||
#endif // RTX_STACK_CHECK
|
||||
|
||||
SVC_ContextRestore:
|
||||
movs r4,r2 // Assign osRtxInfo.thread.run.next to R4, clear Z flag
|
||||
#ifdef RTX_EXECUTION_ZONE
|
||||
ldrb r0,[r2,#TCB_ZONE_OFS] // Load osRtxInfo.thread.run.next: zone
|
||||
cbz r1,SVC_ZoneSetup // Branch if running thread is deleted (Z flag unchanged)
|
||||
ldrb r1,[r1,#TCB_ZONE_OFS] // Load osRtxInfo.thread.run.curr: zone
|
||||
cmp r0,r1 // Check if next:zone == curr:zone
|
||||
|
||||
SVC_ZoneSetup:
|
||||
it ne // If zone has changed or running thread is deleted
|
||||
blne osZoneSetup_Callback // Setup zone for next thread
|
||||
#endif // RTX_EXECUTION_ZONE
|
||||
|
||||
ldr r0,[r4,#TCB_SP_OFS] // Load SP
|
||||
.if (FPU_USED != 0)
|
||||
ldrsb lr,[r4,#TCB_SF_OFS] // Load stack frame information
|
||||
tst lr,#0x10 // Determine stack frame from EXC_RETURN bit 4
|
||||
it eq // If extended stack frame
|
||||
vldmiaeq r0!,{s16-s31} // Restore VFP S16..S31
|
||||
.else
|
||||
mvn lr,#~0xFFFFFFFD // Set EXC_RETURN value
|
||||
.endif
|
||||
ldmia r0!,{r4-r11} // Restore R4..R11
|
||||
msr psp,r0 // Set PSP
|
||||
|
||||
SVC_Exit:
|
||||
bx lr // Exit from handler
|
||||
|
||||
SVC_User:
|
||||
ldr r2,=osRtxUserSVC // Load address of SVC table
|
||||
ldr r3,[r2] // Load SVC maximum number
|
||||
cmp r1,r3 // Check SVC number range
|
||||
bhi SVC_Exit // Branch if out of range
|
||||
|
||||
push {r0,lr} // Save SP and EXC_RETURN
|
||||
ldr r12,[r2,r1,lsl #2] // Load address of SVC function
|
||||
ldm r0,{r0-r3} // Load function parameters from stack
|
||||
blx r12 // Call service function
|
||||
pop {r12,lr} // Restore SP and EXC_RETURN
|
||||
str r0,[r12] // Store function return value
|
||||
|
||||
bx lr // Return from handler
|
||||
|
||||
.fnend
|
||||
.size SVC_Handler, .-SVC_Handler
|
||||
|
||||
|
||||
.thumb_func
|
||||
.type PendSV_Handler, %function
|
||||
.global PendSV_Handler
|
||||
.fnstart
|
||||
.cantunwind
|
||||
PendSV_Handler:
|
||||
|
||||
push {r0,lr} // Save EXC_RETURN
|
||||
bl osRtxPendSV_Handler // Call osRtxPendSV_Handler
|
||||
pop {r0,lr} // Restore EXC_RETURN
|
||||
mrs r12,psp // Save PSP to R12
|
||||
b SVC_Context // Branch to context handling
|
||||
|
||||
.fnend
|
||||
.size PendSV_Handler, .-PendSV_Handler
|
||||
|
||||
|
||||
.thumb_func
|
||||
.type SysTick_Handler, %function
|
||||
.global SysTick_Handler
|
||||
.fnstart
|
||||
.cantunwind
|
||||
SysTick_Handler:
|
||||
|
||||
push {r0,lr} // Save EXC_RETURN
|
||||
bl osRtxTick_Handler // Call osRtxTick_Handler
|
||||
pop {r0,lr} // Restore EXC_RETURN
|
||||
mrs r12,psp // Save PSP to R12
|
||||
b SVC_Context // Branch to context handling
|
||||
|
||||
.fnend
|
||||
.size SysTick_Handler, .-SysTick_Handler
|
||||
|
||||
|
||||
#ifdef RTX_SAFETY_FEATURES
|
||||
|
||||
.thumb_func
|
||||
.type osFaultResume, %function
|
||||
.global osFaultResume
|
||||
.fnstart
|
||||
.cantunwind
|
||||
osFaultResume:
|
||||
|
||||
mrs r12,psp // Save PSP to R12
|
||||
b SVC_Context // Branch to context handling
|
||||
|
||||
.fnend
|
||||
.size osFaultResume, .-osFaultResume
|
||||
|
||||
#endif // RTX_SAFETY_FEATURES
|
||||
|
||||
|
||||
.end
|
||||
Reference in New Issue
Block a user