Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
714cfe78
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
714cfe78
编写于
10月 23, 2006
作者:
R
Ralf Baechle
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[MIPS] Oprofile: kernel support for the R10000.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
2472d0b5
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
31 addition
and
5 deletion
+31
-5
arch/mips/oprofile/Makefile
arch/mips/oprofile/Makefile
+1
-0
arch/mips/oprofile/common.c
arch/mips/oprofile/common.c
+3
-0
arch/mips/oprofile/op_model_mipsxx.c
arch/mips/oprofile/op_model_mipsxx.c
+27
-5
未找到文件。
arch/mips/oprofile/Makefile
浏览文件 @
714cfe78
...
...
@@ -12,5 +12,6 @@ oprofile-y := $(DRIVER_OBJS) common.o
oprofile-$(CONFIG_CPU_MIPS32)
+=
op_model_mipsxx.o
oprofile-$(CONFIG_CPU_MIPS64)
+=
op_model_mipsxx.o
oprofile-$(CONFIG_CPU_R10000)
+=
op_model_mipsxx.o
oprofile-$(CONFIG_CPU_SB1)
+=
op_model_mipsxx.o
oprofile-$(CONFIG_CPU_RM9000)
+=
op_model_rm9000.o
arch/mips/oprofile/common.c
浏览文件 @
714cfe78
...
...
@@ -83,6 +83,9 @@ int __init oprofile_arch_init(struct oprofile_operations *ops)
case
CPU_74K
:
case
CPU_SB1
:
case
CPU_SB1A
:
case
CPU_R10000
:
case
CPU_R12000
:
case
CPU_R14000
:
lmodel
=
&
op_model_mipsxx_ops
;
break
;
...
...
arch/mips/oprofile/op_model_mipsxx.c
浏览文件 @
714cfe78
...
...
@@ -18,7 +18,7 @@
#define M_PERFCTL_SUPERVISOR (1UL << 2)
#define M_PERFCTL_USER (1UL << 3)
#define M_PERFCTL_INTERRUPT_ENABLE (1UL << 4)
#define M_PERFCTL_EVENT(event) ((
event
) << 5)
#define M_PERFCTL_EVENT(event) ((
(event) & 0x3f
) << 5)
#define M_PERFCTL_VPEID(vpe) ((vpe) << 16)
#define M_PERFCTL_MT_EN(filter) ((filter) << 20)
#define M_TC_EN_ALL M_PERFCTL_MT_EN(0)
...
...
@@ -218,13 +218,23 @@ static inline int __n_counters(void)
static
inline
int
n_counters
(
void
)
{
int
counters
=
__n_counters
();
int
counters
;
switch
(
current_cpu_data
.
cputype
)
{
case
CPU_R10000
:
counters
=
2
;
case
CPU_R12000
:
case
CPU_R14000
:
counters
=
4
;
default:
counters
=
__n_counters
();
}
#ifdef CONFIG_MIPS_MT_SMP
if
(
current_cpu_data
.
cputype
==
CPU_34K
)
return
counters
>>
1
;
counters
>>
1
;
#endif
return
counters
;
}
...
...
@@ -284,6 +294,18 @@ static int __init mipsxx_init(void)
op_model_mipsxx_ops
.
cpu_type
=
"mips/5K"
;
break
;
case
CPU_R10000
:
if
((
current_cpu_data
.
processor_id
&
0xff
)
==
0x20
)
op_model_mipsxx_ops
.
cpu_type
=
"mips/r10000-v2.x"
;
else
op_model_mipsxx_ops
.
cpu_type
=
"mips/r10000"
;
break
;
case
CPU_R12000
:
case
CPU_R14000
:
op_model_mipsxx_ops
.
cpu_type
=
"mips/r12000"
;
break
;
case
CPU_SB1
:
case
CPU_SB1A
:
op_model_mipsxx_ops
.
cpu_type
=
"mips/sb1"
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录