Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
rt-thread
提交
c2f028ed
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看板
提交
c2f028ed
编写于
10月 06, 2017
作者:
B
Bernard Xiong
提交者:
GitHub
10月 06, 2017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Update cpuport.c
上级
f0061b14
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
54 addition
and
73 deletion
+54
-73
libcpu/nds32/cpuport.c
libcpu/nds32/cpuport.c
+54
-73
未找到文件。
libcpu/nds32/cpuport.c
浏览文件 @
c2f028ed
/*
* File : cpuport.c
* This file is part of RT-Thread RTOS
* COPYRIGHT (C) 2006 - 2013, RT-Thread Development Team
* 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.
*
* 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
* 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.
*
* Change Logs:
* Date Author Notes
* 2009-01-05 Bernard first version
* 2011-02-14 onelife Modify for EFM32
* 2011-06-17 onelife Merge all of the C source code into cpuport.c
* 2012-12-23 aozima stack addr align to 8byte.
* 2012-12-29 Bernard Add exception hook.
* 2013-07-09 aozima enhancement hard fault exception handler.
* 2017-08-25 Archer first version
*/
#include <rtthread.h>
...
...
@@ -29,7 +31,7 @@
*
*
* Stack Layout:
*
High |-----------------|
*
High |-----------------|
* | $R5 |
* |-----------------|
* | . |
...
...
@@ -82,17 +84,17 @@ static rt_err_t (*rt_exception_hook)(void *context) = RT_NULL;
rt_base_t
rt_hw_interrupt_disable
(
void
)
{
rt_base_t
level
=
__nds32__mfsr
(
NDS32_SR_PSW
);
rt_base_t
level
=
__nds32__mfsr
(
NDS32_SR_PSW
);
GIE_DISABLE
();
GIE_DISABLE
();
return
level
;
return
level
;
}
void
rt_hw_interrupt_enable
(
rt_base_t
level
)
{
if
(
level
&
PSW_mskGIE
)
GIE_ENABLE
();
if
(
level
&
PSW_mskGIE
)
GIE_ENABLE
();
}
/* For relax support, must initial $gp at task init*/
...
...
@@ -113,60 +115,60 @@ rt_uint8_t *rt_hw_stack_init(void *tentry,
rt_uint8_t
*
stack_addr
,
void
*
texit
)
{
rt_int32_t
i
;
rt_uint32_t
*
pxTopOfStack
;
rt_int32_t
i
;
rt_uint32_t
*
pxTopOfStack
;
pxTopOfStack
=
(
rt_uint32_t
*
)
RT_ALIGN_DOWN
((
rt_uint32_t
)
stack_addr
,
4
);
pxTopOfStack
=
(
rt_uint32_t
*
)
RT_ALIGN_DOWN
((
rt_uint32_t
)
stack_addr
,
4
);
/* Simulate the stack frame as it would be created by a context switch */
/* R0 ~ R5 registers */
for
(
i
=
5
;
i
>=
1
;
i
--
)
/* R5, R4, R3, R2 and R1. */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x01010101UL
*
i
;
*--
pxTopOfStack
=
(
rt_uint32_t
)
parameter
;
/* R0 : Argument */
/* Simulate the stack frame as it would be created by a context switch */
/* R0 ~ R5 registers */
for
(
i
=
5
;
i
>=
1
;
i
--
)
/* R5, R4, R3, R2 and R1. */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x01010101UL
*
i
;
*--
pxTopOfStack
=
(
rt_uint32_t
)
parameter
;
/* R0 : Argument */
/* R6 ~ R30 registers */
*--
pxTopOfStack
=
(
rt_uint32_t
)
texit
;
/* R30: $LP */
*--
pxTopOfStack
=
(
rt_uint32_t
)
&
_SDA_BASE_
;
/* R29: $GP */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x2828282828
;
/* R28: $FP */
/* R6 ~ R30 registers */
*--
pxTopOfStack
=
(
rt_uint32_t
)
texit
;
/* R30: $LP */
*--
pxTopOfStack
=
(
rt_uint32_t
)
&
_SDA_BASE_
;
/* R29: $GP */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x2828282828
;
/* R28: $FP */
#ifdef __NDS32_REDUCE_REGS__
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x1515151515
;
/* R15 */
for
(
i
=
10
;
i
>=
6
;
i
--
)
/* R10 ~ R6 */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x01010101UL
*
i
;
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x1515151515
;
/* R15 */
for
(
i
=
10
;
i
>=
6
;
i
--
)
/* R10 ~ R6 */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x01010101UL
*
i
;
#else
for
(
i
=
27
;
i
>=
6
;
i
--
)
/* R27 ~ R6 */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x01010101UL
*
i
;
for
(
i
=
27
;
i
>=
6
;
i
--
)
/* R27 ~ R6 */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x01010101UL
*
i
;
#endif
/* IFC system register */
/* IFC system register */
#ifdef __TARGET_IFC_EXT
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* $IFC_LP */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* $IFC_LP */
#endif
/* ZOL system registers */
/* ZOL system registers */
#ifdef __TARGET_ZOL_EXT
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* $LC */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* $LE */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* $LB */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* $LC */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* $LE */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* $LB */
#endif
/* IPSW and IPC system registers */
/* Default IPSW: enable GIE, set CPL to 7, clear IFCON */
i
=
(
__nds32__mfsr
(
NDS32_SR_PSW
)
|
PSW_mskGIE
|
PSW_mskCPL
)
&
~
PSW_mskIFCON
;
*--
pxTopOfStack
=
(
rt_uint32_t
)
i
;
/* $IPSW */
*--
pxTopOfStack
=
(
rt_uint32_t
)
tentry
;
/* $IPC */
/* IPSW and IPC system registers */
/* Default IPSW: enable GIE, set CPL to 7, clear IFCON */
i
=
(
__nds32__mfsr
(
NDS32_SR_PSW
)
|
PSW_mskGIE
|
PSW_mskCPL
)
&
~
PSW_mskIFCON
;
*--
pxTopOfStack
=
(
rt_uint32_t
)
i
;
/* $IPSW */
*--
pxTopOfStack
=
(
rt_uint32_t
)
tentry
;
/* $IPC */
/* Dummy word for 8-byte stack alignment */
/* Dummy word for 8-byte stack alignment */
#if defined(__TARGET_IFC_EXT) && defined(__TARGET_ZOL_EXT)
*--
pxTopOfStack
=
(
rt_uint32_t
)
0xFFFFFFFF
;
/* Dummy */
*--
pxTopOfStack
=
(
rt_uint32_t
)
0xFFFFFFFF
;
/* Dummy */
#endif
/* FPU registers */
/* FPU registers */
#ifdef __TARGET_FPU_EXT
for
(
i
=
0
;
i
<
FPU_REGS
;
i
++
)
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* FPU */
for
(
i
=
0
;
i
<
FPU_REGS
;
i
++
)
*--
pxTopOfStack
=
(
rt_uint32_t
)
0x0
;
/* FPU */
#endif
return
(
rt_uint8_t
*
)
pxTopOfStack
;
return
(
rt_uint8_t
*
)
pxTopOfStack
;
}
/**
...
...
@@ -190,28 +192,7 @@ void rt_hw_exception_install(rt_err_t (*exception_handle)(void* context))
* @return return the index of the first bit set. If value is 0, then this function
* shall return 0.
*/
#if defined(__CC_ARM)
__asm
int
__rt_ffs
(
int
value
)
{
CMP
r0
,
#
0x00
BEQ
exit
RBIT
r0
,
r0
CLZ
r0
,
r0
ADDS
r0
,
r0
,
#
0x01
exit
BX
lr
}
#elif defined(__IAR_SYSTEMS_ICC__)
int
__rt_ffs
(
int
value
)
{
if
(
value
==
0
)
return
value
;
__ASM
(
"RBIT r0, r0"
);
__ASM
(
"CLZ r0, r0"
);
__ASM
(
"ADDS r0, r0, #0x01"
);
}
#elif defined(__GNUC__)
#if defined(__GNUC__)
int
__rt_ffs
(
int
value
)
{
return
__builtin_ffs
(
value
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录