Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
f73221e4
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
f73221e4
编写于
9月 06, 2012
作者:
B
Ben Skeggs
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
drm/nvc0/gr: implement initial trap handler
Signed-off-by:
N
Ben Skeggs
<
bskeggs@redhat.com
>
上级
d66b9d9a
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
188 addition
and
4 deletion
+188
-4
drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c
drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c
+188
-4
未找到文件。
drivers/gpu/drm/nouveau/core/engine/graph/nvc0.c
浏览文件 @
f73221e4
...
...
@@ -223,6 +223,192 @@ nvc0_graph_ctxctl_isr(struct nvc0_graph_priv *priv)
nv_wr32
(
priv
,
0x409c20
,
ustat
);
}
static
void
nvc0_graph_trap_tpc
(
struct
nvc0_graph_priv
*
priv
,
int
gpc
,
int
tpc
)
{
u32
stat
=
nv_rd32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0508
));
if
(
stat
&
0x00000001
)
{
u32
trap
=
nv_rd32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0224
));
nv_error
(
priv
,
"GPC%d/TPC%d/TEX: 0x%08x
\n
"
,
gpc
,
tpc
,
trap
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0224
),
0xc0000000
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0508
),
0x00000001
);
stat
&=
~
0x00000001
;
}
if
(
stat
&
0x00000002
)
{
u32
trap0
=
nv_rd32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0644
));
u32
trap1
=
nv_rd32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x064c
));
nv_error
(
priv
,
"GPC%d/TPC%d/MP: 0x%08x 0x%08x
\n
"
,
gpc
,
tpc
,
trap0
,
trap1
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0644
),
0x001ffffe
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x064c
),
0x0000000f
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0508
),
0x00000002
);
stat
&=
~
0x00000002
;
}
if
(
stat
&
0x00000004
)
{
u32
trap
=
nv_rd32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0084
));
nv_error
(
priv
,
"GPC%d/TPC%d/POLY: 0x%08x
\n
"
,
gpc
,
tpc
,
trap
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0084
),
0xc0000000
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0508
),
0x00000004
);
stat
&=
~
0x00000004
;
}
if
(
stat
&
0x00000008
)
{
u32
trap
=
nv_rd32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x048c
));
nv_error
(
priv
,
"GPC%d/TPC%d/L1C: 0x%08x
\n
"
,
gpc
,
tpc
,
trap
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x048c
),
0xc0000000
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0508
),
0x00000008
);
stat
&=
~
0x00000008
;
}
if
(
stat
)
{
nv_error
(
priv
,
"GPC%d/TPC%d/0x%08x: unknown
\n
"
,
gpc
,
tpc
,
stat
);
nv_wr32
(
priv
,
TPC_UNIT
(
gpc
,
tpc
,
0x0508
),
stat
);
}
}
static
void
nvc0_graph_trap_gpc
(
struct
nvc0_graph_priv
*
priv
,
int
gpc
)
{
u32
stat
=
nv_rd32
(
priv
,
GPC_UNIT
(
gpc
,
0x2c90
));
int
tpc
;
if
(
stat
&
0x00000001
)
{
u32
trap
=
nv_rd32
(
priv
,
GPC_UNIT
(
gpc
,
0x0420
));
nv_error
(
priv
,
"GPC%d/PROP: 0x%08x
\n
"
,
gpc
,
trap
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x0420
),
0xc0000000
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x2c90
),
0x00000001
);
stat
&=
~
0x00000001
;
}
if
(
stat
&
0x00000002
)
{
u32
trap
=
nv_rd32
(
priv
,
GPC_UNIT
(
gpc
,
0x0900
));
nv_error
(
priv
,
"GPC%d/ZCULL: 0x%08x
\n
"
,
gpc
,
trap
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x0900
),
0xc0000000
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x2c90
),
0x00000002
);
stat
&=
~
0x00000002
;
}
if
(
stat
&
0x00000004
)
{
u32
trap
=
nv_rd32
(
priv
,
GPC_UNIT
(
gpc
,
0x1028
));
nv_error
(
priv
,
"GPC%d/CCACHE: 0x%08x
\n
"
,
gpc
,
trap
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x1028
),
0xc0000000
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x2c90
),
0x00000004
);
stat
&=
~
0x00000004
;
}
if
(
stat
&
0x00000008
)
{
u32
trap
=
nv_rd32
(
priv
,
GPC_UNIT
(
gpc
,
0x0824
));
nv_error
(
priv
,
"GPC%d/ESETUP: 0x%08x
\n
"
,
gpc
,
trap
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x0824
),
0xc0000000
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x2c90
),
0x00000008
);
stat
&=
~
0x00000009
;
}
for
(
tpc
=
0
;
tpc
<
priv
->
tpc_nr
[
gpc
];
tpc
++
)
{
u32
mask
=
0x00010000
<<
tpc
;
if
(
stat
&
mask
)
{
nvc0_graph_trap_tpc
(
priv
,
gpc
,
tpc
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x2c90
),
mask
);
stat
&=
~
mask
;
}
}
if
(
stat
)
{
nv_error
(
priv
,
"GPC%d/0x%08x: unknown
\n
"
,
gpc
,
stat
);
nv_wr32
(
priv
,
GPC_UNIT
(
gpc
,
0x2c90
),
stat
);
}
}
static
void
nvc0_graph_trap_intr
(
struct
nvc0_graph_priv
*
priv
)
{
u32
trap
=
nv_rd32
(
priv
,
0x400108
);
int
rop
,
gpc
;
if
(
trap
&
0x00000001
)
{
u32
stat
=
nv_rd32
(
priv
,
0x404000
);
nv_error
(
priv
,
"DISPATCH 0x%08x
\n
"
,
stat
);
nv_wr32
(
priv
,
0x404000
,
0xc0000000
);
nv_wr32
(
priv
,
0x400108
,
0x00000001
);
trap
&=
~
0x00000001
;
}
if
(
trap
&
0x00000002
)
{
u32
stat
=
nv_rd32
(
priv
,
0x404600
);
nv_error
(
priv
,
"M2MF 0x%08x
\n
"
,
stat
);
nv_wr32
(
priv
,
0x404600
,
0xc0000000
);
nv_wr32
(
priv
,
0x400108
,
0x00000002
);
trap
&=
~
0x00000002
;
}
if
(
trap
&
0x00000008
)
{
u32
stat
=
nv_rd32
(
priv
,
0x408030
);
nv_error
(
priv
,
"CCACHE 0x%08x
\n
"
,
stat
);
nv_wr32
(
priv
,
0x408030
,
0xc0000000
);
nv_wr32
(
priv
,
0x400108
,
0x00000008
);
trap
&=
~
0x00000008
;
}
if
(
trap
&
0x00000010
)
{
u32
stat
=
nv_rd32
(
priv
,
0x405840
);
nv_error
(
priv
,
"SHADER 0x%08x
\n
"
,
stat
);
nv_wr32
(
priv
,
0x405840
,
0xc0000000
);
nv_wr32
(
priv
,
0x400108
,
0x00000010
);
trap
&=
~
0x00000010
;
}
if
(
trap
&
0x00000040
)
{
u32
stat
=
nv_rd32
(
priv
,
0x40601c
);
nv_error
(
priv
,
"UNK6 0x%08x
\n
"
,
stat
);
nv_wr32
(
priv
,
0x40601c
,
0xc0000000
);
nv_wr32
(
priv
,
0x400108
,
0x00000040
);
trap
&=
~
0x00000040
;
}
if
(
trap
&
0x00000080
)
{
u32
stat
=
nv_rd32
(
priv
,
0x404490
);
nv_error
(
priv
,
"MACRO 0x%08x
\n
"
,
stat
);
nv_wr32
(
priv
,
0x404490
,
0xc0000000
);
nv_wr32
(
priv
,
0x400108
,
0x00000080
);
trap
&=
~
0x00000080
;
}
if
(
trap
&
0x01000000
)
{
u32
stat
=
nv_rd32
(
priv
,
0x400118
);
for
(
gpc
=
0
;
stat
&&
gpc
<
priv
->
gpc_nr
;
gpc
++
)
{
u32
mask
=
0x00000001
<<
gpc
;
if
(
stat
&
mask
)
{
nvc0_graph_trap_gpc
(
priv
,
gpc
);
nv_wr32
(
priv
,
0x400118
,
mask
);
stat
&=
~
mask
;
}
}
nv_wr32
(
priv
,
0x400108
,
0x01000000
);
trap
&=
~
0x01000000
;
}
if
(
trap
&
0x02000000
)
{
for
(
rop
=
0
;
rop
<
priv
->
rop_nr
;
rop
++
)
{
u32
statz
=
nv_rd32
(
priv
,
ROP_UNIT
(
rop
,
0x070
));
u32
statc
=
nv_rd32
(
priv
,
ROP_UNIT
(
rop
,
0x144
));
nv_error
(
priv
,
"ROP%d 0x%08x 0x%08x
\n
"
,
rop
,
statz
,
statc
);
nv_wr32
(
priv
,
ROP_UNIT
(
rop
,
0x070
),
0xc0000000
);
nv_wr32
(
priv
,
ROP_UNIT
(
rop
,
0x144
),
0xc0000000
);
}
nv_wr32
(
priv
,
0x400108
,
0x02000000
);
trap
&=
~
0x02000000
;
}
if
(
trap
)
{
nv_error
(
priv
,
"TRAP UNHANDLED 0x%08x
\n
"
,
trap
);
nv_wr32
(
priv
,
0x400108
,
trap
);
}
}
static
void
nvc0_graph_intr
(
struct
nouveau_subdev
*
subdev
)
{
...
...
@@ -276,10 +462,8 @@ nvc0_graph_intr(struct nouveau_subdev *subdev)
}
if
(
stat
&
0x00200000
)
{
u32
trap
=
nv_rd32
(
priv
,
0x400108
);
nv_error
(
priv
,
"TRAP ch %d [0x%010llx] status 0x%08x
\n
"
,
chid
,
inst
<<
12
,
trap
);
nv_wr32
(
priv
,
0x400108
,
trap
);
nv_error
(
priv
,
"TRAP ch %d [0x%010llx]
\n
"
,
chid
,
inst
<<
12
);
nvc0_graph_trap_intr
(
priv
);
nv_wr32
(
priv
,
0x400100
,
0x00200000
);
stat
&=
~
0x00200000
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录