Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
c50a5681
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看板
提交
c50a5681
编写于
7月 08, 2010
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nv20-nv30: move context table object out of dev_priv
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
ac94a343
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
18 addition
and
22 deletion
+18
-22
drivers/gpu/drm/nouveau/nouveau_drv.h
drivers/gpu/drm/nouveau/nouveau_drv.h
+3
-4
drivers/gpu/drm/nouveau/nv20_graph.c
drivers/gpu/drm/nouveau/nv20_graph.c
+15
-18
未找到文件。
drivers/gpu/drm/nouveau/nouveau_drv.h
浏览文件 @
c50a5681
...
...
@@ -333,6 +333,9 @@ struct nouveau_pgraph_engine {
bool
accel_blocked
;
int
grctx_size
;
/* NV2x/NV3x context table (0x400780) */
struct
nouveau_gpuobj_ref
*
ctx_table
;
int
(
*
init
)(
struct
drm_device
*
);
void
(
*
takedown
)(
struct
drm_device
*
);
...
...
@@ -580,10 +583,6 @@ struct drm_nouveau_private {
struct
drm_mm
ramin_heap
;
/* context table pointed to be NV_PGRAPH_CHANNEL_CTX_TABLE (0x400780) */
uint32_t
ctx_table_size
;
struct
nouveau_gpuobj_ref
*
ctx_table
;
struct
list_head
gpuobj_list
;
struct
nvbios
vbios
;
...
...
drivers/gpu/drm/nouveau/nv20_graph.c
浏览文件 @
c50a5681
...
...
@@ -416,8 +416,8 @@ nv20_graph_create_context(struct nouveau_channel *chan)
nv_wo32
(
dev
,
chan
->
ramin_grctx
->
gpuobj
,
idoffs
,
(
chan
->
id
<<
24
)
|
0x1
);
/* CTX_USER */
nv_wo32
(
dev
,
dev_priv
->
ctx_table
->
gpuobj
,
chan
->
id
,
chan
->
ramin_grctx
->
instance
>>
4
);
nv_wo32
(
dev
,
pgraph
->
ctx_table
->
gpuobj
,
chan
->
id
,
chan
->
ramin_grctx
->
instance
>>
4
);
return
0
;
}
...
...
@@ -426,11 +426,12 @@ nv20_graph_destroy_context(struct nouveau_channel *chan)
{
struct
drm_device
*
dev
=
chan
->
dev
;
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_pgraph_engine
*
pgraph
=
&
dev_priv
->
engine
.
graph
;
if
(
chan
->
ramin_grctx
)
nouveau_gpuobj_ref_del
(
dev
,
&
chan
->
ramin_grctx
);
nv_wo32
(
dev
,
dev_priv
->
ctx_table
->
gpuobj
,
chan
->
id
,
0
);
nv_wo32
(
dev
,
pgraph
->
ctx_table
->
gpuobj
,
chan
->
id
,
0
);
}
int
...
...
@@ -522,8 +523,7 @@ nv20_graph_set_region_tiling(struct drm_device *dev, int i, uint32_t addr,
int
nv20_graph_init
(
struct
drm_device
*
dev
)
{
struct
drm_nouveau_private
*
dev_priv
=
(
struct
drm_nouveau_private
*
)
dev
->
dev_private
;
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_pgraph_engine
*
pgraph
=
&
dev_priv
->
engine
.
graph
;
uint32_t
tmp
,
vramsz
;
int
ret
,
i
;
...
...
@@ -550,19 +550,17 @@ nv20_graph_init(struct drm_device *dev)
nv_wr32
(
dev
,
NV03_PMC_ENABLE
,
nv_rd32
(
dev
,
NV03_PMC_ENABLE
)
|
NV_PMC_ENABLE_PGRAPH
);
if
(
!
dev_priv
->
ctx_table
)
{
if
(
!
pgraph
->
ctx_table
)
{
/* Create Context Pointer Table */
dev_priv
->
ctx_table_size
=
32
*
4
;
ret
=
nouveau_gpuobj_new_ref
(
dev
,
NULL
,
NULL
,
0
,
dev_priv
->
ctx_table_size
,
16
,
ret
=
nouveau_gpuobj_new_ref
(
dev
,
NULL
,
NULL
,
0
,
32
*
4
,
16
,
NVOBJ_FLAG_ZERO_ALLOC
,
&
dev_priv
->
ctx_table
);
&
pgraph
->
ctx_table
);
if
(
ret
)
return
ret
;
}
nv_wr32
(
dev
,
NV20_PGRAPH_CHANNEL_CTX_TABLE
,
dev_priv
->
ctx_table
->
instance
>>
4
);
pgraph
->
ctx_table
->
instance
>>
4
);
nv20_graph_rdi
(
dev
);
...
...
@@ -646,8 +644,9 @@ void
nv20_graph_takedown
(
struct
drm_device
*
dev
)
{
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
struct
nouveau_pgraph_engine
*
pgraph
=
&
dev_priv
->
engine
.
graph
;
nouveau_gpuobj_ref_del
(
dev
,
&
dev_priv
->
ctx_table
);
nouveau_gpuobj_ref_del
(
dev
,
&
pgraph
->
ctx_table
);
}
int
...
...
@@ -680,19 +679,17 @@ nv30_graph_init(struct drm_device *dev)
nv_wr32
(
dev
,
NV03_PMC_ENABLE
,
nv_rd32
(
dev
,
NV03_PMC_ENABLE
)
|
NV_PMC_ENABLE_PGRAPH
);
if
(
!
dev_priv
->
ctx_table
)
{
if
(
!
pgraph
->
ctx_table
)
{
/* Create Context Pointer Table */
dev_priv
->
ctx_table_size
=
32
*
4
;
ret
=
nouveau_gpuobj_new_ref
(
dev
,
NULL
,
NULL
,
0
,
dev_priv
->
ctx_table_size
,
16
,
ret
=
nouveau_gpuobj_new_ref
(
dev
,
NULL
,
NULL
,
0
,
32
*
4
,
16
,
NVOBJ_FLAG_ZERO_ALLOC
,
&
dev_priv
->
ctx_table
);
&
pgraph
->
ctx_table
);
if
(
ret
)
return
ret
;
}
nv_wr32
(
dev
,
NV20_PGRAPH_CHANNEL_CTX_TABLE
,
dev_priv
->
ctx_table
->
instance
>>
4
);
pgraph
->
ctx_table
->
instance
>>
4
);
nv_wr32
(
dev
,
NV03_PGRAPH_INTR
,
0xFFFFFFFF
);
nv_wr32
(
dev
,
NV03_PGRAPH_INTR_EN
,
0xFFFFFFFF
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录