Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
2cbde7ab
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看板
提交
2cbde7ab
编写于
9月 12, 2012
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ASoC: wm8776: Convert to direct regmap API usage
Signed-off-by:
N
Mark Brown
<
broonie@opensource.wolfsonmicro.com
>
上级
22bab8ce
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
60 addition
and
15 deletion
+60
-15
sound/soc/codecs/wm8776.c
sound/soc/codecs/wm8776.c
+60
-15
未找到文件。
sound/soc/codecs/wm8776.c
浏览文件 @
2cbde7ab
...
...
@@ -19,6 +19,7 @@
#include <linux/pm.h>
#include <linux/i2c.h>
#include <linux/of_device.h>
#include <linux/regmap.h>
#include <linux/spi/spi.h>
#include <linux/slab.h>
#include <sound/core.h>
...
...
@@ -37,18 +38,46 @@ enum wm8776_chip_type {
/* codec private data */
struct
wm8776_priv
{
enum
snd_soc_control_type
control_type
;
struct
regmap
*
regmap
;
int
sysclk
[
2
];
};
static
const
u16
wm8776_reg
[
WM8776_CACHEREGNUM
]
=
{
0x79
,
0x79
,
0x79
,
0xff
,
0xff
,
/* 4 */
0xff
,
0x00
,
0x90
,
0x00
,
0x00
,
/* 9 */
0x22
,
0x22
,
0x22
,
0x08
,
0xcf
,
/* 14 */
0xcf
,
0x7b
,
0x00
,
0x32
,
0x00
,
/* 19 */
0xa6
,
0x01
,
0x01
static
const
struct
reg_default
wm8776_reg_defaults
[]
=
{
{
0
,
0x79
},
{
1
,
0x79
},
{
2
,
0x79
},
{
3
,
0xff
},
{
4
,
0xff
},
{
5
,
0xff
},
{
6
,
0x00
},
{
7
,
0x90
},
{
8
,
0x00
},
{
9
,
0x00
},
{
10
,
0x22
},
{
11
,
0x22
},
{
12
,
0x22
},
{
13
,
0x08
},
{
14
,
0xcf
},
{
15
,
0xcf
},
{
16
,
0x7b
},
{
17
,
0x00
},
{
18
,
0x32
},
{
19
,
0x00
},
{
20
,
0xa6
},
{
21
,
0x01
},
{
22
,
0x01
},
};
static
bool
wm8776_volatile
(
struct
device
*
dev
,
unsigned
int
reg
)
{
switch
(
reg
)
{
case
WM8776_RESET
:
return
true
;
default:
return
false
;
}
}
static
int
wm8776_reset
(
struct
snd_soc_codec
*
codec
)
{
return
snd_soc_write
(
codec
,
WM8776_RESET
,
0
);
...
...
@@ -306,6 +335,8 @@ static int wm8776_set_sysclk(struct snd_soc_dai *dai,
static
int
wm8776_set_bias_level
(
struct
snd_soc_codec
*
codec
,
enum
snd_soc_bias_level
level
)
{
struct
wm8776_priv
*
wm8776
=
snd_soc_codec_get_drvdata
(
codec
);
switch
(
level
)
{
case
SND_SOC_BIAS_ON
:
break
;
...
...
@@ -313,7 +344,7 @@ static int wm8776_set_bias_level(struct snd_soc_codec *codec,
break
;
case
SND_SOC_BIAS_STANDBY
:
if
(
codec
->
dapm
.
bias_level
==
SND_SOC_BIAS_OFF
)
{
snd_soc_cache_sync
(
codec
);
regcache_sync
(
wm8776
->
regmap
);
/* Disable the global powerdown; DAPM does the rest */
snd_soc_update_bits
(
codec
,
WM8776_PWRDOWN
,
1
,
0
);
...
...
@@ -396,10 +427,9 @@ static int wm8776_resume(struct snd_soc_codec *codec)
static
int
wm8776_probe
(
struct
snd_soc_codec
*
codec
)
{
struct
wm8776_priv
*
wm8776
=
snd_soc_codec_get_drvdata
(
codec
);
int
ret
=
0
;
ret
=
snd_soc_codec_set_cache_io
(
codec
,
7
,
9
,
wm8776
->
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
;
...
...
@@ -434,9 +464,6 @@ static struct snd_soc_codec_driver soc_codec_dev_wm8776 = {
.
suspend
=
wm8776_suspend
,
.
resume
=
wm8776_resume
,
.
set_bias_level
=
wm8776_set_bias_level
,
.
reg_cache_size
=
ARRAY_SIZE
(
wm8776_reg
),
.
reg_word_size
=
sizeof
(
u16
),
.
reg_cache_default
=
wm8776_reg
,
.
controls
=
wm8776_snd_controls
,
.
num_controls
=
ARRAY_SIZE
(
wm8776_snd_controls
),
...
...
@@ -452,6 +479,18 @@ static const struct of_device_id wm8776_of_match[] = {
};
MODULE_DEVICE_TABLE
(
of
,
wm8776_of_match
);
static
const
struct
regmap_config
wm8776_regmap
=
{
.
reg_bits
=
7
,
.
val_bits
=
9
,
.
max_register
=
WM8776_RESET
,
.
reg_defaults
=
wm8776_reg_defaults
,
.
num_reg_defaults
=
ARRAY_SIZE
(
wm8776_reg_defaults
),
.
cache_type
=
REGCACHE_RBTREE
,
.
volatile_reg
=
wm8776_volatile
,
};
#if defined(CONFIG_SPI_MASTER)
static
int
__devinit
wm8776_spi_probe
(
struct
spi_device
*
spi
)
{
...
...
@@ -463,7 +502,10 @@ static int __devinit wm8776_spi_probe(struct spi_device *spi)
if
(
wm8776
==
NULL
)
return
-
ENOMEM
;
wm8776
->
control_type
=
SND_SOC_SPI
;
wm8776
->
regmap
=
devm_regmap_init_spi
(
spi
,
&
wm8776_regmap
);
if
(
IS_ERR
(
wm8776
->
regmap
))
return
PTR_ERR
(
wm8776
->
regmap
);
spi_set_drvdata
(
spi
,
wm8776
);
ret
=
snd_soc_register_codec
(
&
spi
->
dev
,
...
...
@@ -501,8 +543,11 @@ static __devinit int wm8776_i2c_probe(struct i2c_client *i2c,
if
(
wm8776
==
NULL
)
return
-
ENOMEM
;
wm8776
->
regmap
=
devm_regmap_init_i2c
(
i2c
,
&
wm8776_regmap
);
if
(
IS_ERR
(
wm8776
->
regmap
))
return
PTR_ERR
(
wm8776
->
regmap
);
i2c_set_clientdata
(
i2c
,
wm8776
);
wm8776
->
control_type
=
SND_SOC_I2C
;
ret
=
snd_soc_register_codec
(
&
i2c
->
dev
,
&
soc_codec_dev_wm8776
,
wm8776_dai
,
ARRAY_SIZE
(
wm8776_dai
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录