Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
b39d038c
R
rt-thread
项目概览
BaiXuePrincess
/
rt-thread
与 Fork 源项目一致
Fork自
RT-Thread / rt-thread
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
rt-thread
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
b39d038c
编写于
5月 26, 2013
作者:
G
Grissiom
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
rm48x50: utilize CPS instruction and remove some useless code
上级
f51bce3f
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
8 addition
and
13 deletion
+8
-13
libcpu/arm/rm48x50/context_ccs.asm
libcpu/arm/rm48x50/context_ccs.asm
+8
-13
未找到文件。
libcpu/arm/rm48x50/context_ccs.asm
浏览文件 @
b39d038c
;/*
; * File : context_
rvds.S
; * File : context_
ccs.asm
; * This file is part of RT-Thread RTOS
; * COPYRIGHT (C) 2006, RT-Thread Development Team
; *
...
...
@@ -12,6 +12,7 @@
; * 2009-01-20 Bernard first version
; * 2011-07-22 Bernard added thumb mode porting
; * 2013-05-24 Grissiom port to CCS
; * 2013-05-26 Grissiom optimize for ARMv7
; */
.text
...
...
@@ -29,8 +30,7 @@
.def
rt_hw_interrupt_disable
rt_hw_interrupt_disable
MRS
r0
,
cpsr
ORR
r1
,
r0
,
#
0xc0
; disable irq and fiq in psr
MSR
cpsr_c
,
r1
CPSID
IF
BX
lr
;/*
...
...
@@ -48,7 +48,6 @@ rt_hw_interrupt_enable
; */
.def
rt_hw_context_switch
rt_hw_context_switch
DSB
STMFD
sp
!
,
{
lr
}
; push pc (lr should be pushed in place of PC)
STMFD
sp
!
,
{
r0
-
r12
,
lr
}
; push lr & register file
...
...
@@ -68,7 +67,6 @@ _ARM_MODE
BIC
r4
,
r4
,
#
0x20
; must be ARM mode
MSR
cpsr_cxsf
,
r4
DSB
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
LDMFD
sp
!
,
{
r4
}
; pop new task cpsr to spsr
MSR
sp
sr_cxsf
,
r4
BIC
r4
,
r4
,
#
0x20
; must be ARM mode
MSR
sp
sr_cxsf
,
r4
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
MRS
r3
,
sp
sr
; get cpsr of interrupt thread
; switch to SVC mode and no interrupt
MSR
cpsr_c
,
#
0xD
3
CPSID
IF
,
#
0x1
3
STMFD
sp
!
,
{
r2
}
; push old task's pc
STMFD
sp
!
,
{
r4
-
r12
,
lr
}
; push old task's lr,r12-r4
MOV
r4
,
r1
;
Special optimised code below
MOV
r5
,
r3
LDMFD
r4
!
,
{
r0
-
r3
}
MOV
r4
,
r1
;
move original irq sp to r4
MOV
r5
,
r3
; move spsr to r5 FIXME: use `MRS r5 spsr` here?
LDMFD
r4
!
,
{
r0
-
r3
}
; restore r0-r3 of the interrupted thread
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
LDR
r4
,
pfromthread
...
...
@@ -159,8 +156,6 @@ rt_hw_context_switch_interrupt_do
LDMFD
sp
!
,
{
r4
}
; pop new task's cpsr to spsr
MSR
sp
sr_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
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录