Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
kernel_linux
提交
c693931d
K
kernel_linux
项目概览
OpenHarmony
/
kernel_linux
上一次同步 3 年多
通知
13
Star
8
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
kernel_linux
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
c693931d
编写于
1月 11, 2011
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nv40: make detection of 0x4097-ful chipsets available everywhere
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
07cfe0e7
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
20 addition
and
18 deletion
+20
-18
drivers/gpu/drm/nouveau/nouveau_drv.h
drivers/gpu/drm/nouveau/nouveau_drv.h
+14
-0
drivers/gpu/drm/nouveau/nv40_graph.c
drivers/gpu/drm/nouveau/nv40_graph.c
+1
-2
drivers/gpu/drm/nouveau/nv40_grctx.c
drivers/gpu/drm/nouveau/nv40_grctx.c
+5
-16
未找到文件。
drivers/gpu/drm/nouveau/nouveau_drv.h
浏览文件 @
c693931d
...
...
@@ -1574,6 +1574,20 @@ nv_match_device(struct drm_device *dev, unsigned device,
dev
->
pdev
->
subsystem_device
==
sub_device
;
}
/* returns 1 if device is one of the nv4x using the 0x4497 object class,
* helpful to determine a number of other hardware features
*/
static
inline
int
nv44_graph_class
(
struct
drm_device
*
dev
)
{
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
if
((
dev_priv
->
chipset
&
0xf0
)
==
0x60
)
return
1
;
return
!
(
0x0baf
&
(
1
<<
(
dev_priv
->
chipset
&
0x0f
)));
}
/* memory type/access flags, do not match hardware values */
#define NV_MEM_ACCESS_RO 1
#define NV_MEM_ACCESS_WO 2
...
...
drivers/gpu/drm/nouveau/nv40_graph.c
浏览文件 @
c693931d
...
...
@@ -451,8 +451,7 @@ nv40_graph_register(struct drm_device *dev)
NVOBJ_CLASS
(
dev
,
0x309e
,
GR
);
/* swzsurf */
/* curie */
if
(
dev_priv
->
chipset
>=
0x60
||
0x00005450
&
(
1
<<
(
dev_priv
->
chipset
&
0x0f
)))
if
(
nv44_graph_class
(
dev
))
NVOBJ_CLASS
(
dev
,
0x4497
,
GR
);
else
NVOBJ_CLASS
(
dev
,
0x4097
,
GR
);
...
...
drivers/gpu/drm/nouveau/nv40_grctx.c
浏览文件 @
c693931d
...
...
@@ -117,17 +117,6 @@
* - get vs count from 0x1540
*/
static
int
nv40_graph_4097
(
struct
drm_device
*
dev
)
{
struct
drm_nouveau_private
*
dev_priv
=
dev
->
dev_private
;
if
((
dev_priv
->
chipset
&
0xf0
)
==
0x60
)
return
0
;
return
!!
(
0x0baf
&
(
1
<<
dev_priv
->
chipset
));
}
static
int
nv40_graph_vs_count
(
struct
drm_device
*
dev
)
{
...
...
@@ -219,7 +208,7 @@ nv40_graph_construct_general(struct nouveau_grctx *ctx)
gr_def
(
ctx
,
0x4009dc
,
0x80000000
);
}
else
{
cp_ctx
(
ctx
,
0x400840
,
20
);
if
(
!
nv40_graph_4097
(
ctx
->
dev
))
{
if
(
nv44_graph_class
(
ctx
->
dev
))
{
for
(
i
=
0
;
i
<
8
;
i
++
)
gr_def
(
ctx
,
0x400860
+
(
i
*
4
),
0x00000001
);
}
...
...
@@ -228,7 +217,7 @@ nv40_graph_construct_general(struct nouveau_grctx *ctx)
gr_def
(
ctx
,
0x400888
,
0x00000040
);
cp_ctx
(
ctx
,
0x400894
,
11
);
gr_def
(
ctx
,
0x400894
,
0x00000040
);
if
(
nv40_graph_4097
(
ctx
->
dev
))
{
if
(
!
nv44_graph_class
(
ctx
->
dev
))
{
for
(
i
=
0
;
i
<
8
;
i
++
)
gr_def
(
ctx
,
0x4008a0
+
(
i
*
4
),
0x80000000
);
}
...
...
@@ -546,7 +535,7 @@ nv40_graph_construct_state3d_2(struct nouveau_grctx *ctx)
static
void
nv40_graph_construct_state3d_3
(
struct
nouveau_grctx
*
ctx
)
{
int
len
=
nv4
0_graph_4097
(
ctx
->
dev
)
?
0x0684
:
0x00
84
;
int
len
=
nv4
4_graph_class
(
ctx
->
dev
)
?
0x0084
:
0x06
84
;
cp_out
(
ctx
,
0x300000
);
cp_lsr
(
ctx
,
len
-
4
);
...
...
@@ -582,11 +571,11 @@ nv40_graph_construct_shader(struct nouveau_grctx *ctx)
}
else
{
b0_offset
=
0x1d40
/
4
;
/* 2200 */
b1_offset
=
0x3f40
/
4
;
/* 0b00 : 0a40 */
vs_len
=
nv4
0_graph_4097
(
dev
)
?
0x4a40
/
4
:
0x498
0
/
4
;
vs_len
=
nv4
4_graph_class
(
dev
)
?
0x4980
/
4
:
0x4a4
0
/
4
;
}
cp_lsr
(
ctx
,
vs_len
*
vs_nr
+
0x300
/
4
);
cp_out
(
ctx
,
nv4
0_graph_4097
(
dev
)
?
0x800041
:
0x800029
);
cp_out
(
ctx
,
nv4
4_graph_class
(
dev
)
?
0x800029
:
0x800041
);
offset
=
ctx
->
ctxvals_pos
;
ctx
->
ctxvals_pos
+=
(
0x0300
/
4
+
(
vs_nr
*
vs_len
));
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录