context_rvds.S 2.4 KB
Newer Older
L
luohui2320@gmail.com 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
;/*
; * 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
; * 2011-08-14     weety    copy from mini2440
; */

D
dzzxzz 已提交
15
NOINT	EQU		0xc0	; disable interrupt in psr
L
luohui2320@gmail.com 已提交
16

D
dzzxzz 已提交
17 18 19 20
	AREA |.text|, CODE, READONLY, ALIGN=2
	ARM
	REQUIRE8
	PRESERVE8
L
luohui2320@gmail.com 已提交
21 22 23 24 25 26 27 28

;/*
; * rt_base_t rt_hw_interrupt_disable();
; */
rt_hw_interrupt_disable	PROC
	EXPORT rt_hw_interrupt_disable
	MRS r0, cpsr
	ORR r1, r0, #NOINT
D
dzzxzz 已提交
29
	MSR cpsr_c, r1
L
luohui2320@gmail.com 已提交
30
	BX	lr
D
dzzxzz 已提交
31
	ENDP
L
luohui2320@gmail.com 已提交
32 33 34 35 36 37

;/*
; * void rt_hw_interrupt_enable(rt_base_t level);
; */
rt_hw_interrupt_enable	PROC
	EXPORT rt_hw_interrupt_enable
D
dzzxzz 已提交
38
	MSR cpsr_c, r0
L
luohui2320@gmail.com 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
	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

	MRS		r4, cpsr
	STMFD	sp!, {r4}			; push cpsr
	MRS		r4, spsr
	STMFD	sp!, {r4}			; push spsr

	STR	sp, [r0]				; store sp in preempted tasks TCB
	LDR	sp, [r1]				; get new task stack pointer

	LDMFD	sp!, {r4}			; pop new task spsr
	MSR	spsr_cxsf, r4
	LDMFD	sp!, {r4}			; pop new task cpsr
63
	MSR	spsr_cxsf, r4
L
luohui2320@gmail.com 已提交
64

65
	LDMFD	sp!, {r0-r12, lr, pc}^	; pop new task r0-r12, lr & pc
D
dzzxzz 已提交
66
	ENDP
L
luohui2320@gmail.com 已提交
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81

;/*
; * 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

	LDMFD	sp!, {r4}			; pop new task spsr
	MSR	spsr_cxsf, r4
	LDMFD	sp!, {r4}			; pop new task cpsr
	MSR	cpsr_cxsf, r4

	LDMFD	sp!, {r0-r12, lr, pc}	; pop new task r0-r12, lr & pc
D
dzzxzz 已提交
82
	ENDP
L
luohui2320@gmail.com 已提交
83 84 85 86

;/*
; * void rt_hw_context_switch_interrupt(rt_uint32 from, rt_uint32 to);
; */
D
dzzxzz 已提交
87
	IMPORT rt_thread_switch_interrupt_flag
L
luohui2320@gmail.com 已提交
88
	IMPORT rt_interrupt_from_thread
D
dzzxzz 已提交
89
	IMPORT rt_interrupt_to_thread
L
luohui2320@gmail.com 已提交
90 91 92

rt_hw_context_switch_interrupt	PROC
	EXPORT rt_hw_context_switch_interrupt
D
dzzxzz 已提交
93
	LDR r2, =rt_thread_switch_interrupt_flag
L
luohui2320@gmail.com 已提交
94 95 96
	LDR r3, [r2]
	CMP r3, #1
	BEQ _reswitch
D
dzzxzz 已提交
97
	MOV r3, #1							; set rt_thread_switch_interrupt_flag to 1
L
luohui2320@gmail.com 已提交
98 99 100 101 102
	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
D
dzzxzz 已提交
103
	STR r1, [r2]
L
luohui2320@gmail.com 已提交
104
	BX	lr
D
dzzxzz 已提交
105 106
	ENDP

L
luohui2320@gmail.com 已提交
107
	END