Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
4ec5c969
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
4ec5c969
编写于
7月 06, 2009
作者:
M
Mark Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'for-2.6.31' into for-2.6.32
上级
1e30a582
637a935a
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
21 addition
and
4 deletion
+21
-4
sound/soc/codecs/wm8753.c
sound/soc/codecs/wm8753.c
+3
-3
sound/soc/fsl/mpc5200_dma.c
sound/soc/fsl/mpc5200_dma.c
+1
-0
sound/soc/fsl/mpc5200_dma.h
sound/soc/fsl/mpc5200_dma.h
+1
-0
sound/soc/fsl/mpc5200_psc_ac97.c
sound/soc/fsl/mpc5200_psc_ac97.c
+16
-1
未找到文件。
sound/soc/codecs/wm8753.c
浏览文件 @
4ec5c969
...
...
@@ -79,7 +79,7 @@ static const u16 wm8753_reg[] = {
0x0097
,
0x0097
,
0x0000
,
0x0004
,
0x0000
,
0x0083
,
0x0024
,
0x01ba
,
0x0000
,
0x0083
,
0x0024
,
0x01ba
,
0x0000
,
0x0000
0x0000
,
0x0000
,
0x0000
};
/* codec private data */
...
...
@@ -1660,11 +1660,11 @@ static int wm8753_register(struct wm8753_priv *wm8753)
codec
->
set_bias_level
=
wm8753_set_bias_level
;
codec
->
dai
=
wm8753_dai
;
codec
->
num_dai
=
2
;
codec
->
reg_cache_size
=
ARRAY_SIZE
(
wm8753
->
reg_cache
);
codec
->
reg_cache_size
=
ARRAY_SIZE
(
wm8753
->
reg_cache
)
+
1
;
codec
->
reg_cache
=
&
wm8753
->
reg_cache
;
codec
->
private_data
=
wm8753
;
memcpy
(
codec
->
reg_cache
,
wm8753_reg
,
sizeof
(
codec
->
reg_cache
));
memcpy
(
codec
->
reg_cache
,
wm8753_reg
,
sizeof
(
wm8753
->
reg_cache
));
INIT_DELAYED_WORK
(
&
codec
->
delayed_work
,
wm8753_work
);
ret
=
wm8753_reset
(
codec
);
...
...
sound/soc/fsl/mpc5200_dma.c
浏览文件 @
4ec5c969
...
...
@@ -456,6 +456,7 @@ int mpc5200_audio_dma_create(struct of_device *op)
return
-
ENODEV
;
spin_lock_init
(
&
psc_dma
->
lock
);
mutex_init
(
&
psc_dma
->
mutex
);
psc_dma
->
id
=
be32_to_cpu
(
*
prop
);
psc_dma
->
irq
=
irq
;
psc_dma
->
psc_regs
=
regs
;
...
...
sound/soc/fsl/mpc5200_dma.h
浏览文件 @
4ec5c969
...
...
@@ -55,6 +55,7 @@ struct psc_dma {
unsigned
int
irq
;
struct
device
*
dev
;
spinlock_t
lock
;
struct
mutex
mutex
;
u32
sicr
;
uint
sysclk
;
int
imr
;
...
...
sound/soc/fsl/mpc5200_psc_ac97.c
浏览文件 @
4ec5c969
...
...
@@ -34,13 +34,20 @@ static unsigned short psc_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
int
status
;
unsigned
int
val
;
mutex_lock
(
&
psc_dma
->
mutex
);
/* Wait for command send status zero = ready */
status
=
spin_event_timeout
(
!
(
in_be16
(
&
psc_dma
->
psc_regs
->
sr_csr
.
status
)
&
MPC52xx_PSC_SR_CMDSEND
),
100
,
0
);
if
(
status
==
0
)
{
pr_err
(
"timeout on ac97 bus (rdy)
\n
"
);
mutex_unlock
(
&
psc_dma
->
mutex
);
return
-
ENODEV
;
}
/* Force clear the data valid bit */
in_be32
(
&
psc_dma
->
psc_regs
->
ac97_data
);
/* Send the read */
out_be32
(
&
psc_dma
->
psc_regs
->
ac97_cmd
,
(
1
<<
31
)
|
((
reg
&
0x7f
)
<<
24
));
...
...
@@ -50,16 +57,19 @@ static unsigned short psc_ac97_read(struct snd_ac97 *ac97, unsigned short reg)
if
(
status
==
0
)
{
pr_err
(
"timeout on ac97 read (val) %x
\n
"
,
in_be16
(
&
psc_dma
->
psc_regs
->
sr_csr
.
status
));
mutex_unlock
(
&
psc_dma
->
mutex
);
return
-
ENODEV
;
}
/* Get the data */
val
=
in_be32
(
&
psc_dma
->
psc_regs
->
ac97_data
);
if
(((
val
>>
24
)
&
0x7f
)
!=
reg
)
{
pr_err
(
"reg echo error on ac97 read
\n
"
);
mutex_unlock
(
&
psc_dma
->
mutex
);
return
-
ENODEV
;
}
val
=
(
val
>>
8
)
&
0xffff
;
mutex_unlock
(
&
psc_dma
->
mutex
);
return
(
unsigned
short
)
val
;
}
...
...
@@ -68,16 +78,21 @@ static void psc_ac97_write(struct snd_ac97 *ac97,
{
int
status
;
mutex_lock
(
&
psc_dma
->
mutex
);
/* Wait for command status zero = ready */
status
=
spin_event_timeout
(
!
(
in_be16
(
&
psc_dma
->
psc_regs
->
sr_csr
.
status
)
&
MPC52xx_PSC_SR_CMDSEND
),
100
,
0
);
if
(
status
==
0
)
{
pr_err
(
"timeout on ac97 bus (write)
\n
"
);
return
;
goto
out
;
}
/* Write data */
out_be32
(
&
psc_dma
->
psc_regs
->
ac97_cmd
,
((
reg
&
0x7f
)
<<
24
)
|
(
val
<<
8
));
out:
mutex_unlock
(
&
psc_dma
->
mutex
);
}
static
void
psc_ac97_warm_reset
(
struct
snd_ac97
*
ac97
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录