Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
4bd61359
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看板
提交
4bd61359
编写于
4月 16, 2016
作者:
V
Vinod Koul
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'fix/omap' into fixes
上级
09c505ce
b96c033c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
17 addition
and
9 deletion
+17
-9
drivers/dma/omap-dma.c
drivers/dma/omap-dma.c
+17
-9
未找到文件。
drivers/dma/omap-dma.c
浏览文件 @
4bd61359
...
...
@@ -48,6 +48,7 @@ struct omap_chan {
unsigned
dma_sig
;
bool
cyclic
;
bool
paused
;
bool
running
;
int
dma_ch
;
struct
omap_desc
*
desc
;
...
...
@@ -294,6 +295,8 @@ static void omap_dma_start(struct omap_chan *c, struct omap_desc *d)
/* Enable channel */
omap_dma_chan_write
(
c
,
CCR
,
d
->
ccr
|
CCR_ENABLE
);
c
->
running
=
true
;
}
static
void
omap_dma_stop
(
struct
omap_chan
*
c
)
...
...
@@ -355,6 +358,8 @@ static void omap_dma_stop(struct omap_chan *c)
omap_dma_chan_write
(
c
,
CLNK_CTRL
,
val
);
}
c
->
running
=
false
;
}
static
void
omap_dma_start_sg
(
struct
omap_chan
*
c
,
struct
omap_desc
*
d
,
...
...
@@ -673,15 +678,20 @@ static enum dma_status omap_dma_tx_status(struct dma_chan *chan,
struct
omap_chan
*
c
=
to_omap_dma_chan
(
chan
);
struct
virt_dma_desc
*
vd
;
enum
dma_status
ret
;
uint32_t
ccr
;
unsigned
long
flags
;
ccr
=
omap_dma_chan_read
(
c
,
CCR
);
/* The channel is no longer active, handle the completion right away */
if
(
!
(
ccr
&
CCR_ENABLE
))
omap_dma_callback
(
c
->
dma_ch
,
0
,
c
);
ret
=
dma_cookie_status
(
chan
,
cookie
,
txstate
);
if
(
!
c
->
paused
&&
c
->
running
)
{
uint32_t
ccr
=
omap_dma_chan_read
(
c
,
CCR
);
/*
* The channel is no longer active, set the return value
* accordingly
*/
if
(
!
(
ccr
&
CCR_ENABLE
))
ret
=
DMA_COMPLETE
;
}
if
(
ret
==
DMA_COMPLETE
||
!
txstate
)
return
ret
;
...
...
@@ -945,9 +955,7 @@ static struct dma_async_tx_descriptor *omap_dma_prep_dma_memcpy(
d
->
ccr
=
c
->
ccr
;
d
->
ccr
|=
CCR_DST_AMODE_POSTINC
|
CCR_SRC_AMODE_POSTINC
;
d
->
cicr
=
CICR_DROP_IE
;
if
(
tx_flags
&
DMA_PREP_INTERRUPT
)
d
->
cicr
|=
CICR_FRAME_IE
;
d
->
cicr
=
CICR_DROP_IE
|
CICR_FRAME_IE
;
d
->
csdp
=
data_type
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录