Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
c3032adb
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看板
提交
c3032adb
编写于
5月 13, 2013
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nv50/vm: handle bar tlb flushes internally
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
fec43a72
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
5 deletion
+13
-5
drivers/gpu/drm/nouveau/core/include/subdev/vm.h
drivers/gpu/drm/nouveau/core/include/subdev/vm.h
+1
-1
drivers/gpu/drm/nouveau/core/subdev/bar/nv50.c
drivers/gpu/drm/nouveau/core/subdev/bar/nv50.c
+9
-4
drivers/gpu/drm/nouveau/core/subdev/vm/nv50.c
drivers/gpu/drm/nouveau/core/subdev/vm/nv50.c
+3
-0
未找到文件。
drivers/gpu/drm/nouveau/core/include/subdev/vm.h
浏览文件 @
c3032adb
...
...
@@ -58,7 +58,7 @@ struct nouveau_vm {
int
refcount
;
struct
list_head
pgd_list
;
atomic_t
engref
[
64
];
//
NVDEV_SUBDEV_NR];
atomic_t
engref
[
NVDEV_SUBDEV_NR
];
struct
nouveau_vm_pgt
*
pgt
;
u32
fpde
;
...
...
drivers/gpu/drm/nouveau/core/subdev/bar/nv50.c
浏览文件 @
c3032adb
...
...
@@ -53,7 +53,6 @@ nv50_bar_kmap(struct nouveau_bar *bar, struct nouveau_mem *mem,
return
ret
;
nouveau_vm_map
(
vma
,
mem
);
nv50_vm_flush_engine
(
nv_subdev
(
bar
),
6
);
return
0
;
}
...
...
@@ -69,7 +68,6 @@ nv50_bar_umap(struct nouveau_bar *bar, struct nouveau_mem *mem,
return
ret
;
nouveau_vm_map
(
vma
,
mem
);
nv50_vm_flush_engine
(
nv_subdev
(
bar
),
6
);
return
0
;
}
...
...
@@ -77,7 +75,6 @@ static void
nv50_bar_unmap
(
struct
nouveau_bar
*
bar
,
struct
nouveau_vma
*
vma
)
{
nouveau_vm_unmap
(
vma
);
nv50_vm_flush_engine
(
nv_subdev
(
bar
),
6
);
nouveau_vm_put
(
vma
);
}
...
...
@@ -147,6 +144,8 @@ nv50_bar_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
if
(
ret
)
return
ret
;
atomic_inc
(
&
vm
->
engref
[
NVDEV_SUBDEV_BAR
]);
ret
=
nouveau_gpuobj_new
(
nv_object
(
priv
),
heap
,
((
limit
--
-
start
)
>>
12
)
*
8
,
0x1000
,
NVOBJ_FLAG_ZERO_ALLOC
,
&
vm
->
pgt
[
0
].
obj
[
0
]);
...
...
@@ -179,6 +178,8 @@ nv50_bar_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
if
(
ret
)
return
ret
;
atomic_inc
(
&
vm
->
engref
[
NVDEV_SUBDEV_BAR
]);
ret
=
nouveau_vm_ref
(
vm
,
&
priv
->
bar1_vm
,
priv
->
pgd
);
nouveau_vm_ref
(
NULL
,
&
vm
,
NULL
);
if
(
ret
)
...
...
@@ -237,7 +238,11 @@ nv50_bar_init(struct nouveau_object *object)
nv_mask
(
priv
,
0x000200
,
0x00000100
,
0x00000000
);
nv_mask
(
priv
,
0x000200
,
0x00000100
,
0x00000100
);
nv50_vm_flush_engine
(
nv_subdev
(
priv
),
6
);
nv_wr32
(
priv
,
0x100c80
,
0x00060001
);
if
(
!
nv_wait
(
priv
,
0x100c80
,
0x00000001
,
0x00000000
))
{
nv_error
(
priv
,
"vm flush timeout
\n
"
);
return
-
EBUSY
;
}
nv_wr32
(
priv
,
0x001704
,
0x00000000
|
priv
->
mem
->
addr
>>
12
);
nv_wr32
(
priv
,
0x001704
,
0x40000000
|
priv
->
mem
->
addr
>>
12
);
...
...
drivers/gpu/drm/nouveau/core/subdev/vm/nv50.c
浏览文件 @
c3032adb
...
...
@@ -155,6 +155,9 @@ nv50_vm_flush(struct nouveau_vm *vm)
int
i
;
for
(
i
=
0
;
i
<
NVDEV_SUBDEV_NR
;
i
++
)
{
if
(
atomic_read
(
&
vm
->
engref
[
i
])
&&
i
==
NVDEV_SUBDEV_BAR
)
{
nv50_vm_flush_engine
(
nv_subdev
(
vm
->
vmm
),
6
);
}
else
if
(
atomic_read
(
&
vm
->
engref
[
i
]))
{
engine
=
nouveau_engine
(
vm
->
vmm
,
i
);
if
(
engine
&&
engine
->
tlb_flush
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录