提交 b39d038c 编写于 作者: G Grissiom

rm48x50: utilize CPS instruction and remove some useless code

上级 f51bce3f
;/* ;/*
; * File : context_rvds.S ; * File : context_ccs.asm
; * This file is part of RT-Thread RTOS ; * This file is part of RT-Thread RTOS
; * COPYRIGHT (C) 2006, RT-Thread Development Team ; * COPYRIGHT (C) 2006, RT-Thread Development Team
; * ; *
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
; * 2009-01-20 Bernard first version ; * 2009-01-20 Bernard first version
; * 2011-07-22 Bernard added thumb mode porting ; * 2011-07-22 Bernard added thumb mode porting
; * 2013-05-24 Grissiom port to CCS ; * 2013-05-24 Grissiom port to CCS
; * 2013-05-26 Grissiom optimize for ARMv7
; */ ; */
.text .text
...@@ -29,8 +30,7 @@ ...@@ -29,8 +30,7 @@
.def rt_hw_interrupt_disable .def rt_hw_interrupt_disable
rt_hw_interrupt_disable rt_hw_interrupt_disable
MRS r0, cpsr MRS r0, cpsr
ORR r1, r0, #0xc0 ; disable irq and fiq in psr CPSID IF
MSR cpsr_c, r1
BX lr BX lr
;/* ;/*
...@@ -48,7 +48,6 @@ rt_hw_interrupt_enable ...@@ -48,7 +48,6 @@ rt_hw_interrupt_enable
; */ ; */
.def rt_hw_context_switch .def rt_hw_context_switch
rt_hw_context_switch rt_hw_context_switch
DSB
STMFD sp!, {lr} ; push pc (lr should be pushed in place of PC) STMFD sp!, {lr} ; push pc (lr should be pushed in place of PC)
STMFD sp!, {r0-r12, lr} ; push lr & register file STMFD sp!, {r0-r12, lr} ; push lr & register file
...@@ -68,7 +67,6 @@ _ARM_MODE ...@@ -68,7 +67,6 @@ _ARM_MODE
BIC r4, r4, #0x20 ; must be ARM mode BIC r4, r4, #0x20 ; must be ARM mode
MSR cpsr_cxsf, r4 MSR cpsr_cxsf, r4
DSB
LDMFD sp!, {r0-r12, lr, pc}^ ; pop new task r0-r12, lr & pc, copy spsr to cpsr LDMFD sp!, {r0-r12, lr, pc}^ ; pop new task r0-r12, lr & pc, copy spsr to cpsr
;/* ;/*
...@@ -81,8 +79,6 @@ rt_hw_context_switch_to ...@@ -81,8 +79,6 @@ rt_hw_context_switch_to
LDMFD sp!, {r4} ; pop new task cpsr to spsr LDMFD sp!, {r4} ; pop new task cpsr to spsr
MSR spsr_cxsf, r4 MSR spsr_cxsf, r4
BIC r4, r4, #0x20 ; must be ARM mode
MSR spsr_cxsf, r4
LDMFD sp!, {r0-r12, lr, pc}^ ; pop new task r0-r12, lr & pc, copy spsr to cpsr LDMFD sp!, {r0-r12, lr, pc}^ ; pop new task r0-r12, lr & pc, copy spsr to cpsr
...@@ -139,14 +135,15 @@ rt_hw_context_switch_interrupt_do ...@@ -139,14 +135,15 @@ rt_hw_context_switch_interrupt_do
MRS r3, spsr ; get cpsr of interrupt thread MRS r3, spsr ; get cpsr of interrupt thread
; switch to SVC mode and no interrupt ; switch to SVC mode and no interrupt
MSR cpsr_c, #0xD3 CPSID IF, #0x13
STMFD sp!, {r2} ; push old task's pc STMFD sp!, {r2} ; push old task's pc
STMFD sp!, {r4-r12,lr} ; push old task's lr,r12-r4 STMFD sp!, {r4-r12,lr} ; push old task's lr,r12-r4
MOV r4, r1 ; Special optimised code below MOV r4, r1 ; move original irq sp to r4
MOV r5, r3 MOV r5, r3 ; move spsr to r5 FIXME: use `MRS r5 spsr` here?
LDMFD r4!, {r0-r3} LDMFD r4!, {r0-r3} ; restore r0-r3 of the interrupted thread
STMFD sp!, {r0-r3} ; push old task's r3-r0 STMFD sp!, {r0-r3} ; push old task's r3-r0
; FIXME: or move the `MRS r5 spsr` here
STMFD sp!, {r5} ; push old task's cpsr STMFD sp!, {r5} ; push old task's cpsr
LDR r4, pfromthread LDR r4, pfromthread
...@@ -159,8 +156,6 @@ rt_hw_context_switch_interrupt_do ...@@ -159,8 +156,6 @@ rt_hw_context_switch_interrupt_do
LDMFD sp!, {r4} ; pop new task's cpsr to spsr LDMFD sp!, {r4} ; pop new task's cpsr to spsr
MSR spsr_cxsf, r4 MSR spsr_cxsf, r4
BIC r4, r4, #0x20 ; must be ARM mode
MSR cpsr_cxsf, r4
LDMFD sp!, {r0-r12,lr,pc}^ ; pop new task's r0-r12,lr & pc, copy spsr to cpsr LDMFD sp!, {r0-r12,lr,pc}^ ; pop new task's r0-r12,lr & pc, copy spsr to cpsr
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册