Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
f088fc84
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看板
提交
f088fc84
编写于
4月 05, 2006
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MIPS] FPU affinity for MT ASE.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
41c594ab
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
125 addition
and
2 deletion
+125
-2
arch/mips/Kconfig
arch/mips/Kconfig
+5
-0
arch/mips/kernel/process.c
arch/mips/kernel/process.c
+11
-0
arch/mips/kernel/scall32-o32.S
arch/mips/kernel/scall32-o32.S
+11
-0
arch/mips/kernel/setup.c
arch/mips/kernel/setup.c
+4
-1
arch/mips/kernel/smp-mt.c
arch/mips/kernel/smp-mt.c
+11
-0
arch/mips/kernel/traps.c
arch/mips/kernel/traps.c
+30
-0
include/asm-mips/cpu-features.h
include/asm-mips/cpu-features.h
+1
-1
include/asm-mips/fpu.h
include/asm-mips/fpu.h
+4
-0
include/asm-mips/processor.h
include/asm-mips/processor.h
+16
-0
include/asm-mips/system.h
include/asm-mips/system.h
+32
-0
未找到文件。
arch/mips/Kconfig
浏览文件 @
f088fc84
...
...
@@ -1464,6 +1464,11 @@ config MIPS_VPE_LOADER
endchoice
config MIPS_MT_FPAFF
bool "Dynamic FPU affinity for FP-intensive threads"
depends on MIPS_MT
default y
config MIPS_VPE_LOADER_TOM
bool "Load VPE program into memory hidden from linux"
depends on MIPS_VPE_LOADER
...
...
arch/mips/kernel/process.c
浏览文件 @
f088fc84
...
...
@@ -185,6 +185,17 @@ int copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
childregs
->
cp0_status
&=
~
(
ST0_CU2
|
ST0_CU1
);
clear_tsk_thread_flag
(
p
,
TIF_USEDFPU
);
#ifdef CONFIG_MIPS_MT_FPAFF
/*
* FPU affinity support is cleaner if we track the
* user-visible CPU affinity from the very beginning.
* The generic cpus_allowed mask will already have
* been copied from the parent before copy_thread
* is invoked.
*/
p
->
thread
.
user_cpus_allowed
=
p
->
cpus_allowed
;
#endif
/* CONFIG_MIPS_MT_FPAFF */
if
(
clone_flags
&
CLONE_SETTLS
)
ti
->
tp_value
=
regs
->
regs
[
7
];
...
...
arch/mips/kernel/scall32-o32.S
浏览文件 @
f088fc84
...
...
@@ -569,8 +569,19 @@ einval: li v0, -EINVAL
sys
sys_tkill
2
sys
sys_sendfile64
5
sys
sys_futex
6
#ifdef CONFIG_MIPS_MT_FPAFF
/
*
*
For
FPU
affinity
scheduling
on
MIPS
MT
processors
,
we
need
to
*
intercept
sys_sched_xxxaffinity
()
calls
until
we
get
a
proper
hook
*
in
kernel
/
sched
.
c
.
Considered
only
temporary
we
only
support
these
*
hooks
for
the
32
-
bit
kernel
-
there
is
no
MIPS64
MT
processor
atm
.
*/
sys
mipsmt_sys_sched_setaffinity
3
sys
mipsmt_sys_sched_getaffinity
3
#else
sys
sys_sched_setaffinity
3
sys
sys_sched_getaffinity
3
/*
4240
*/
#endif /* CONFIG_MIPS_MT_FPAFF */
sys
sys_io_setup
2
sys
sys_io_destroy
1
sys
sys_io_getevents
5
...
...
arch/mips/kernel/setup.c
浏览文件 @
f088fc84
...
...
@@ -529,7 +529,10 @@ void __init setup_arch(char **cmdline_p)
int
__init
fpu_disable
(
char
*
s
)
{
cpu_data
[
0
].
options
&=
~
MIPS_CPU_FPU
;
int
i
;
for
(
i
=
0
;
i
<
NR_CPUS
;
i
++
)
cpu_data
[
i
].
options
&=
~
MIPS_CPU_FPU
;
return
1
;
}
...
...
arch/mips/kernel/smp-mt.c
浏览文件 @
f088fc84
...
...
@@ -150,6 +150,11 @@ void plat_smp_setup(void)
unsigned
long
val
;
int
i
,
num
;
#ifdef CONFIG_MIPS_MT_FPAFF
/* If we have an FPU, enroll ourselves in the FPU-full mask */
if
(
cpu_has_fpu
)
cpu_set
(
0
,
mt_fpu_cpumask
);
#endif
/* CONFIG_MIPS_MT_FPAFF */
if
(
!
cpu_has_mipsmt
)
return
;
...
...
@@ -312,6 +317,12 @@ void prom_smp_finish(void)
{
write_c0_compare
(
read_c0_count
()
+
(
8
*
mips_hpt_frequency
/
HZ
));
#ifdef CONFIG_MIPS_MT_FPAFF
/* If we have an FPU, enroll ourselves in the FPU-full mask */
if
(
cpu_has_fpu
)
cpu_set
(
smp_processor_id
(),
mt_fpu_cpumask
);
#endif
/* CONFIG_MIPS_MT_FPAFF */
local_irq_enable
();
}
...
...
arch/mips/kernel/traps.c
浏览文件 @
f088fc84
...
...
@@ -758,6 +758,36 @@ asmlinkage void do_cpu(struct pt_regs *regs)
&
current
->
thread
.
fpu
.
soft
);
if
(
sig
)
force_sig
(
sig
,
current
);
#ifdef CONFIG_MIPS_MT_FPAFF
else
{
/*
* MIPS MT processors may have fewer FPU contexts
* than CPU threads. If we've emulated more than
* some threshold number of instructions, force
* migration to a "CPU" that has FP support.
*/
if
(
mt_fpemul_threshold
>
0
&&
((
current
->
thread
.
emulated_fp
++
>
mt_fpemul_threshold
)))
{
/*
* If there's no FPU present, or if the
* application has already restricted
* the allowed set to exclude any CPUs
* with FPUs, we'll skip the procedure.
*/
if
(
cpus_intersects
(
current
->
cpus_allowed
,
mt_fpu_cpumask
))
{
cpumask_t
tmask
;
cpus_and
(
tmask
,
current
->
thread
.
user_cpus_allowed
,
mt_fpu_cpumask
);
set_cpus_allowed
(
current
,
tmask
);
current
->
thread
.
mflags
|=
MF_FPUBOUND
;
}
}
}
#endif
/* CONFIG_MIPS_MT_FPAFF */
}
return
;
...
...
include/asm-mips/cpu-features.h
浏览文件 @
f088fc84
...
...
@@ -40,7 +40,7 @@
#define cpu_has_sb1_cache (cpu_data[0].options & MIPS_CPU_SB1_CACHE)
#endif
#ifndef cpu_has_fpu
#define cpu_has_fpu (c
pu_data[0]
.options & MIPS_CPU_FPU)
#define cpu_has_fpu (c
urrent_cpu_data
.options & MIPS_CPU_FPU)
#endif
#ifndef cpu_has_32fpr
#define cpu_has_32fpr (cpu_data[0].options & MIPS_CPU_32FPR)
...
...
include/asm-mips/fpu.h
浏览文件 @
f088fc84
...
...
@@ -21,6 +21,10 @@
#include <asm/processor.h>
#include <asm/current.h>
#ifdef CONFIG_MIPS_MT_FPAFF
#include <asm/mips_mt.h>
#endif
struct
sigcontext
;
struct
sigcontext32
;
...
...
include/asm-mips/processor.h
浏览文件 @
f088fc84
...
...
@@ -134,6 +134,12 @@ struct thread_struct {
/* Saved fpu/fpu emulator stuff. */
union
mips_fpu_union
fpu
;
#ifdef CONFIG_MIPS_MT_FPAFF
/* Emulated instruction count */
unsigned
long
emulated_fp
;
/* Saved per-thread scheduler affinity mask */
cpumask_t
user_cpus_allowed
;
#endif
/* CONFIG_MIPS_MT_FPAFF */
/* Saved state of the DSP ASE, if available. */
struct
mips_dsp_state
dsp
;
...
...
@@ -159,6 +165,12 @@ struct thread_struct {
#define MF_N32 MF_32BIT_ADDR
#define MF_N64 0
#ifdef CONFIG_MIPS_MT_FPAFF
#define FPAFF_INIT 0, INIT_CPUMASK,
#else
#define FPAFF_INIT
#endif
/* CONFIG_MIPS_MT_FPAFF */
#define INIT_THREAD { \
/* \
* saved main processor registers \
...
...
@@ -173,6 +185,10 @@ struct thread_struct {
* saved fpu/fpu emulator stuff \
*/
\
INIT_FPU, \
/* \
* fpu affinity state (null if not FPAFF) \
*/
\
FPAFF_INIT \
/* \
* saved dsp/dsp emulator stuff \
*/
\
...
...
include/asm-mips/system.h
浏览文件 @
f088fc84
...
...
@@ -155,6 +155,37 @@ extern asmlinkage void *resume(void *last, void *next, void *next_ti);
struct
task_struct
;
#ifdef CONFIG_MIPS_MT_FPAFF
/*
* Handle the scheduler resume end of FPU affinity management. We do this
* inline to try to keep the overhead down. If we have been forced to run on
* a "CPU" with an FPU because of a previous high level of FP computation,
* but did not actually use the FPU during the most recent time-slice (CU1
* isn't set), we undo the restriction on cpus_allowed.
*
* We're not calling set_cpus_allowed() here, because we have no need to
* force prompt migration - we're already switching the current CPU to a
* different thread.
*/
#define switch_to(prev,next,last) \
do { \
if (cpu_has_fpu && \
(prev->thread.mflags & MF_FPUBOUND) && \
(!(KSTK_STATUS(prev) & ST0_CU1))) { \
prev->thread.mflags &= ~MF_FPUBOUND; \
prev->cpus_allowed = prev->thread.user_cpus_allowed; \
} \
if (cpu_has_dsp) \
__save_dsp(prev); \
next->thread.emulated_fp = 0; \
(last) = resume(prev, next, next->thread_info); \
if (cpu_has_dsp) \
__restore_dsp(current); \
} while(0)
#else
#define switch_to(prev,next,last) \
do { \
if (cpu_has_dsp) \
...
...
@@ -163,6 +194,7 @@ do { \
if (cpu_has_dsp) \
__restore_dsp(current); \
} while(0)
#endif
/*
* On SMP systems, when the scheduler does migration-cost autodetection,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录