Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
c5541079
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看板
提交
c5541079
编写于
6月 25, 2009
作者:
A
Arve Hjønnevåg
提交者:
Daniel Walker
5月 12, 2010
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ARM] msm: dma: Enable dma clock while dma is active
Signed-off-by:
N
Arve Hjønnevåg
<
arve@android.com
>
上级
a6407dd7
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
16 addition
and
1 deletion
+16
-1
arch/arm/mach-msm/dma.c
arch/arm/mach-msm/dma.c
+16
-1
未找到文件。
arch/arm/mach-msm/dma.c
浏览文件 @
c5541079
...
...
@@ -13,6 +13,8 @@
*
*/
#include <linux/clk.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/interrupt.h>
#include <mach/dma.h>
...
...
@@ -26,6 +28,7 @@ enum {
};
static
DEFINE_SPINLOCK
(
msm_dmov_lock
);
static
struct
clk
*
msm_dmov_clk
;
static
unsigned
int
channel_active
;
static
struct
list_head
ready_commands
[
MSM_DMOV_CHANNEL_COUNT
];
static
struct
list_head
active_commands
[
MSM_DMOV_CHANNEL_COUNT
];
...
...
@@ -54,6 +57,8 @@ void msm_dmov_enqueue_cmd(unsigned id, struct msm_dmov_cmd *cmd)
unsigned
int
status
;
spin_lock_irqsave
(
&
msm_dmov_lock
,
irq_flags
);
if
(
!
channel_active
)
clk_enable
(
msm_dmov_clk
);
status
=
readl
(
DMOV_STATUS
(
id
));
if
(
list_empty
(
&
ready_commands
[
id
])
&&
(
status
&
DMOV_STATUS_CMD_PTR_RDY
))
{
...
...
@@ -70,6 +75,8 @@ void msm_dmov_enqueue_cmd(unsigned id, struct msm_dmov_cmd *cmd)
channel_active
|=
1U
<<
id
;
writel
(
cmd
->
cmdptr
,
DMOV_CMD_PTR
(
id
));
}
else
{
if
(
!
channel_active
)
clk_disable
(
msm_dmov_clk
);
if
(
list_empty
(
&
active_commands
[
id
]))
PRINT_ERROR
(
"msm_dmov_enqueue_cmd(%d), error datamover stalled, status %x
\n
"
,
id
,
status
);
...
...
@@ -219,8 +226,10 @@ static irqreturn_t msm_datamover_irq_handler(int irq, void *dev_id)
PRINT_FLOW
(
"msm_datamover_irq_handler id %d, status %x
\n
"
,
id
,
ch_status
);
}
if
(
!
channel_active
)
if
(
!
channel_active
)
{
disable_irq_nosync
(
INT_ADM_AARM
);
clk_disable
(
msm_dmov_clk
);
}
spin_unlock_irqrestore
(
&
msm_dmov_lock
,
irq_flags
);
return
IRQ_HANDLED
;
...
...
@@ -230,11 +239,17 @@ static int __init msm_init_datamover(void)
{
int
i
;
int
ret
;
struct
clk
*
clk
;
for
(
i
=
0
;
i
<
MSM_DMOV_CHANNEL_COUNT
;
i
++
)
{
INIT_LIST_HEAD
(
&
ready_commands
[
i
]);
INIT_LIST_HEAD
(
&
active_commands
[
i
]);
writel
(
DMOV_CONFIG_IRQ_EN
|
DMOV_CONFIG_FORCE_TOP_PTR_RSLT
|
DMOV_CONFIG_FORCE_FLUSH_RSLT
,
DMOV_CONFIG
(
i
));
}
clk
=
clk_get
(
NULL
,
"adm_clk"
);
if
(
IS_ERR
(
clk
))
return
PTR_ERR
(
clk
);
msm_dmov_clk
=
clk
;
ret
=
request_irq
(
INT_ADM_AARM
,
msm_datamover_irq_handler
,
0
,
"msmdatamover"
,
NULL
);
if
(
ret
)
return
ret
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录