Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
aaae5272
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看板
提交
aaae5272
编写于
8月 15, 2010
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fix/asoc' into for-linus
上级
18c5ef38
a532f97c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
19 addition
and
11 deletion
+19
-11
MAINTAINERS
MAINTAINERS
+4
-3
sound/soc/codecs/wm8994.c
sound/soc/codecs/wm8994.c
+15
-8
未找到文件。
MAINTAINERS
浏览文件 @
aaae5272
...
...
@@ -6325,8 +6325,9 @@ S: Supported
F: drivers/input/touchscreen/*wm97*
F: include/linux/wm97xx.h
WOLFSON MICROELECTRONICS
PMIC
DRIVERS
WOLFSON MICROELECTRONICS DRIVERS
M: Mark Brown <broonie@opensource.wolfsonmicro.com>
M: Ian Lartey <ian@opensource.wolfsonmicro.com>
T: git git://opensource.wolfsonmicro.com/linux-2.6-audioplus
W: http://opensource.wolfsonmicro.com/node/8
S: Supported
...
...
@@ -6341,8 +6342,8 @@ F: drivers/watchdog/wm83*_wdt.c
F: include/linux/mfd/wm831x/
F: include/linux/mfd/wm8350/
F: include/linux/mfd/wm8400*
F:
sound/soc/codecs/wm8350.*
F: sound/soc/codecs/wm
8400.
*
F:
include/sound/wm????.h
F: sound/soc/codecs/wm*
X.25 NETWORK LAYER
M: Andrew Hendry <andrew.hendry@gmail.com>
...
...
sound/soc/codecs/wm8994.c
浏览文件 @
aaae5272
...
...
@@ -95,6 +95,7 @@ struct wm8994_priv {
struct
wm8994_micdet
micdet
[
2
];
int
revision
;
struct
wm8994_pdata
*
pdata
;
};
...
...
@@ -3070,6 +3071,8 @@ static int wm8994_set_dai_sysclk(struct snd_soc_dai *dai,
static
int
wm8994_set_bias_level
(
struct
snd_soc_codec
*
codec
,
enum
snd_soc_bias_level
level
)
{
struct
wm8994_priv
*
wm8994
=
snd_soc_codec_get_drvdata
(
codec
);
switch
(
level
)
{
case
SND_SOC_BIAS_ON
:
break
;
...
...
@@ -3082,11 +3085,16 @@ static int wm8994_set_bias_level(struct snd_soc_codec *codec,
case
SND_SOC_BIAS_STANDBY
:
if
(
codec
->
bias_level
==
SND_SOC_BIAS_OFF
)
{
/* Tweak DC servo configuration for improved
* performance. */
snd_soc_write
(
codec
,
0x102
,
0x3
);
snd_soc_write
(
codec
,
0x56
,
0x3
);
snd_soc_write
(
codec
,
0x102
,
0
);
/* Tweak DC servo and DSP configuration for
* improved performance. */
if
(
wm8994
->
revision
<
4
)
{
/* Tweak DC servo and DSP configuration for
* improved performance. */
snd_soc_write
(
codec
,
0x102
,
0x3
);
snd_soc_write
(
codec
,
0x56
,
0x3
);
snd_soc_write
(
codec
,
0x817
,
0
);
snd_soc_write
(
codec
,
0x102
,
0
);
}
/* Discharge LINEOUT1 & 2 */
snd_soc_update_bits
(
codec
,
WM8994_ANTIPOP_1
,
...
...
@@ -3919,7 +3927,6 @@ static int wm8994_codec_probe(struct platform_device *pdev)
struct
wm8994_priv
*
wm8994
;
struct
snd_soc_codec
*
codec
;
int
i
;
u16
rev
;
if
(
wm8994_codec
)
{
dev_err
(
&
pdev
->
dev
,
"Another WM8994 is registered
\n
"
);
...
...
@@ -3973,8 +3980,8 @@ static int wm8994_codec_probe(struct platform_device *pdev)
wm8994
->
reg_cache
[
i
]
=
0
;
/* Set revision-specific configuration */
rev
=
snd_soc_read
(
codec
,
WM8994_CHIP_REVISION
);
switch
(
rev
)
{
wm8994
->
revision
=
snd_soc_read
(
codec
,
WM8994_CHIP_REVISION
);
switch
(
wm8994
->
revision
)
{
case
2
:
case
3
:
wm8994
->
hubs
.
dcs_codes
=
-
5
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录