Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
9f82b044
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看板
提交
9f82b044
编写于
12月 02, 2012
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'asoc/topic/tlv320aic32x4' into asoc-next
上级
cc43b456
1858fe97
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
28 addition
and
0 deletion
+28
-0
include/sound/tlv320aic32x4.h
include/sound/tlv320aic32x4.h
+1
-0
sound/soc/codecs/tlv320aic32x4.c
sound/soc/codecs/tlv320aic32x4.c
+24
-0
sound/soc/codecs/tlv320aic32x4.h
sound/soc/codecs/tlv320aic32x4.h
+3
-0
未找到文件。
include/sound/tlv320aic32x4.h
浏览文件 @
9f82b044
...
...
@@ -26,6 +26,7 @@ struct aic32x4_pdata {
u32
power_cfg
;
u32
micpga_routing
;
bool
swapdacs
;
int
rstn_gpio
;
};
#endif
sound/soc/codecs/tlv320aic32x4.c
浏览文件 @
9f82b044
...
...
@@ -28,6 +28,7 @@
#include <linux/init.h>
#include <linux/delay.h>
#include <linux/pm.h>
#include <linux/gpio.h>
#include <linux/i2c.h>
#include <linux/cdev.h>
#include <linux/slab.h>
...
...
@@ -65,6 +66,7 @@ struct aic32x4_priv {
u32
power_cfg
;
u32
micpga_routing
;
bool
swapdacs
;
int
rstn_gpio
;
};
/* 0dB min, 1dB steps */
...
...
@@ -627,10 +629,20 @@ static int aic32x4_probe(struct snd_soc_codec *codec)
{
struct
aic32x4_priv
*
aic32x4
=
snd_soc_codec_get_drvdata
(
codec
);
u32
tmp_reg
;
int
ret
;
codec
->
hw_write
=
(
hw_write_t
)
i2c_master_send
;
codec
->
control_data
=
aic32x4
->
control_data
;
if
(
aic32x4
->
rstn_gpio
>=
0
)
{
ret
=
devm_gpio_request_one
(
codec
->
dev
,
aic32x4
->
rstn_gpio
,
GPIOF_OUT_INIT_LOW
,
"tlv320aic32x4 rstn"
);
if
(
ret
!=
0
)
return
ret
;
ndelay
(
10
);
gpio_set_value
(
aic32x4
->
rstn_gpio
,
1
);
}
snd_soc_write
(
codec
,
AIC32X4_RESET
,
0x01
);
/* Power platform configuration */
...
...
@@ -675,6 +687,16 @@ static int aic32x4_probe(struct snd_soc_codec *codec)
ARRAY_SIZE
(
aic32x4_snd_controls
));
aic32x4_add_widgets
(
codec
);
/*
* Workaround: for an unknown reason, the ADC needs to be powered up
* and down for the first capture to work properly. It seems related to
* a HW BUG or some kind of behavior not documented in the datasheet.
*/
tmp_reg
=
snd_soc_read
(
codec
,
AIC32X4_ADCSETUP
);
snd_soc_write
(
codec
,
AIC32X4_ADCSETUP
,
tmp_reg
|
AIC32X4_LADC_EN
|
AIC32X4_RADC_EN
);
snd_soc_write
(
codec
,
AIC32X4_ADCSETUP
,
tmp_reg
);
return
0
;
}
...
...
@@ -713,10 +735,12 @@ static __devinit int aic32x4_i2c_probe(struct i2c_client *i2c,
aic32x4
->
power_cfg
=
pdata
->
power_cfg
;
aic32x4
->
swapdacs
=
pdata
->
swapdacs
;
aic32x4
->
micpga_routing
=
pdata
->
micpga_routing
;
aic32x4
->
rstn_gpio
=
pdata
->
rstn_gpio
;
}
else
{
aic32x4
->
power_cfg
=
0
;
aic32x4
->
swapdacs
=
false
;
aic32x4
->
micpga_routing
=
0
;
aic32x4
->
rstn_gpio
=
-
1
;
}
ret
=
snd_soc_register_codec
(
&
i2c
->
dev
,
...
...
sound/soc/codecs/tlv320aic32x4.h
浏览文件 @
9f82b044
...
...
@@ -94,6 +94,9 @@
#define AIC32X4_WORD_LEN_24BITS 0x02
#define AIC32X4_WORD_LEN_32BITS 0x03
#define AIC32X4_LADC_EN (1 << 7)
#define AIC32X4_RADC_EN (1 << 6)
#define AIC32X4_I2S_MODE 0x00
#define AIC32X4_DSP_MODE 0x01
#define AIC32X4_RIGHT_JUSTIFIED_MODE 0x02
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录