Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
3c57d85d
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看板
提交
3c57d85d
编写于
11月 22, 2013
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nouveau/ttm: tidy up creation of temporary buffer move vmas
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
ab9b18a6
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
21 addition
and
20 deletion
+21
-20
drivers/gpu/drm/nouveau/nouveau_bo.c
drivers/gpu/drm/nouveau/nouveau_bo.c
+21
-20
未找到文件。
drivers/gpu/drm/nouveau/nouveau_bo.c
浏览文件 @
3c57d85d
...
...
@@ -936,19 +936,28 @@ nv04_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
}
static
int
nouveau_
vma_getmap
(
struct
nouveau_channel
*
chan
,
struct
nouveau_bo
*
nv
bo
,
struct
ttm_mem_reg
*
mem
,
struct
nouveau_vma
*
vma
)
nouveau_
bo_move_prep
(
struct
nouveau_drm
*
drm
,
struct
ttm_buffer_object
*
bo
,
struct
ttm_mem_reg
*
mem
)
{
struct
nouveau_mem
*
node
=
mem
->
mm_node
;
struct
nouveau_mem
*
old_node
=
bo
->
mem
.
mm_node
;
struct
nouveau_mem
*
new_node
=
mem
->
mm_node
;
u64
size
=
(
u64
)
mem
->
num_pages
<<
PAGE_SHIFT
;
int
ret
;
ret
=
nouveau_vm_get
(
nv_client
(
chan
->
cli
)
->
vm
,
mem
->
num_pages
<<
PAGE_SHIFT
,
node
->
page_shift
,
NV_MEM_ACCESS_RW
,
vma
);
ret
=
nouveau_vm_get
(
nv_client
(
drm
)
->
vm
,
size
,
old_node
->
page_shift
,
NV_MEM_ACCESS_RW
,
&
old_node
->
vma
[
0
]);
if
(
ret
)
return
ret
;
nouveau_vm_map
(
vma
,
node
);
ret
=
nouveau_vm_get
(
nv_client
(
drm
)
->
vm
,
size
,
new_node
->
page_shift
,
NV_MEM_ACCESS_RW
,
&
old_node
->
vma
[
1
]);
if
(
ret
)
{
nouveau_vm_put
(
&
old_node
->
vma
[
0
]);
return
ret
;
}
nouveau_vm_map
(
&
old_node
->
vma
[
0
],
old_node
);
nouveau_vm_map
(
&
old_node
->
vma
[
1
],
new_node
);
return
0
;
}
...
...
@@ -958,35 +967,27 @@ nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr,
{
struct
nouveau_drm
*
drm
=
nouveau_bdev
(
bo
->
bdev
);
struct
nouveau_channel
*
chan
=
drm
->
ttm
.
chan
;
struct
nouveau_bo
*
nvbo
=
nouveau_bo
(
bo
);
struct
ttm_mem_reg
*
old_mem
=
&
bo
->
mem
;
int
ret
;
mutex_lock_nested
(
&
chan
->
cli
->
mutex
,
SINGLE_DEPTH_NESTING
);
/* create temporary vmas for the transfer and attach them to the
* old nouveau_mem node, these will get cleaned up after ttm has
* destroyed the ttm_mem_reg
*/
if
(
nv_device
(
drm
->
device
)
->
card_type
>=
NV_50
)
{
struct
nouveau_mem
*
node
=
old_mem
->
mm_node
;
ret
=
nouveau_vma_getmap
(
chan
,
nvbo
,
old_mem
,
&
node
->
vma
[
0
]);
if
(
ret
)
goto
out
;
ret
=
nouveau_vma_getmap
(
chan
,
nvbo
,
new_mem
,
&
node
->
vma
[
1
]);
ret
=
nouveau_bo_move_prep
(
drm
,
bo
,
new_mem
);
if
(
ret
)
goto
ou
t
;
return
re
t
;
}
mutex_lock_nested
(
&
chan
->
cli
->
mutex
,
SINGLE_DEPTH_NESTING
);
ret
=
drm
->
ttm
.
move
(
chan
,
bo
,
&
bo
->
mem
,
new_mem
);
if
(
ret
==
0
)
{
struct
nouveau_bo
*
nvbo
=
nouveau_bo
(
bo
);
ret
=
nouveau_bo_move_accel_cleanup
(
chan
,
nvbo
,
evict
,
no_wait_gpu
,
new_mem
);
}
out:
mutex_unlock
(
&
chan
->
cli
->
mutex
);
return
ret
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录