2013-02-20 22:03:31 +08:00
|
|
|
/*
|
2018-10-15 01:35:07 +08:00
|
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
2013-02-20 22:03:31 +08:00
|
|
|
*
|
2018-10-15 01:35:07 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2013-02-20 22:03:31 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2010-01-25 Bernard first version
|
|
|
|
* 2012-06-01 aozima set pendsv priority to 0xFF.
|
|
|
|
* 2012-08-17 aozima fixed bug: store r8 - r11.
|
|
|
|
* 2013-02-20 aozima port to gcc.
|
2013-06-18 11:34:54 +08:00
|
|
|
* 2013-06-18 aozima add restore MSP feature.
|
2013-11-04 16:10:11 +08:00
|
|
|
* 2013-11-04 bright fixed hardfault bug for gcc.
|
2013-02-20 22:03:31 +08:00
|
|
|
*/
|
|
|
|
|
2013-11-04 16:10:11 +08:00
|
|
|
.cpu cortex-m0
|
2013-06-23 18:07:10 +08:00
|
|
|
.fpu softvfp
|
|
|
|
.syntax unified
|
|
|
|
.thumb
|
|
|
|
.text
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-11-04 16:10:11 +08:00
|
|
|
.equ SCB_VTOR, 0xE000ED08 /* Vector Table Offset Register */
|
|
|
|
.equ NVIC_INT_CTRL, 0xE000ED04 /* interrupt control state register */
|
|
|
|
.equ NVIC_SHPR3, 0xE000ED20 /* system priority register (3) */
|
|
|
|
.equ NVIC_PENDSV_PRI, 0x00FF0000 /* PendSV priority value (lowest) */
|
|
|
|
.equ NVIC_PENDSVSET, 0x10000000 /* value to trigger PendSV exception */
|
2013-02-20 22:03:31 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* rt_base_t rt_hw_interrupt_disable();
|
|
|
|
*/
|
2013-06-23 18:07:10 +08:00
|
|
|
.global rt_hw_interrupt_disable
|
|
|
|
.type rt_hw_interrupt_disable, %function
|
2013-02-20 22:03:31 +08:00
|
|
|
rt_hw_interrupt_disable:
|
2013-06-23 18:07:10 +08:00
|
|
|
MRS R0, PRIMASK
|
|
|
|
CPSID I
|
|
|
|
BX LR
|
2013-02-20 22:03:31 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* void rt_hw_interrupt_enable(rt_base_t level);
|
|
|
|
*/
|
2013-06-23 18:07:10 +08:00
|
|
|
.global rt_hw_interrupt_enable
|
|
|
|
.type rt_hw_interrupt_enable, %function
|
2013-02-20 22:03:31 +08:00
|
|
|
rt_hw_interrupt_enable:
|
2013-06-23 18:07:10 +08:00
|
|
|
MSR PRIMASK, R0
|
|
|
|
BX LR
|
2013-02-20 22:03:31 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* void rt_hw_context_switch(rt_uint32 from, rt_uint32 to);
|
|
|
|
* R0 --> from
|
|
|
|
* R1 --> to
|
|
|
|
*/
|
2013-06-23 18:07:10 +08:00
|
|
|
.global rt_hw_context_switch_interrupt
|
|
|
|
.type rt_hw_context_switch_interrupt, %function
|
|
|
|
.global rt_hw_context_switch
|
|
|
|
.type rt_hw_context_switch, %function
|
2013-02-20 22:03:31 +08:00
|
|
|
rt_hw_context_switch_interrupt:
|
|
|
|
rt_hw_context_switch:
|
2013-06-23 18:07:10 +08:00
|
|
|
/* set rt_thread_switch_interrupt_flag to 1 */
|
|
|
|
LDR R2, =rt_thread_switch_interrupt_flag
|
|
|
|
LDR R3, [R2]
|
|
|
|
CMP R3, #1
|
|
|
|
BEQ _reswitch
|
2013-11-04 16:10:11 +08:00
|
|
|
MOVS R3, #1
|
2013-06-23 18:07:10 +08:00
|
|
|
STR R3, [R2]
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-06-23 18:07:10 +08:00
|
|
|
LDR R2, =rt_interrupt_from_thread /* set rt_interrupt_from_thread */
|
|
|
|
STR R0, [R2]
|
2013-02-20 22:03:31 +08:00
|
|
|
|
|
|
|
_reswitch:
|
2013-06-23 18:07:10 +08:00
|
|
|
LDR R2, =rt_interrupt_to_thread /* set rt_interrupt_to_thread */
|
|
|
|
STR R1, [R2]
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-11-04 16:10:11 +08:00
|
|
|
LDR R0, =NVIC_INT_CTRL /* trigger the PendSV exception (causes context switch) */
|
|
|
|
LDR R1, =NVIC_PENDSVSET
|
2013-06-23 18:07:10 +08:00
|
|
|
STR R1, [R0]
|
|
|
|
BX LR
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2014-07-31 13:53:57 +08:00
|
|
|
/* R0 --> switch from thread stack
|
|
|
|
* R1 --> switch to thread stack
|
2013-02-20 22:03:31 +08:00
|
|
|
* psr, pc, LR, R12, R3, R2, R1, R0 are pushed into [from] stack
|
|
|
|
*/
|
2013-06-23 18:07:10 +08:00
|
|
|
.global PendSV_Handler
|
|
|
|
.type PendSV_Handler, %function
|
2013-02-20 22:03:31 +08:00
|
|
|
PendSV_Handler:
|
2013-06-23 18:07:10 +08:00
|
|
|
/* disable interrupt to protect context switch */
|
|
|
|
MRS R2, PRIMASK
|
|
|
|
CPSID I
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-06-23 18:07:10 +08:00
|
|
|
/* get rt_thread_switch_interrupt_flag */
|
|
|
|
LDR R0, =rt_thread_switch_interrupt_flag
|
|
|
|
LDR R1, [R0]
|
2013-11-04 16:10:11 +08:00
|
|
|
CMP R1, #0x00
|
|
|
|
BEQ pendsv_exit /* pendsv aLReady handled */
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-06-23 18:07:10 +08:00
|
|
|
/* clear rt_thread_switch_interrupt_flag to 0 */
|
2013-11-04 16:10:11 +08:00
|
|
|
MOVS R1, #0
|
2013-06-23 18:07:10 +08:00
|
|
|
STR R1, [R0]
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-06-23 18:07:10 +08:00
|
|
|
LDR R0, =rt_interrupt_from_thread
|
|
|
|
LDR R1, [R0]
|
2013-11-04 16:10:11 +08:00
|
|
|
CMP R1, #0x00
|
2014-07-31 13:53:57 +08:00
|
|
|
BEQ switch_to_thread /* skip register save at the first time */
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-11-04 16:10:11 +08:00
|
|
|
MRS R1, PSP /* get from thread stack pointer */
|
|
|
|
|
|
|
|
SUBS R1, R1, #0x20 /* space for {R4 - R7} and {R8 - R11} */
|
2013-06-23 18:07:10 +08:00
|
|
|
LDR R0, [R0]
|
|
|
|
STR R1, [R0] /* update from thread stack pointer */
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-11-04 16:10:11 +08:00
|
|
|
STMIA R1!, {R4 - R7} /* push thread {R4 - R7} register to thread stack */
|
|
|
|
|
|
|
|
MOV R4, R8 /* mov thread {R8 - R11} to {R4 - R7} */
|
|
|
|
MOV R5, R9
|
|
|
|
MOV R6, R10
|
|
|
|
MOV R7, R11
|
|
|
|
STMIA R1!, {R4 - R7} /* push thread {R8 - R11} high register to thread stack */
|
2014-07-31 13:53:57 +08:00
|
|
|
switch_to_thread:
|
2013-06-23 18:07:10 +08:00
|
|
|
LDR R1, =rt_interrupt_to_thread
|
|
|
|
LDR R1, [R1]
|
|
|
|
LDR R1, [R1] /* load thread stack pointer */
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-11-04 16:10:11 +08:00
|
|
|
LDMIA R1!, {R4 - R7} /* pop thread {R4 - R7} register from thread stack */
|
|
|
|
PUSH {R4 - R7} /* push {R4 - R7} to MSP for copy {R8 - R11} */
|
|
|
|
|
|
|
|
LDMIA R1!, {R4 - R7} /* pop thread {R8 - R11} high register from thread stack to {R4 - R7} */
|
|
|
|
MOV R8, R4 /* mov {R4 - R7} to {R8 - R11} */
|
|
|
|
MOV R9, R5
|
|
|
|
MOV R10, R6
|
|
|
|
MOV R11, R7
|
|
|
|
|
|
|
|
POP {R4 - R7} /* pop {R4 - R7} from MSP */
|
|
|
|
|
2013-06-23 18:07:10 +08:00
|
|
|
MSR PSP, R1 /* update stack pointer */
|
2013-02-20 22:03:31 +08:00
|
|
|
|
|
|
|
pendsv_exit:
|
2013-06-23 18:07:10 +08:00
|
|
|
/* restore interrupt */
|
|
|
|
MSR PRIMASK, R2
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-11-04 16:10:11 +08:00
|
|
|
MOVS R0, #0x04
|
|
|
|
RSBS R0, R0, #0x00
|
|
|
|
BX R0
|
2013-02-20 22:03:31 +08:00
|
|
|
/*
|
|
|
|
* void rt_hw_context_switch_to(rt_uint32 to);
|
|
|
|
* R0 --> to
|
|
|
|
*/
|
2013-06-23 18:07:10 +08:00
|
|
|
.global rt_hw_context_switch_to
|
|
|
|
.type rt_hw_context_switch_to, %function
|
2013-02-20 22:03:31 +08:00
|
|
|
rt_hw_context_switch_to:
|
2013-06-23 18:07:10 +08:00
|
|
|
LDR R1, =rt_interrupt_to_thread
|
|
|
|
STR R0, [R1]
|
|
|
|
|
|
|
|
/* set from thread to 0 */
|
|
|
|
LDR R1, =rt_interrupt_from_thread
|
2013-11-04 16:10:11 +08:00
|
|
|
MOVS R0, #0
|
2013-06-23 18:07:10 +08:00
|
|
|
STR R0, [R1]
|
|
|
|
|
|
|
|
/* set interrupt flag to 1 */
|
|
|
|
LDR R1, =rt_thread_switch_interrupt_flag
|
2013-11-04 16:10:11 +08:00
|
|
|
MOVS R0, #1
|
2013-06-23 18:07:10 +08:00
|
|
|
STR R0, [R1]
|
|
|
|
|
|
|
|
/* set the PendSV exception priority */
|
2013-11-04 16:10:11 +08:00
|
|
|
LDR R0, =NVIC_SHPR3
|
|
|
|
LDR R1, =NVIC_PENDSV_PRI
|
|
|
|
LDR R2, [R0,#0x00] /* read */
|
|
|
|
ORRS R1, R1, R2 /* modify */
|
|
|
|
STR R1, [R0] /* write-back */
|
|
|
|
|
|
|
|
LDR R0, =NVIC_INT_CTRL /* trigger the PendSV exception (causes context switch) */
|
|
|
|
LDR R1, =NVIC_PENDSVSET
|
2013-06-23 18:07:10 +08:00
|
|
|
STR R1, [R0]
|
2013-11-04 16:10:11 +08:00
|
|
|
NOP
|
2013-06-18 11:34:54 +08:00
|
|
|
/* restore MSP */
|
2013-11-04 16:10:11 +08:00
|
|
|
LDR R0, =SCB_VTOR
|
|
|
|
LDR R0, [R0]
|
|
|
|
LDR R0, [R0]
|
2013-06-18 11:34:54 +08:00
|
|
|
NOP
|
2013-11-04 16:10:11 +08:00
|
|
|
MSR MSP, R0
|
2013-06-18 11:34:54 +08:00
|
|
|
|
2017-08-09 09:49:05 +08:00
|
|
|
/* enable interrupts at processor level */
|
|
|
|
CPSIE I
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-06-23 18:07:10 +08:00
|
|
|
/* never reach here! */
|
2013-02-20 22:03:31 +08:00
|
|
|
|
|
|
|
/* compatible with old version */
|
2013-06-23 18:07:10 +08:00
|
|
|
.global rt_hw_interrupt_thread_switch
|
|
|
|
.type rt_hw_interrupt_thread_switch, %function
|
2013-02-20 22:03:31 +08:00
|
|
|
rt_hw_interrupt_thread_switch:
|
2013-06-23 18:07:10 +08:00
|
|
|
BX LR
|
|
|
|
NOP
|
2013-02-20 22:03:31 +08:00
|
|
|
|
2013-06-23 18:07:10 +08:00
|
|
|
.global HardFault_Handler
|
|
|
|
.type HardFault_Handler, %function
|
2013-02-20 22:03:31 +08:00
|
|
|
HardFault_Handler:
|
|
|
|
/* get current context */
|
|
|
|
MRS R0, PSP /* get fault thread stack pointer */
|
|
|
|
PUSH {LR}
|
|
|
|
BL rt_hw_hard_fault_exception
|
2013-11-04 16:10:11 +08:00
|
|
|
POP {PC}
|
2013-02-20 22:03:31 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* rt_uint32_t rt_hw_interrupt_check(void);
|
|
|
|
* R0 --> state
|
|
|
|
*/
|
2013-06-23 18:07:10 +08:00
|
|
|
.global rt_hw_interrupt_check
|
|
|
|
.type rt_hw_interrupt_check, %function
|
2013-02-20 22:03:31 +08:00
|
|
|
rt_hw_interrupt_check:
|
2013-06-23 18:07:10 +08:00
|
|
|
MRS R0, IPSR
|
|
|
|
BX LR
|