Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
3ef8ac0d
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看板
提交
3ef8ac0d
编写于
9月 12, 2012
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ASoC: wm8737: Convert to direct regmap API usage
Signed-off-by:
N
Mark Brown
<
broonie@opensource.wolfsonmicro.com
>
上级
4f69bb31
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
50 addition
and
25 deletion
+50
-25
sound/soc/codecs/wm8737.c
sound/soc/codecs/wm8737.c
+50
-25
未找到文件。
sound/soc/codecs/wm8737.c
浏览文件 @
3ef8ac0d
...
...
@@ -16,6 +16,7 @@
#include <linux/delay.h>
#include <linux/pm.h>
#include <linux/i2c.h>
#include <linux/regmap.h>
#include <linux/regulator/consumer.h>
#include <linux/spi/spi.h>
#include <linux/slab.h>
...
...
@@ -40,29 +41,39 @@ static const char *wm8737_supply_names[WM8737_NUM_SUPPLIES] = {
/* codec private data */
struct
wm8737_priv
{
enum
snd_soc_control_type
control_type
;
struct
regmap
*
regmap
;
struct
regulator_bulk_data
supplies
[
WM8737_NUM_SUPPLIES
];
unsigned
int
mclk
;
};
static
const
u16
wm8737_reg
[
WM8737_REGISTER_COUNT
]
=
{
0x00C3
,
/* R0 - Left PGA volume */
0x00C3
,
/* R1 - Right PGA volume */
0x0007
,
/* R2 - AUDIO path L */
0x0007
,
/* R3 - AUDIO path R */
0x0000
,
/* R4 - 3D Enhance */
0x0000
,
/* R5 - ADC Control */
0x0000
,
/* R6 - Power Management */
0x000A
,
/* R7 - Audio Format */
0x0000
,
/* R8 - Clocking */
0x000F
,
/* R9 - MIC Preamp Control */
0x0003
,
/* R10 - Misc Bias Control */
0x0000
,
/* R11 - Noise Gate */
0x007C
,
/* R12 - ALC1 */
0x0000
,
/* R13 - ALC2 */
0x0032
,
/* R14 - ALC3 */
static
const
struct
reg_default
wm8737_reg_defaults
[
]
=
{
{
0
,
0x00C3
}
,
/* R0 - Left PGA volume */
{
1
,
0x00C3
}
,
/* R1 - Right PGA volume */
{
2
,
0x0007
}
,
/* R2 - AUDIO path L */
{
3
,
0x0007
}
,
/* R3 - AUDIO path R */
{
4
,
0x0000
}
,
/* R4 - 3D Enhance */
{
5
,
0x0000
}
,
/* R5 - ADC Control */
{
6
,
0x0000
}
,
/* R6 - Power Management */
{
7
,
0x000A
}
,
/* R7 - Audio Format */
{
8
,
0x0000
}
,
/* R8 - Clocking */
{
9
,
0x000F
}
,
/* R9 - MIC Preamp Control */
{
10
,
0x0003
}
,
/* R10 - Misc Bias Control */
{
11
,
0x0000
}
,
/* R11 - Noise Gate */
{
12
,
0x007C
}
,
/* R12 - ALC1 */
{
13
,
0x0000
}
,
/* R13 - ALC2 */
{
14
,
0x0032
}
,
/* R14 - ALC3 */
};
static
bool
wm8737_volatile
(
struct
device
*
dev
,
unsigned
int
reg
)
{
switch
(
reg
)
{
case
WM8737_RESET
:
return
true
;
default:
return
false
;
}
}
static
int
wm8737_reset
(
struct
snd_soc_codec
*
codec
)
{
return
snd_soc_write
(
codec
,
WM8737_RESET
,
0
);
...
...
@@ -479,7 +490,7 @@ static int wm8737_set_bias_level(struct snd_soc_codec *codec,
return
ret
;
}
snd_soc_cache_sync
(
codec
);
regcache_sync
(
wm8737
->
regmap
);
/* Fast VMID ramp at 2*2.5k */
snd_soc_update_bits
(
codec
,
WM8737_MISC_BIAS_CONTROL
,
...
...
@@ -559,7 +570,7 @@ static int wm8737_probe(struct snd_soc_codec *codec)
struct
wm8737_priv
*
wm8737
=
snd_soc_codec_get_drvdata
(
codec
);
int
ret
;
ret
=
snd_soc_codec_set_cache_io
(
codec
,
7
,
9
,
wm8737
->
control_type
);
ret
=
snd_soc_codec_set_cache_io
(
codec
,
7
,
9
,
SND_SOC_REGMAP
);
if
(
ret
!=
0
)
{
dev_err
(
codec
->
dev
,
"Failed to set cache I/O: %d
\n
"
,
ret
);
return
ret
;
...
...
@@ -612,10 +623,6 @@ static struct snd_soc_codec_driver soc_codec_dev_wm8737 = {
.
suspend
=
wm8737_suspend
,
.
resume
=
wm8737_resume
,
.
set_bias_level
=
wm8737_set_bias_level
,
.
reg_cache_size
=
WM8737_REGISTER_COUNT
-
1
,
/* Skip reset */
.
reg_word_size
=
sizeof
(
u16
),
.
reg_cache_default
=
wm8737_reg
,
};
static
const
struct
of_device_id
wm8737_of_match
[]
=
{
...
...
@@ -625,6 +632,18 @@ static const struct of_device_id wm8737_of_match[] = {
MODULE_DEVICE_TABLE
(
of
,
wm8737_of_match
);
static
const
struct
regmap_config
wm8737_regmap
=
{
.
reg_bits
=
7
,
.
val_bits
=
9
,
.
max_register
=
WM8737_MAX_REGISTER
,
.
reg_defaults
=
wm8737_reg_defaults
,
.
num_reg_defaults
=
ARRAY_SIZE
(
wm8737_reg_defaults
),
.
cache_type
=
REGCACHE_RBTREE
,
.
volatile_reg
=
wm8737_volatile
,
};
#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
static
__devinit
int
wm8737_i2c_probe
(
struct
i2c_client
*
i2c
,
const
struct
i2c_device_id
*
id
)
...
...
@@ -647,8 +666,11 @@ static __devinit int wm8737_i2c_probe(struct i2c_client *i2c,
return
ret
;
}
wm8737
->
regmap
=
devm_regmap_init_i2c
(
i2c
,
&
wm8737_regmap
);
if
(
IS_ERR
(
wm8737
->
regmap
))
return
PTR_ERR
(
wm8737
->
regmap
);
i2c_set_clientdata
(
i2c
,
wm8737
);
wm8737
->
control_type
=
SND_SOC_I2C
;
ret
=
snd_soc_register_codec
(
&
i2c
->
dev
,
&
soc_codec_dev_wm8737
,
&
wm8737_dai
,
1
);
...
...
@@ -703,7 +725,10 @@ static int __devinit wm8737_spi_probe(struct spi_device *spi)
return
ret
;
}
wm8737
->
control_type
=
SND_SOC_SPI
;
wm8737
->
regmap
=
devm_regmap_init_spi
(
spi
,
&
wm8737_regmap
);
if
(
IS_ERR
(
wm8737
->
regmap
))
return
PTR_ERR
(
wm8737
->
regmap
);
spi_set_drvdata
(
spi
,
wm8737
);
ret
=
snd_soc_register_codec
(
&
spi
->
dev
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录