2009-07-03 07:18:14 +08:00
|
|
|
;/*
|
|
|
|
; * File : context_rvds.S
|
|
|
|
; * This file is part of RT-Thread RTOS
|
|
|
|
; * COPYRIGHT (C) 2006, RT-Thread Development Team
|
|
|
|
; *
|
|
|
|
; * The license and distribution terms for this file may be
|
|
|
|
; * found in the file LICENSE in this distribution or at
|
|
|
|
; * http://www.rt-thread.org/license/LICENSE
|
|
|
|
; *
|
|
|
|
; * Change Logs:
|
|
|
|
; * Date Author Notes
|
|
|
|
; * 2009-01-20 Bernard first version
|
2011-12-20 17:03:46 +08:00
|
|
|
; * 2011-07-22 Bernard added thumb mode porting
|
2009-07-03 07:18:14 +08:00
|
|
|
; */
|
|
|
|
|
2013-01-08 21:05:02 +08:00
|
|
|
NOINT EQU 0xc0 ; disable interrupt in psr
|
2009-07-03 07:18:14 +08:00
|
|
|
|
2013-01-08 21:05:02 +08:00
|
|
|
AREA |.text|, CODE, READONLY, ALIGN=2
|
|
|
|
ARM
|
|
|
|
REQUIRE8
|
|
|
|
PRESERVE8
|
2009-07-03 07:18:14 +08:00
|
|
|
|
|
|
|
;/*
|
|
|
|
; * rt_base_t rt_hw_interrupt_disable();
|
|
|
|
; */
|
|
|
|
rt_hw_interrupt_disable PROC
|
|
|
|
EXPORT rt_hw_interrupt_disable
|
|
|
|
MRS r0, cpsr
|
|
|
|
ORR r1, r0, #NOINT
|
2013-01-08 21:05:02 +08:00
|
|
|
MSR cpsr_c, r1
|
2009-07-03 07:18:14 +08:00
|
|
|
BX lr
|
2013-01-08 21:05:02 +08:00
|
|
|
ENDP
|
2009-07-03 07:18:14 +08:00
|
|
|
|
|
|
|
;/*
|
|
|
|
; * void rt_hw_interrupt_enable(rt_base_t level);
|
|
|
|
; */
|
|
|
|
rt_hw_interrupt_enable PROC
|
|
|
|
EXPORT rt_hw_interrupt_enable
|
2013-01-08 21:05:02 +08:00
|
|
|
MSR cpsr_c, r0
|
2009-07-03 07:18:14 +08:00
|
|
|
BX lr
|
|
|
|
ENDP
|
|
|
|
|
|
|
|
;/*
|
|
|
|
; * void rt_hw_context_switch(rt_uint32 from, rt_uint32 to);
|
|
|
|
; * r0 --> from
|
|
|
|
; * r1 --> to
|
|
|
|
; */
|
|
|
|
rt_hw_context_switch PROC
|
|
|
|
EXPORT rt_hw_context_switch
|
|
|
|
STMFD sp!, {lr} ; push pc (lr should be pushed in place of PC)
|
|
|
|
STMFD sp!, {r0-r12, lr} ; push lr & register file
|
|
|
|
|
2013-01-08 21:05:02 +08:00
|
|
|
MRS r4, cpsr
|
|
|
|
TST lr, #0x01
|
|
|
|
BEQ _ARM_MODE
|
|
|
|
ORR r4, r4, #0x20 ; it's thumb code
|
|
|
|
|
|
|
|
_ARM_MODE
|
2009-07-03 07:18:14 +08:00
|
|
|
STMFD sp!, {r4} ; push cpsr
|
|
|
|
|
2011-07-15 13:44:38 +08:00
|
|
|
STR sp, [r0] ; store sp in preempted tasks TCB
|
|
|
|
LDR sp, [r1] ; get new task stack pointer
|
2009-07-03 07:18:14 +08:00
|
|
|
|
2013-01-08 21:05:02 +08:00
|
|
|
LDMFD sp!, {r4} ; pop new task cpsr to spsr
|
|
|
|
MSR spsr_cxsf, r4
|
2011-07-15 13:44:38 +08:00
|
|
|
BIC r4, r4, #0x20 ; must be ARM mode
|
|
|
|
MSR cpsr_cxsf, r4
|
2009-07-03 07:18:14 +08:00
|
|
|
|
2011-07-15 13:44:38 +08:00
|
|
|
LDMFD sp!, {r0-r12, lr, pc}^ ; pop new task r0-r12, lr & pc, copy spsr to cpsr
|
2013-01-08 21:05:02 +08:00
|
|
|
ENDP
|
2009-07-03 07:18:14 +08:00
|
|
|
|
|
|
|
;/*
|
|
|
|
; * void rt_hw_context_switch_to(rt_uint32 to);
|
|
|
|
; * r0 --> to
|
|
|
|
; */
|
|
|
|
rt_hw_context_switch_to PROC
|
|
|
|
EXPORT rt_hw_context_switch_to
|
|
|
|
LDR sp, [r0] ; get new task stack pointer
|
|
|
|
|
2013-01-08 21:05:02 +08:00
|
|
|
LDMFD sp!, {r4} ; pop new task cpsr to spsr
|
|
|
|
MSR spsr_cxsf, r4
|
2011-07-15 13:44:38 +08:00
|
|
|
BIC r4, r4, #0x20 ; must be ARM mode
|
|
|
|
MSR cpsr_cxsf, r4
|
2009-07-03 07:18:14 +08:00
|
|
|
|
2011-07-15 13:44:38 +08:00
|
|
|
LDMFD sp!, {r0-r12, lr, pc}^ ; pop new task r0-r12, lr & pc, copy spsr to cpsr
|
2013-01-08 21:05:02 +08:00
|
|
|
ENDP
|
2009-07-03 07:18:14 +08:00
|
|
|
|
|
|
|
;/*
|
|
|
|
; * void rt_hw_context_switch_interrupt(rt_uint32 from, rt_uint32 to);
|
|
|
|
; */
|
2011-09-19 12:40:50 +08:00
|
|
|
IMPORT rt_thread_switch_interrupt_flag
|
2009-07-03 07:18:14 +08:00
|
|
|
IMPORT rt_interrupt_from_thread
|
2013-01-08 21:05:02 +08:00
|
|
|
IMPORT rt_interrupt_to_thread
|
2009-07-03 07:18:14 +08:00
|
|
|
|
|
|
|
rt_hw_context_switch_interrupt PROC
|
|
|
|
EXPORT rt_hw_context_switch_interrupt
|
2011-09-19 12:40:50 +08:00
|
|
|
LDR r2, =rt_thread_switch_interrupt_flag
|
2009-07-03 07:18:14 +08:00
|
|
|
LDR r3, [r2]
|
|
|
|
CMP r3, #1
|
|
|
|
BEQ _reswitch
|
2011-09-19 12:40:50 +08:00
|
|
|
MOV r3, #1 ; set rt_thread_switch_interrupt_flag to 1
|
2009-07-03 07:18:14 +08:00
|
|
|
STR r3, [r2]
|
|
|
|
LDR r2, =rt_interrupt_from_thread ; set rt_interrupt_from_thread
|
|
|
|
STR r0, [r2]
|
|
|
|
_reswitch
|
|
|
|
LDR r2, =rt_interrupt_to_thread ; set rt_interrupt_to_thread
|
2013-01-08 21:05:02 +08:00
|
|
|
STR r1, [r2]
|
2009-07-03 07:18:14 +08:00
|
|
|
BX lr
|
2013-01-08 21:05:02 +08:00
|
|
|
ENDP
|
|
|
|
|
2009-07-03 07:18:14 +08:00
|
|
|
END
|