Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
0c5f4506
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看板
提交
0c5f4506
编写于
6月 17, 2013
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'asoc/topic/sn95031' into asoc-next
上级
14345a58
3eb28d3c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
16 addition
and
20 deletion
+16
-20
sound/soc/codecs/ab8500-codec.c
sound/soc/codecs/ab8500-codec.c
+6
-0
sound/soc/codecs/sn95031.c
sound/soc/codecs/sn95031.c
+1
-1
sound/soc/ux500/mop500.c
sound/soc/ux500/mop500.c
+1
-1
sound/soc/ux500/mop500_ab8500.c
sound/soc/ux500/mop500_ab8500.c
+8
-18
未找到文件。
sound/soc/codecs/ab8500-codec.c
浏览文件 @
0c5f4506
...
...
@@ -1496,6 +1496,12 @@ static const char * const enum_ad_to_slot_map[] = {"AD_OUT1",
"AD_OUT7"
,
"AD_OUT8"
,
"zeroes"
,
"zeroes"
,
"zeroes"
,
"zeroes"
,
"tristate"
,
"tristate"
,
"tristate"
,
"tristate"
};
static
SOC_ENUM_SINGLE_DECL
(
soc_enum_adslot0map
,
AB8500_ADSLOTSEL1
,
AB8500_ADSLOTSELX_EVEN_SHIFT
,
...
...
sound/soc/codecs/sn95031.c
浏览文件 @
0c5f4506
...
...
@@ -883,7 +883,7 @@ static int sn95031_codec_remove(struct snd_soc_codec *codec)
return
0
;
}
struct
snd_soc_codec_driver
sn95031_codec
=
{
st
atic
st
ruct
snd_soc_codec_driver
sn95031_codec
=
{
.
probe
=
sn95031_codec_probe
,
.
remove
=
sn95031_codec_remove
,
.
read
=
sn95031_read
,
...
...
sound/soc/ux500/mop500.c
浏览文件 @
0c5f4506
...
...
@@ -27,7 +27,7 @@
#include "mop500_ab8500.h"
/* Define the whole MOP500 soundcard, linking platform to the codec-drivers */
struct
snd_soc_dai_link
mop500_dai_links
[]
=
{
st
atic
st
ruct
snd_soc_dai_link
mop500_dai_links
[]
=
{
{
.
name
=
"ab8500_0"
,
.
stream_name
=
"ab8500_0"
,
...
...
sound/soc/ux500/mop500_ab8500.c
浏览文件 @
0c5f4506
...
...
@@ -125,9 +125,9 @@ static int mop500_ab8500_set_mclk(struct device *dev,
static
int
mclk_input_control_get
(
struct
snd_kcontrol
*
kcontrol
,
struct
snd_ctl_elem_value
*
ucontrol
)
{
struct
snd_soc_c
odec
*
codec
=
snd_kcontrol_chip
(
kcontrol
);
struct
snd_soc_c
ard
*
card
=
snd_kcontrol_chip
(
kcontrol
);
struct
mop500_ab8500_drvdata
*
drvdata
=
snd_soc_card_get_drvdata
(
c
odec
->
c
ard
);
snd_soc_card_get_drvdata
(
card
);
ucontrol
->
value
.
enumerated
.
item
[
0
]
=
drvdata
->
mclk_sel
;
...
...
@@ -137,9 +137,9 @@ static int mclk_input_control_get(struct snd_kcontrol *kcontrol,
static
int
mclk_input_control_put
(
struct
snd_kcontrol
*
kcontrol
,
struct
snd_ctl_elem_value
*
ucontrol
)
{
struct
snd_soc_c
odec
*
codec
=
snd_kcontrol_chip
(
kcontrol
);
struct
snd_soc_c
ard
*
card
=
snd_kcontrol_chip
(
kcontrol
);
struct
mop500_ab8500_drvdata
*
drvdata
=
snd_soc_card_get_drvdata
(
c
odec
->
c
ard
);
snd_soc_card_get_drvdata
(
card
);
unsigned
int
val
=
ucontrol
->
value
.
enumerated
.
item
[
0
];
if
(
val
>
(
unsigned
int
)
MCLK_ULPCLK
)
...
...
@@ -160,16 +160,6 @@ static struct snd_kcontrol_new mop500_ab8500_ctrls[] = {
SOC_ENUM_EXT
(
"Master Clock Select"
,
soc_enum_mclk
,
mclk_input_control_get
,
mclk_input_control_put
),
/* Digital interface - Clocks */
SOC_SINGLE
(
"Digital Interface Master Generator Switch"
,
AB8500_DIGIFCONF1
,
AB8500_DIGIFCONF1_ENMASTGEN
,
1
,
0
),
SOC_SINGLE
(
"Digital Interface 0 Bit-clock Switch"
,
AB8500_DIGIFCONF1
,
AB8500_DIGIFCONF1_ENFSBITCLK0
,
1
,
0
),
SOC_SINGLE
(
"Digital Interface 1 Bit-clock Switch"
,
AB8500_DIGIFCONF1
,
AB8500_DIGIFCONF1_ENFSBITCLK1
,
1
,
0
),
SOC_DAPM_PIN_SWITCH
(
"Headset Left"
),
SOC_DAPM_PIN_SWITCH
(
"Headset Right"
),
SOC_DAPM_PIN_SWITCH
(
"Earpiece"
),
...
...
@@ -193,7 +183,7 @@ static struct snd_kcontrol_new mop500_ab8500_ctrls[] = {
/* ASoC */
int
mop500_ab8500_startup
(
struct
snd_pcm_substream
*
substream
)
static
int
mop500_ab8500_startup
(
struct
snd_pcm_substream
*
substream
)
{
struct
snd_soc_pcm_runtime
*
rtd
=
substream
->
private_data
;
...
...
@@ -202,7 +192,7 @@ int mop500_ab8500_startup(struct snd_pcm_substream *substream)
snd_soc_card_get_drvdata
(
rtd
->
card
));
}
void
mop500_ab8500_shutdown
(
struct
snd_pcm_substream
*
substream
)
static
void
mop500_ab8500_shutdown
(
struct
snd_pcm_substream
*
substream
)
{
struct
snd_soc_pcm_runtime
*
rtd
=
substream
->
private_data
;
struct
device
*
dev
=
rtd
->
card
->
dev
;
...
...
@@ -216,7 +206,7 @@ void mop500_ab8500_shutdown(struct snd_pcm_substream *substream)
rx_slots
=
DEF_RX_SLOTS
;
}
int
mop500_ab8500_hw_params
(
struct
snd_pcm_substream
*
substream
,
static
int
mop500_ab8500_hw_params
(
struct
snd_pcm_substream
*
substream
,
struct
snd_pcm_hw_params
*
params
)
{
struct
snd_soc_pcm_runtime
*
rtd
=
substream
->
private_data
;
...
...
@@ -385,7 +375,7 @@ int mop500_ab8500_machine_init(struct snd_soc_pcm_runtime *rtd)
drvdata
->
mclk_sel
=
MCLK_ULPCLK
;
/* Add controls */
ret
=
snd_soc_add_c
odec_controls
(
codec
,
mop500_ab8500_ctrls
,
ret
=
snd_soc_add_c
ard_controls
(
codec
->
card
,
mop500_ab8500_ctrls
,
ARRAY_SIZE
(
mop500_ab8500_ctrls
));
if
(
ret
<
0
)
{
pr_err
(
"%s: Failed to add machine-controls (%d)!
\n
"
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录