Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
12e7b4a4
K
Kernel
项目概览
openeuler
/
Kernel
大约 1 年 前同步成功
通知
5
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
12e7b4a4
编写于
10月 26, 2015
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'asoc/topic/dapm' into asoc-next
上级
6439e5c2
93e39a11
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
56 addition
and
6 deletion
+56
-6
include/sound/soc-dapm.h
include/sound/soc-dapm.h
+3
-0
sound/soc/soc-dapm.c
sound/soc/soc-dapm.c
+53
-6
未找到文件。
include/sound/soc-dapm.h
浏览文件 @
12e7b4a4
...
...
@@ -451,6 +451,9 @@ int snd_soc_dapm_dai_get_connected_widgets(struct snd_soc_dai *dai, int stream,
struct
snd_soc_dapm_context
*
snd_soc_dapm_kcontrol_dapm
(
struct
snd_kcontrol
*
kcontrol
);
struct
snd_soc_dapm_widget
*
snd_soc_dapm_kcontrol_widget
(
struct
snd_kcontrol
*
kcontrol
);
int
snd_soc_dapm_force_bias_level
(
struct
snd_soc_dapm_context
*
dapm
,
enum
snd_soc_bias_level
level
);
...
...
sound/soc/soc-dapm.c
浏览文件 @
12e7b4a4
...
...
@@ -508,6 +508,18 @@ static bool dapm_kcontrol_set_value(const struct snd_kcontrol *kcontrol,
return
true
;
}
/**
* snd_soc_dapm_kcontrol_widget() - Returns the widget associated to a
* kcontrol
* @kcontrol: The kcontrol
*/
struct
snd_soc_dapm_widget
*
snd_soc_dapm_kcontrol_widget
(
struct
snd_kcontrol
*
kcontrol
)
{
return
dapm_kcontrol_get_wlist
(
kcontrol
)
->
widgets
[
0
];
}
EXPORT_SYMBOL_GPL
(
snd_soc_dapm_kcontrol_widget
);
/**
* snd_soc_dapm_kcontrol_dapm() - Returns the dapm context associated to a
* kcontrol
...
...
@@ -779,7 +791,7 @@ static int dapm_is_shared_kcontrol(struct snd_soc_dapm_context *dapm,
* Determine if a kcontrol is shared. If it is, look it up. If it isn't,
* create it. Either way, add the widget into the control's widget list
*/
static
int
dapm_create_or_share_
mixmux_
kcontrol
(
struct
snd_soc_dapm_widget
*
w
,
static
int
dapm_create_or_share_kcontrol
(
struct
snd_soc_dapm_widget
*
w
,
int
kci
)
{
struct
snd_soc_dapm_context
*
dapm
=
w
->
dapm
;
...
...
@@ -810,6 +822,7 @@ static int dapm_create_or_share_mixmux_kcontrol(struct snd_soc_dapm_widget *w,
switch
(
w
->
id
)
{
case
snd_soc_dapm_switch
:
case
snd_soc_dapm_mixer
:
case
snd_soc_dapm_pga
:
wname_in_long_name
=
true
;
kcname_in_long_name
=
true
;
break
;
...
...
@@ -899,7 +912,7 @@ static int dapm_new_mixer(struct snd_soc_dapm_widget *w)
continue
;
if
(
!
w
->
kcontrols
[
i
])
{
ret
=
dapm_create_or_share_
mixmux_
kcontrol
(
w
,
i
);
ret
=
dapm_create_or_share_kcontrol
(
w
,
i
);
if
(
ret
<
0
)
return
ret
;
}
...
...
@@ -952,7 +965,7 @@ static int dapm_new_mux(struct snd_soc_dapm_widget *w)
return
-
EINVAL
;
}
ret
=
dapm_create_or_share_
mixmux_
kcontrol
(
w
,
0
);
ret
=
dapm_create_or_share_kcontrol
(
w
,
0
);
if
(
ret
<
0
)
return
ret
;
...
...
@@ -967,9 +980,13 @@ static int dapm_new_mux(struct snd_soc_dapm_widget *w)
/* create new dapm volume control */
static
int
dapm_new_pga
(
struct
snd_soc_dapm_widget
*
w
)
{
if
(
w
->
num_kcontrols
)
dev_err
(
w
->
dapm
->
dev
,
"ASoC: PGA controls not supported: '%s'
\n
"
,
w
->
name
);
int
i
,
ret
;
for
(
i
=
0
;
i
<
w
->
num_kcontrols
;
i
++
)
{
ret
=
dapm_create_or_share_kcontrol
(
w
,
i
);
if
(
ret
<
0
)
return
ret
;
}
return
0
;
}
...
...
@@ -3473,11 +3490,29 @@ static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
switch
(
event
)
{
case
SND_SOC_DAPM_PRE_PMU
:
substream
.
stream
=
SNDRV_PCM_STREAM_CAPTURE
;
if
(
source
->
driver
->
ops
&&
source
->
driver
->
ops
->
startup
)
{
ret
=
source
->
driver
->
ops
->
startup
(
&
substream
,
source
);
if
(
ret
<
0
)
{
dev_err
(
source
->
dev
,
"ASoC: startup() failed: %d
\n
"
,
ret
);
goto
out
;
}
source
->
active
++
;
}
ret
=
soc_dai_hw_params
(
&
substream
,
params
,
source
);
if
(
ret
<
0
)
goto
out
;
substream
.
stream
=
SNDRV_PCM_STREAM_PLAYBACK
;
if
(
sink
->
driver
->
ops
&&
sink
->
driver
->
ops
->
startup
)
{
ret
=
sink
->
driver
->
ops
->
startup
(
&
substream
,
sink
);
if
(
ret
<
0
)
{
dev_err
(
sink
->
dev
,
"ASoC: startup() failed: %d
\n
"
,
ret
);
goto
out
;
}
sink
->
active
++
;
}
ret
=
soc_dai_hw_params
(
&
substream
,
params
,
sink
);
if
(
ret
<
0
)
goto
out
;
...
...
@@ -3497,6 +3532,18 @@ static int snd_soc_dai_link_event(struct snd_soc_dapm_widget *w,
if
(
ret
!=
0
&&
ret
!=
-
ENOTSUPP
)
dev_warn
(
sink
->
dev
,
"ASoC: Failed to mute: %d
\n
"
,
ret
);
ret
=
0
;
source
->
active
--
;
if
(
source
->
driver
->
ops
&&
source
->
driver
->
ops
->
shutdown
)
{
substream
.
stream
=
SNDRV_PCM_STREAM_CAPTURE
;
source
->
driver
->
ops
->
shutdown
(
&
substream
,
source
);
}
sink
->
active
--
;
if
(
sink
->
driver
->
ops
&&
sink
->
driver
->
ops
->
shutdown
)
{
substream
.
stream
=
SNDRV_PCM_STREAM_PLAYBACK
;
sink
->
driver
->
ops
->
shutdown
(
&
substream
,
sink
);
}
break
;
default:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录