context_rvds.S 3.0 KB
Newer Older
L
luohui2320@gmail.com 已提交
1 2 3 4 5
;/*
; * File      : context_rvds.S
; * This file is part of RT-Thread RTOS
; * COPYRIGHT (C) 2006, RT-Thread Development Team
; *
W
weety 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18
; *  This program is free software; you can redistribute it and/or modify
; *  it under the terms of the GNU General Public License as published by
; *  the Free Software Foundation; either version 2 of the License, or
; *  (at your option) any later version.
; *
; *  This program is distributed in the hope that it will be useful,
; *  but WITHOUT ANY WARRANTY; without even the implied warranty of
; *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
; *  GNU General Public License for more details.
; *
; *  You should have received a copy of the GNU General Public License along
; *  with this program; if not, write to the Free Software Foundation, Inc.,
; *  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
L
luohui2320@gmail.com 已提交
19 20 21 22 23 24
; *
; * Change Logs:
; * Date           Author       Notes
; * 2011-08-14     weety    copy from mini2440
; */

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

D
dzzxzz 已提交
27 28 29 30
	AREA |.text|, CODE, READONLY, ALIGN=2
	ARM
	REQUIRE8
	PRESERVE8
L
luohui2320@gmail.com 已提交
31 32 33 34 35 36 37 38

;/*
; * 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 已提交
39
	MSR cpsr_c, r1
L
luohui2320@gmail.com 已提交
40
	BX	lr
D
dzzxzz 已提交
41
	ENDP
L
luohui2320@gmail.com 已提交
42 43 44 45 46 47

;/*
; * void rt_hw_interrupt_enable(rt_base_t level);
; */
rt_hw_interrupt_enable	PROC
	EXPORT rt_hw_interrupt_enable
D
dzzxzz 已提交
48
	MSR cpsr_c, r0
L
luohui2320@gmail.com 已提交
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
	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
73
	MSR	spsr_cxsf, r4
L
luohui2320@gmail.com 已提交
74

75
	LDMFD	sp!, {r0-r12, lr, pc}^	; pop new task r0-r12, lr & pc
D
dzzxzz 已提交
76
	ENDP
L
luohui2320@gmail.com 已提交
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91

;/*
; * 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 已提交
92
	ENDP
L
luohui2320@gmail.com 已提交
93 94 95 96

;/*
; * void rt_hw_context_switch_interrupt(rt_uint32 from, rt_uint32 to);
; */
D
dzzxzz 已提交
97
	IMPORT rt_thread_switch_interrupt_flag
L
luohui2320@gmail.com 已提交
98
	IMPORT rt_interrupt_from_thread
D
dzzxzz 已提交
99
	IMPORT rt_interrupt_to_thread
L
luohui2320@gmail.com 已提交
100 101 102

rt_hw_context_switch_interrupt	PROC
	EXPORT rt_hw_context_switch_interrupt
D
dzzxzz 已提交
103
	LDR r2, =rt_thread_switch_interrupt_flag
L
luohui2320@gmail.com 已提交
104 105 106
	LDR r3, [r2]
	CMP r3, #1
	BEQ _reswitch
D
dzzxzz 已提交
107
	MOV r3, #1							; set rt_thread_switch_interrupt_flag to 1
L
luohui2320@gmail.com 已提交
108 109 110 111 112
	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 已提交
113
	STR r1, [r2]
L
luohui2320@gmail.com 已提交
114
	BX	lr
D
dzzxzz 已提交
115 116
	ENDP

L
luohui2320@gmail.com 已提交
117
	END