Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
e9b54de4
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
e9b54de4
编写于
5月 09, 2012
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ASoC: wm8994: Add debounce to wm8994 mic detection
Signed-off-by:
N
Mark Brown
<
broonie@opensource.wolfsonmicro.com
>
上级
cbd71f30
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
22 addition
and
7 deletion
+22
-7
sound/soc/codecs/wm8994.c
sound/soc/codecs/wm8994.c
+20
-7
sound/soc/codecs/wm8994.h
sound/soc/codecs/wm8994.h
+2
-0
未找到文件。
sound/soc/codecs/wm8994.c
浏览文件 @
e9b54de4
...
...
@@ -3059,22 +3059,20 @@ int wm8994_mic_detect(struct snd_soc_codec *codec, struct snd_soc_jack *jack,
}
EXPORT_SYMBOL_GPL
(
wm8994_mic_detect
);
static
irqreturn_t
wm8994_mic_irq
(
int
irq
,
void
*
data
)
static
void
wm8994_mic_work
(
struct
work_struct
*
work
)
{
struct
wm8994_priv
*
priv
=
data
;
struct
wm8994_priv
*
priv
=
container_of
(
work
,
struct
wm8994_priv
,
mic_work
.
work
);
struct
snd_soc_codec
*
codec
=
priv
->
codec
;
int
reg
;
int
report
;
#ifndef CONFIG_SND_SOC_WM8994_MODULE
trace_snd_soc_jack_irq
(
dev_name
(
codec
->
dev
));
#endif
reg
=
snd_soc_read
(
codec
,
WM8994_INTERRUPT_RAW_STATUS_2
);
if
(
reg
<
0
)
{
dev_err
(
codec
->
dev
,
"Failed to read microphone status: %d
\n
"
,
reg
);
return
IRQ_HANDLED
;
return
;
}
dev_dbg
(
codec
->
dev
,
"Microphone status: %x
\n
"
,
reg
);
...
...
@@ -3116,6 +3114,20 @@ static irqreturn_t wm8994_mic_irq(int irq, void *data)
snd_soc_jack_report
(
priv
->
micdet
[
1
].
jack
,
report
,
SND_JACK_HEADSET
|
SND_JACK_BTN_0
);
}
static
irqreturn_t
wm8994_mic_irq
(
int
irq
,
void
*
data
)
{
struct
wm8994_priv
*
priv
=
data
;
struct
snd_soc_codec
*
codec
=
priv
->
codec
;
#ifndef CONFIG_SND_SOC_WM8994_MODULE
trace_snd_soc_jack_irq
(
dev_name
(
codec
->
dev
));
#endif
pm_wakeup_event
(
codec
->
dev
,
300
);
schedule_delayed_work
(
&
priv
->
mic_work
,
msecs_to_jiffies
(
250
));
return
IRQ_HANDLED
;
}
...
...
@@ -3488,6 +3500,7 @@ static int wm8994_codec_probe(struct snd_soc_codec *codec)
wm8994
->
codec
=
codec
;
mutex_init
(
&
wm8994
->
accdet_lock
);
INIT_DELAYED_WORK
(
&
wm8994
->
mic_work
,
wm8994_mic_work
);
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
wm8994
->
fll_locked
);
i
++
)
init_completion
(
&
wm8994
->
fll_locked
[
i
]);
...
...
sound/soc/codecs/wm8994.h
浏览文件 @
e9b54de4
...
...
@@ -12,6 +12,7 @@
#include <sound/soc.h>
#include <linux/firmware.h>
#include <linux/completion.h>
#include <linux/workqueue.h>
#include "wm_hubs.h"
...
...
@@ -127,6 +128,7 @@ struct wm8994_priv {
struct
mutex
accdet_lock
;
struct
wm8994_micdet
micdet
[
2
];
struct
delayed_work
mic_work
;
bool
mic_detecting
;
bool
jack_mic
;
int
btn_mask
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录