Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
90d561be
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
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看板
提交
90d561be
编写于
9月 01, 2013
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'asoc/topic/fsl' into tmp
上级
59a3aed7
a90e6053
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
23 addition
and
7 deletion
+23
-7
include/sound/soc.h
include/sound/soc.h
+4
-0
sound/soc/fsl/Makefile
sound/soc/fsl/Makefile
+1
-1
sound/soc/fsl/fsl_spdif.c
sound/soc/fsl/fsl_spdif.c
+6
-6
sound/soc/mxs/mxs-sgtl5000.c
sound/soc/mxs/mxs-sgtl5000.c
+2
-0
sound/soc/soc-pcm.c
sound/soc/soc-pcm.c
+10
-0
未找到文件。
include/sound/soc.h
浏览文件 @
90d561be
...
...
@@ -930,6 +930,10 @@ struct snd_soc_dai_link {
/* machine stream operations */
const
struct
snd_soc_ops
*
ops
;
const
struct
snd_soc_compr_ops
*
compr_ops
;
/* For unidirectional dai links */
bool
playback_only
;
bool
capture_only
;
};
struct
snd_soc_codec_conf
{
...
...
sound/soc/fsl/Makefile
浏览文件 @
90d561be
...
...
@@ -45,7 +45,7 @@ snd-soc-mx27vis-aic32x4-objs := mx27vis-aic32x4.o
snd-soc-wm1133-ev1-objs
:=
wm1133-ev1.o
snd-soc-imx-sgtl5000-objs
:=
imx-sgtl5000.o
snd-soc-imx-wm8962-objs
:=
imx-wm8962.o
snd-soc-imx-spdif-objs
:=
imx-spdif.o
snd-soc-imx-spdif-objs
:=
imx-spdif.o
snd-soc-imx-mc13783-objs
:=
imx-mc13783.o
obj-$(CONFIG_SND_SOC_EUKREA_TLV320)
+=
snd-soc-eukrea-tlv320.o
...
...
sound/soc/fsl/fsl_spdif.c
浏览文件 @
90d561be
...
...
@@ -411,8 +411,8 @@ static int spdif_set_sample_rate(struct snd_pcm_substream *substream,
return
0
;
}
int
fsl_spdif_startup
(
struct
snd_pcm_substream
*
substream
,
struct
snd_soc_dai
*
cpu_dai
)
static
int
fsl_spdif_startup
(
struct
snd_pcm_substream
*
substream
,
struct
snd_soc_dai
*
cpu_dai
)
{
struct
snd_soc_pcm_runtime
*
rtd
=
substream
->
private_data
;
struct
fsl_spdif_priv
*
spdif_priv
=
snd_soc_dai_get_drvdata
(
rtd
->
cpu_dai
);
...
...
@@ -546,7 +546,7 @@ static int fsl_spdif_trigger(struct snd_pcm_substream *substream,
return
0
;
}
struct
snd_soc_dai_ops
fsl_spdif_dai_ops
=
{
st
atic
st
ruct
snd_soc_dai_ops
fsl_spdif_dai_ops
=
{
.
startup
=
fsl_spdif_startup
,
.
hw_params
=
fsl_spdif_hw_params
,
.
trigger
=
fsl_spdif_trigger
,
...
...
@@ -919,7 +919,7 @@ static int fsl_spdif_dai_probe(struct snd_soc_dai *dai)
return
0
;
}
struct
snd_soc_dai_driver
fsl_spdif_dai
=
{
st
atic
st
ruct
snd_soc_dai_driver
fsl_spdif_dai
=
{
.
probe
=
&
fsl_spdif_dai_probe
,
.
playback
=
{
.
channels_min
=
2
,
...
...
@@ -1071,9 +1071,9 @@ static int fsl_spdif_probe_txclk(struct fsl_spdif_priv *spdif_priv,
break
;
}
dev_dbg
(
&
pdev
->
dev
,
"use rxtx%d as tx clock source for %dHz sample rate"
,
dev_dbg
(
&
pdev
->
dev
,
"use rxtx%d as tx clock source for %dHz sample rate
\n
"
,
spdif_priv
->
txclk_src
[
index
],
rate
[
index
]);
dev_dbg
(
&
pdev
->
dev
,
"use divisor %d for %dHz sample rate"
,
dev_dbg
(
&
pdev
->
dev
,
"use divisor %d for %dHz sample rate
\n
"
,
spdif_priv
->
txclk_div
[
index
],
rate
[
index
]);
return
0
;
...
...
sound/soc/mxs/mxs-sgtl5000.c
浏览文件 @
90d561be
...
...
@@ -105,11 +105,13 @@ static struct snd_soc_dai_link mxs_sgtl5000_dai[] = {
.
stream_name
=
"HiFi Playback"
,
.
codec_dai_name
=
"sgtl5000"
,
.
ops
=
&
mxs_sgtl5000_hifi_ops
,
.
playback_only
=
true
,
},
{
.
name
=
"HiFi Rx"
,
.
stream_name
=
"HiFi Capture"
,
.
codec_dai_name
=
"sgtl5000"
,
.
ops
=
&
mxs_sgtl5000_hifi_ops
,
.
capture_only
=
true
,
},
};
...
...
sound/soc/soc-pcm.c
浏览文件 @
90d561be
...
...
@@ -2020,6 +2020,16 @@ int soc_new_pcm(struct snd_soc_pcm_runtime *rtd, int num)
capture
=
1
;
}
if
(
rtd
->
dai_link
->
playback_only
)
{
playback
=
1
;
capture
=
0
;
}
if
(
rtd
->
dai_link
->
capture_only
)
{
playback
=
0
;
capture
=
1
;
}
/* create the PCM */
if
(
rtd
->
dai_link
->
no_pcm
)
{
snprintf
(
new_name
,
sizeof
(
new_name
),
"(%s)"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录