Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
600ee240
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
600ee240
编写于
11月 19, 2007
作者:
P
Paul Mundt
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sh: Move over and enable FPU support for SH-5.
Signed-off-by:
N
Paul Mundt
<
lethal@linux-sh.org
>
上级
061854fd
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
10 addition
and
8 deletion
+10
-8
arch/sh/Kconfig.sh64
arch/sh/Kconfig.sh64
+1
-0
arch/sh/kernel/cpu/sh5/Makefile
arch/sh/kernel/cpu/sh5/Makefile
+1
-0
arch/sh/kernel/cpu/sh5/fpu.c
arch/sh/kernel/cpu/sh5/fpu.c
+2
-2
arch/sh/kernel/process_64.c
arch/sh/kernel/process_64.c
+4
-4
arch/sh/kernel/signal_64.c
arch/sh/kernel/signal_64.c
+2
-2
未找到文件。
arch/sh/Kconfig.sh64
浏览文件 @
600ee240
...
...
@@ -83,6 +83,7 @@ choice
config CPU_SH5
bool "SH-5"
select CPU_HAS_FPU
endchoice
...
...
arch/sh/kernel/cpu/sh5/Makefile
浏览文件 @
600ee240
obj-y
:=
entry.o switchto.o
obj-$(CONFIG_KALLSYMS)
+=
unwind.o
obj-$(CONFIG_SH_FPU)
+=
fpu.o
arch/sh
64/kernel
/fpu.c
→
arch/sh
/kernel/cpu/sh5
/fpu.c
浏览文件 @
600ee240
...
...
@@ -152,7 +152,7 @@ do_fpu_state_restore(unsigned long ex, struct pt_regs *regs)
if
(
last_task_used_math
==
current
)
return
;
grab
_fpu
();
enable
_fpu
();
if
(
last_task_used_math
!=
NULL
)
{
/* Other processes fpu state, save away */
fpsave
(
&
last_task_used_math
->
thread
.
fpu
.
hard
);
...
...
@@ -165,6 +165,6 @@ do_fpu_state_restore(unsigned long ex, struct pt_regs *regs)
fpload
(
&
init_fpuregs
.
hard
);
set_used_math
();
}
releas
e_fpu
();
disabl
e_fpu
();
}
arch/sh/kernel/process_64.c
浏览文件 @
600ee240
...
...
@@ -469,9 +469,9 @@ int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
fpvalid
=
!!
tsk_used_math
(
tsk
);
if
(
fpvalid
)
{
if
(
current
==
last_task_used_math
)
{
grab
_fpu
();
enable
_fpu
();
fpsave
(
&
tsk
->
thread
.
fpu
.
hard
);
releas
e_fpu
();
disabl
e_fpu
();
last_task_used_math
=
0
;
regs
->
sr
|=
SR_FD
;
}
...
...
@@ -496,9 +496,9 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
#ifdef CONFIG_SH_FPU
if
(
last_task_used_math
==
current
)
{
grab
_fpu
();
enable
_fpu
();
fpsave
(
&
current
->
thread
.
fpu
.
hard
);
releas
e_fpu
();
disabl
e_fpu
();
last_task_used_math
=
NULL
;
regs
->
sr
|=
SR_FD
;
}
...
...
arch/sh/kernel/signal_64.c
浏览文件 @
600ee240
...
...
@@ -211,9 +211,9 @@ setup_sigcontext_fpu(struct pt_regs *regs, struct sigcontext __user *sc)
return
err
;
if
(
current
==
last_task_used_math
)
{
grab
_fpu
();
enable
_fpu
();
fpsave
(
&
current
->
thread
.
fpu
.
hard
);
releas
e_fpu
();
disabl
e_fpu
();
last_task_used_math
=
NULL
;
regs
->
sr
|=
SR_FD
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录