Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
c1e0bb92
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
c1e0bb92
编写于
8月 30, 2010
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ALSA: hda - Use new inputs[] field to parse input-pins for CirrusLogic codecs
Signed-off-by:
N
Takashi Iwai
<
tiwai@suse.de
>
上级
fa4968a8
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
17 addition
and
21 deletion
+17
-21
sound/pci/hda/patch_cirrus.c
sound/pci/hda/patch_cirrus.c
+17
-21
未找到文件。
sound/pci/hda/patch_cirrus.c
浏览文件 @
c1e0bb92
...
...
@@ -329,7 +329,7 @@ static int is_ext_mic(struct hda_codec *codec, unsigned int idx)
{
struct
cs_spec
*
spec
=
codec
->
spec
;
struct
auto_pin_cfg
*
cfg
=
&
spec
->
autocfg
;
hda_nid_t
pin
=
cfg
->
input
_pins
[
idx
]
;
hda_nid_t
pin
=
cfg
->
input
s
[
idx
].
pin
;
unsigned
int
val
=
snd_hda_query_pin_caps
(
codec
,
pin
);
if
(
!
(
val
&
AC_PINCAP_PRES_DETECT
))
return
0
;
...
...
@@ -424,10 +424,8 @@ static int parse_input(struct hda_codec *codec)
struct
auto_pin_cfg
*
cfg
=
&
spec
->
autocfg
;
int
i
;
for
(
i
=
0
;
i
<
AUTO_PIN_LAST
;
i
++
)
{
hda_nid_t
pin
=
cfg
->
input_pins
[
i
];
if
(
!
pin
)
continue
;
for
(
i
=
0
;
i
<
cfg
->
num_inputs
;
i
++
)
{
hda_nid_t
pin
=
cfg
->
inputs
[
i
].
pin
;
spec
->
input_idx
[
spec
->
num_inputs
]
=
i
;
spec
->
capsrc_idx
[
i
]
=
spec
->
num_inputs
++
;
spec
->
cur_input
=
i
;
...
...
@@ -438,16 +436,17 @@ static int parse_input(struct hda_codec *codec)
/* check whether the automatic mic switch is available */
if
(
spec
->
num_inputs
==
2
&&
spec
->
adc_nid
[
AUTO_PIN_MIC
]
&&
spec
->
adc_nid
[
AUTO_PIN_FRONT_MIC
])
{
if
(
is_ext_mic
(
codec
,
cfg
->
input_pins
[
AUTO_PIN_FRONT_MIC
]))
{
if
(
!
is_ext_mic
(
codec
,
cfg
->
input_pins
[
AUTO_PIN_MIC
]))
{
cfg
->
inputs
[
0
].
type
<=
AUTO_PIN_FRONT_MIC
&&
cfg
->
inputs
[
1
].
type
==
AUTO_PIN_FRONT_MIC
)
{
if
(
is_ext_mic
(
codec
,
cfg
->
inputs
[
0
].
pin
))
{
if
(
!
is_ext_mic
(
codec
,
cfg
->
inputs
[
1
].
pin
))
{
spec
->
mic_detect
=
1
;
spec
->
automic_idx
=
AUTO_PIN_FRONT_MIC
;
spec
->
automic_idx
=
0
;
}
}
else
{
if
(
is_ext_mic
(
codec
,
cfg
->
input
_pins
[
AUTO_PIN_MIC
]
))
{
if
(
is_ext_mic
(
codec
,
cfg
->
input
s
[
1
].
pin
))
{
spec
->
mic_detect
=
1
;
spec
->
automic_idx
=
AUTO_PIN_MIC
;
spec
->
automic_idx
=
1
;
}
}
}
...
...
@@ -853,15 +852,12 @@ static void cs_automic(struct hda_codec *codec)
hda_nid_t
nid
;
unsigned
int
present
;
nid
=
cfg
->
input
_pins
[
spec
->
automic_idx
]
;
nid
=
cfg
->
input
s
[
spec
->
automic_idx
].
pin
;
present
=
snd_hda_jack_detect
(
codec
,
nid
);
if
(
present
)
change_cur_input
(
codec
,
spec
->
automic_idx
,
0
);
else
{
unsigned
int
imic
=
(
spec
->
automic_idx
==
AUTO_PIN_MIC
)
?
AUTO_PIN_FRONT_MIC
:
AUTO_PIN_MIC
;
change_cur_input
(
codec
,
imic
,
0
);
}
else
change_cur_input
(
codec
,
!
spec
->
automic_idx
,
0
);
}
/*
...
...
@@ -918,14 +914,14 @@ static void init_input(struct hda_codec *codec)
unsigned
int
coef
;
int
i
;
for
(
i
=
0
;
i
<
AUTO_PIN_LAST
;
i
++
)
{
for
(
i
=
0
;
i
<
cfg
->
num_inputs
;
i
++
)
{
unsigned
int
ctl
;
hda_nid_t
pin
=
cfg
->
input
_pins
[
i
]
;
if
(
!
pin
||
!
spec
->
adc_nid
[
i
])
hda_nid_t
pin
=
cfg
->
input
s
[
i
].
pin
;
if
(
!
spec
->
adc_nid
[
i
])
continue
;
/* set appropriate pin control and mute first */
ctl
=
PIN_IN
;
if
(
i
<=
AUTO_PIN_FRONT_MIC
)
{
if
(
cfg
->
inputs
[
i
].
type
<=
AUTO_PIN_FRONT_MIC
)
{
unsigned
int
caps
=
snd_hda_query_pin_caps
(
codec
,
pin
);
caps
>>=
AC_PINCAP_VREF_SHIFT
;
if
(
caps
&
AC_PINCAP_VREF_80
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录