Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
ba339c03
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看板
提交
ba339c03
编写于
12月 09, 2005
作者:
R
Ralf Baechle
提交者:
1月 10, 2006
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MIPS: Oprofile: Fixup the loose ends in the plumbing.
Signed-off-by:
N
Ralf Baechle
<
ralf@linux-mips.org
>
上级
0401572a
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
49 addition
and
7 deletion
+49
-7
arch/mips/kernel/time.c
arch/mips/kernel/time.c
+25
-1
arch/mips/mips-boards/generic/time.c
arch/mips/mips-boards/generic/time.c
+17
-3
arch/mips/oprofile/op_impl.h
arch/mips/oprofile/op_impl.h
+2
-2
arch/mips/oprofile/op_model_mipsxx.c
arch/mips/oprofile/op_model_mipsxx.c
+5
-1
未找到文件。
arch/mips/kernel/time.c
浏览文件 @
ba339c03
...
...
@@ -507,14 +507,38 @@ irqreturn_t timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
return
IRQ_HANDLED
;
}
int
null_perf_irq
(
struct
pt_regs
*
regs
)
{
return
0
;
}
int
(
*
perf_irq
)(
struct
pt_regs
*
regs
)
=
null_perf_irq
;
EXPORT_SYMBOL
(
null_perf_irq
);
EXPORT_SYMBOL
(
perf_irq
);
asmlinkage
void
ll_timer_interrupt
(
int
irq
,
struct
pt_regs
*
regs
)
{
int
r2
=
cpu_has_mips_r2
;
irq_enter
();
kstat_this_cpu
.
irqs
[
irq
]
++
;
/*
* Suckage alert:
* Before R2 of the architecture there was no way to see if a
* performance counter interrupt was pending, so we have to run the
* performance counter interrupt handler anyway.
*/
if
(
!
r2
||
(
read_c0_cause
()
&
(
1
<<
26
)))
if
(
perf_irq
(
regs
))
goto
out
;
/* we keep interrupt disabled all the time */
timer_interrupt
(
irq
,
NULL
,
regs
);
if
(
!
r2
||
(
read_c0_cause
()
&
(
1
<<
30
)))
timer_interrupt
(
irq
,
NULL
,
regs
);
out:
irq_exit
();
}
...
...
arch/mips/mips-boards/generic/time.c
浏览文件 @
ba339c03
...
...
@@ -75,16 +75,29 @@ static void mips_timer_dispatch (struct pt_regs *regs)
do_IRQ
(
mips_cpu_timer_irq
,
regs
);
}
extern
int
null_perf_irq
(
struct
pt_regs
*
regs
);
extern
int
(
*
perf_irq
)(
struct
pt_regs
*
regs
);
irqreturn_t
mips_timer_interrupt
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
)
{
int
r2
=
cpu_has_mips_r2
;
int
cpu
=
smp_processor_id
();
if
(
cpu
==
0
)
{
/*
* CPU 0 handles the global timer interrupt job and process accounting
* resets count/compare registers to trigger next timer int.
* CPU 0 handles the global timer interrupt job and process
* accounting resets count/compare registers to trigger next
* timer int.
*/
timer_interrupt
(
irq
,
dev_id
,
regs
);
if
(
!
r2
||
(
read_c0_cause
()
&
(
1
<<
26
)))
if
(
perf_irq
(
regs
))
goto
out
;
/* we keep interrupt disabled all the time */
if
(
!
r2
||
(
read_c0_cause
()
&
(
1
<<
30
)))
timer_interrupt
(
irq
,
NULL
,
regs
);
scroll_display_message
();
}
else
{
/* Everyone else needs to reset the timer int here as
...
...
@@ -101,6 +114,7 @@ irqreturn_t mips_timer_interrupt(int irq, void *dev_id, struct pt_regs *regs)
local_timer_interrupt
(
irq
,
dev_id
,
regs
);
}
out:
return
IRQ_HANDLED
;
}
...
...
arch/mips/oprofile/op_impl.h
浏览文件 @
ba339c03
...
...
@@ -12,8 +12,8 @@
struct
pt_regs
;
extern
void
null_perf_irq
(
struct
pt_regs
*
regs
);
extern
void
(
*
perf_irq
)(
struct
pt_regs
*
regs
);
extern
int
null_perf_irq
(
struct
pt_regs
*
regs
);
extern
int
(
*
perf_irq
)(
struct
pt_regs
*
regs
);
/* Per-counter configuration as set via oprofilefs. */
struct
op_counter_config
{
...
...
arch/mips/oprofile/op_model_mipsxx.c
浏览文件 @
ba339c03
...
...
@@ -114,11 +114,12 @@ static void mipsxx_cpu_stop(void *args)
}
}
static
void
mipsxx_perfcount_handler
(
struct
pt_regs
*
regs
)
static
int
mipsxx_perfcount_handler
(
struct
pt_regs
*
regs
)
{
unsigned
int
counters
=
op_model_mipsxx
.
num_counters
;
unsigned
int
control
;
unsigned
int
counter
;
int
handled
=
0
;
switch
(
counters
)
{
#define HANDLE_COUNTER(n) \
...
...
@@ -129,12 +130,15 @@ static void mipsxx_perfcount_handler(struct pt_regs *regs)
(counter & M_COUNTER_OVERFLOW)) { \
oprofile_add_sample(regs, n); \
write_c0_perfcntr ## n(reg.counter[n]); \
handled = 1; \
}
HANDLE_COUNTER
(
3
)
HANDLE_COUNTER
(
2
)
HANDLE_COUNTER
(
1
)
HANDLE_COUNTER
(
0
)
}
return
handled
;
}
#define M_CONFIG1_PC (1 << 4)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录