Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
3425df48
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
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看板
提交
3425df48
编写于
2月 10, 2011
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nv50-nvc0: unmap buffers from the vm when they're evicted
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
a4154bbf
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
36 addition
and
7 deletion
+36
-7
drivers/gpu/drm/nouveau/nouveau_bo.c
drivers/gpu/drm/nouveau/nouveau_bo.c
+29
-7
drivers/gpu/drm/nouveau/nouveau_drv.h
drivers/gpu/drm/nouveau/nouveau_drv.h
+1
-0
drivers/gpu/drm/nouveau/nouveau_mem.c
drivers/gpu/drm/nouveau/nouveau_mem.c
+6
-0
未找到文件。
drivers/gpu/drm/nouveau/nouveau_bo.c
浏览文件 @
3425df48
...
...
@@ -508,10 +508,12 @@ nvc0_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
int
ret
;
src_offset
=
old_mem
->
start
<<
PAGE_SHIFT
;
if
(
old_mem
->
mem_type
==
TTM_PL_VRAM
)
src_offset
=
nvbo
->
vma
.
offset
;
else
if
(
old_mem
->
mem_type
==
TTM_PL_VRAM
)
{
struct
nouveau_vram
*
node
=
old_mem
->
mm_node
;
src_offset
=
node
->
tmp_vma
.
offset
;
}
else
{
src_offset
+=
dev_priv
->
gart_info
.
aper_base
;
}
dst_offset
=
new_mem
->
start
<<
PAGE_SHIFT
;
if
(
new_mem
->
mem_type
==
TTM_PL_VRAM
)
...
...
@@ -559,10 +561,12 @@ nv50_bo_move_m2mf(struct nouveau_channel *chan, struct ttm_buffer_object *bo,
int
ret
;
src_offset
=
old_mem
->
start
<<
PAGE_SHIFT
;
if
(
old_mem
->
mem_type
==
TTM_PL_VRAM
)
src_offset
=
nvbo
->
vma
.
offset
;
else
if
(
old_mem
->
mem_type
==
TTM_PL_VRAM
)
{
struct
nouveau_vram
*
node
=
old_mem
->
mm_node
;
src_offset
=
node
->
tmp_vma
.
offset
;
}
else
{
src_offset
+=
dev_priv
->
gart_info
.
aper_base
;
}
dst_offset
=
new_mem
->
start
<<
PAGE_SHIFT
;
if
(
new_mem
->
mem_type
==
TTM_PL_VRAM
)
...
...
@@ -711,6 +715,7 @@ nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr,
{
struct
drm_nouveau_private
*
dev_priv
=
nouveau_bdev
(
bo
->
bdev
);
struct
nouveau_bo
*
nvbo
=
nouveau_bo
(
bo
);
struct
ttm_mem_reg
*
old_mem
=
&
bo
->
mem
;
struct
nouveau_channel
*
chan
;
int
ret
;
...
...
@@ -720,6 +725,21 @@ nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr,
mutex_lock_nested
(
&
chan
->
mutex
,
NOUVEAU_KCHANNEL_MUTEX
);
}
/* create temporary vma for old memory, this will get cleaned
* up after ttm destroys the ttm_mem_reg
*/
if
(
dev_priv
->
card_type
>=
NV_50
&&
old_mem
->
mem_type
==
TTM_PL_VRAM
)
{
struct
nouveau_vram
*
node
=
old_mem
->
mm_node
;
ret
=
nouveau_vm_get
(
chan
->
vm
,
old_mem
->
num_pages
<<
PAGE_SHIFT
,
nvbo
->
vma
.
node
->
type
,
NV_MEM_ACCESS_RO
,
&
node
->
tmp_vma
);
if
(
ret
)
goto
out
;
nouveau_vm_map
(
&
node
->
tmp_vma
,
node
);
}
if
(
dev_priv
->
card_type
<
NV_50
)
ret
=
nv04_bo_move_m2mf
(
chan
,
bo
,
&
bo
->
mem
,
new_mem
);
else
...
...
@@ -733,6 +753,7 @@ nouveau_bo_move_m2mf(struct ttm_buffer_object *bo, int evict, bool intr,
no_wait_gpu
,
new_mem
);
}
out:
if
(
chan
==
dev_priv
->
channel
)
mutex_unlock
(
&
chan
->
mutex
);
return
ret
;
...
...
@@ -811,7 +832,7 @@ nouveau_bo_move_ntfy(struct ttm_buffer_object *bo, struct ttm_mem_reg *new_mem)
struct
drm_nouveau_private
*
dev_priv
=
nouveau_bdev
(
bo
->
bdev
);
struct
nouveau_bo
*
nvbo
=
nouveau_bo
(
bo
);
if
(
dev_priv
->
card_type
<
NV_50
||
nvbo
->
no_vm
)
if
(
dev_priv
->
card_type
<
NV_50
)
return
;
switch
(
new_mem
->
mem_type
)
{
...
...
@@ -820,6 +841,7 @@ nouveau_bo_move_ntfy(struct ttm_buffer_object *bo, struct ttm_mem_reg *new_mem)
break
;
case
TTM_PL_TT
:
default:
nouveau_vm_unmap
(
&
nvbo
->
vma
);
break
;
}
}
...
...
drivers/gpu/drm/nouveau/nouveau_drv.h
浏览文件 @
3425df48
...
...
@@ -69,6 +69,7 @@ struct nouveau_vram {
struct
drm_device
*
dev
;
struct
nouveau_vma
bar_vma
;
struct
nouveau_vma
tmp_vma
;
u8
page_shift
;
struct
list_head
regions
;
...
...
drivers/gpu/drm/nouveau/nouveau_mem.c
浏览文件 @
3425df48
...
...
@@ -710,8 +710,14 @@ nouveau_vram_manager_del(struct ttm_mem_type_manager *man,
{
struct
drm_nouveau_private
*
dev_priv
=
nouveau_bdev
(
man
->
bdev
);
struct
nouveau_vram_engine
*
vram
=
&
dev_priv
->
engine
.
vram
;
struct
nouveau_vram
*
node
=
mem
->
mm_node
;
struct
drm_device
*
dev
=
dev_priv
->
dev
;
if
(
node
->
tmp_vma
.
node
)
{
nouveau_vm_unmap
(
&
node
->
tmp_vma
);
nouveau_vm_put
(
&
node
->
tmp_vma
);
}
vram
->
put
(
dev
,
(
struct
nouveau_vram
**
)
&
mem
->
mm_node
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录