Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
ecf726f5
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看板
提交
ecf726f5
编写于
8月 09, 2011
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ALSA: hda - Add tracepoint for unsolicited events
Signed-off-by:
N
Takashi Iwai
<
tiwai@suse.de
>
上级
d11b7fa3
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
25 addition
and
1 deletion
+25
-1
Documentation/sound/alsa/HD-Audio.txt
Documentation/sound/alsa/HD-Audio.txt
+2
-1
sound/pci/hda/hda_codec.c
sound/pci/hda/hda_codec.c
+1
-0
sound/pci/hda/hda_trace.h
sound/pci/hda/hda_trace.h
+22
-0
未找到文件。
Documentation/sound/alsa/HD-Audio.txt
浏览文件 @
ecf726f5
...
...
@@ -529,7 +529,8 @@ Tracepoints
The hd-audio driver gives a few basic tracepoints.
`hda:hda_send_cmd` traces each CORB write while `hda:hda_get_response`
traces the response from RIRB (only when read from the codec driver).
`hda:hda_bus_reset` traces the bus-reset due to fatal error, etc, and
`hda:hda_bus_reset` traces the bus-reset due to fatal error, etc,
`hda:hda_unsol_event` traces the unsolicited events, and
`hda:hda_power_down` and `hda:hda_power_up` trace the power down/up
via power-saving behavior.
...
...
sound/pci/hda/hda_codec.c
浏览文件 @
ecf726f5
...
...
@@ -610,6 +610,7 @@ int snd_hda_queue_unsol_event(struct hda_bus *bus, u32 res, u32 res_ex)
struct
hda_bus_unsolicited
*
unsol
;
unsigned
int
wp
;
trace_hda_unsol_event
(
bus
,
res
,
res_ex
);
unsol
=
bus
->
unsol
;
if
(
!
unsol
)
return
0
;
...
...
sound/pci/hda/hda_trace.h
浏览文件 @
ecf726f5
...
...
@@ -87,6 +87,28 @@ DEFINE_EVENT(hda_power, hda_power_up,
TP_ARGS
(
codec
)
);
TRACE_EVENT
(
hda_unsol_event
,
TP_PROTO
(
struct
hda_bus
*
bus
,
u32
res
,
u32
res_ex
),
TP_ARGS
(
bus
,
res
,
res_ex
),
TP_STRUCT__entry
(
__field
(
unsigned
int
,
card
)
__field
(
u32
,
res
)
__field
(
u32
,
res_ex
)
),
TP_fast_assign
(
__entry
->
card
=
(
bus
)
->
card
->
number
;
__entry
->
res
=
res
;
__entry
->
res_ex
=
res_ex
;
),
TP_printk
(
"[%d] res=%x, res_ex=%x"
,
__entry
->
card
,
__entry
->
res
,
__entry
->
res_ex
)
);
#endif
/* _TRACE_HDA_H */
/* This part must be outside protection */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录