Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
1110afbe
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,发现更多精彩内容 >>
提交
1110afbe
编写于
9月 10, 2009
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'topic/ymfpci' into for-linus
* topic/ymfpci: sound: ymfpci: increase timer resolution to 96 kHz
上级
fd30afa4
6e2efaac
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
16 addition
and
5 deletion
+16
-5
include/sound/ymfpci.h
include/sound/ymfpci.h
+1
-0
sound/pci/ymfpci/ymfpci_main.c
sound/pci/ymfpci/ymfpci_main.c
+15
-5
未找到文件。
include/sound/ymfpci.h
浏览文件 @
1110afbe
...
...
@@ -331,6 +331,7 @@ struct snd_ymfpci {
struct
snd_ac97
*
ac97
;
struct
snd_rawmidi
*
rawmidi
;
struct
snd_timer
*
timer
;
unsigned
int
timer_ticks
;
struct
pci_dev
*
pci
;
struct
snd_card
*
card
;
...
...
sound/pci/ymfpci/ymfpci_main.c
浏览文件 @
1110afbe
...
...
@@ -834,7 +834,7 @@ static irqreturn_t snd_ymfpci_interrupt(int irq, void *dev_id)
status
=
snd_ymfpci_readw
(
chip
,
YDSXGR_INTFLAG
);
if
(
status
&
1
)
{
if
(
chip
->
timer
)
snd_timer_interrupt
(
chip
->
timer
,
chip
->
timer
->
s
ticks
);
snd_timer_interrupt
(
chip
->
timer
,
chip
->
timer
_
ticks
);
}
snd_ymfpci_writew
(
chip
,
YDSXGR_INTFLAG
,
status
);
...
...
@@ -1885,8 +1885,18 @@ static int snd_ymfpci_timer_start(struct snd_timer *timer)
unsigned
int
count
;
chip
=
snd_timer_chip
(
timer
);
count
=
(
timer
->
sticks
<<
1
)
-
1
;
spin_lock_irqsave
(
&
chip
->
reg_lock
,
flags
);
if
(
timer
->
sticks
>
1
)
{
chip
->
timer_ticks
=
timer
->
sticks
;
count
=
timer
->
sticks
-
1
;
}
else
{
/*
* Divisor 1 is not allowed; fake it by using divisor 2 and
* counting two ticks for each interrupt.
*/
chip
->
timer_ticks
=
2
;
count
=
2
-
1
;
}
snd_ymfpci_writew
(
chip
,
YDSXGR_TIMERCOUNT
,
count
);
snd_ymfpci_writeb
(
chip
,
YDSXGR_TIMERCTRL
,
0x03
);
spin_unlock_irqrestore
(
&
chip
->
reg_lock
,
flags
);
...
...
@@ -1909,14 +1919,14 @@ static int snd_ymfpci_timer_precise_resolution(struct snd_timer *timer,
unsigned
long
*
num
,
unsigned
long
*
den
)
{
*
num
=
1
;
*
den
=
48
000
;
*
den
=
96
000
;
return
0
;
}
static
struct
snd_timer_hardware
snd_ymfpci_timer_hw
=
{
.
flags
=
SNDRV_TIMER_HW_AUTO
,
.
resolution
=
20833
,
/* 1/fs = 20.8333
...us */
.
ticks
=
0x
8
000
,
.
resolution
=
10417
,
/* 1 / 96 kHz = 10.41666
...us */
.
ticks
=
0x
10
000
,
.
start
=
snd_ymfpci_timer_start
,
.
stop
=
snd_ymfpci_timer_stop
,
.
precise_resolution
=
snd_ymfpci_timer_precise_resolution
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录