Displaying 2 results from an estimated 2 matches for "linear_mismatch".
2018 Mar 02
0
[Bug 105173] [MCP79][Regression] Unhandled NULL pointer dereference in nvkm_object_unmap since kernel 4.15
...00408604: 98084805
[ 1868.631507] nouveau 0000:03:00.0: gr: 00408608: 00383d66
[ 1868.631511] nouveau 0000:03:00.0: gr: 0040860c: 40000430
[ 1868.631515] nouveau 0000:03:00.0: gr: 00408610: 3bd00002
[ 1868.631520] nouveau 0000:03:00.0: gr: TRAP_TEXTURE - TP0: 00000009 [
LINEAR_MISMATCH]
[ 1868.631527] nouveau 0000:03:00.0: gr: 00200000 [] ch 24 [000db13000
Xwayland[2070]] subc 3 class 8397 mthd 0f04 data 00000000
I don't know when moment it happened and how to reproduce. Graphics system
works without issues (without artefacts etc) The same I got earlier on kernels
< 4.15....
2014 Feb 14
0
[PATCH] drm/nv50/gr: decode texture trap status code
...30,15 @@ static const struct nouveau_bitfield nv50_mpc_traps[] = {
{}
};
+static const struct nouveau_bitfield nv50_tex_traps[] = {
+ { 0x00000001, "" }, /* any bit set? */
+ { 0x00000002, "FAULT" },
+ { 0x00000004, "STORAGE_TYPE_MISMATCH" },
+ { 0x00000008, "LINEAR_MISMATCH" },
+ { 0x00000020, "WRONG_MEMTYPE" },
+ {}
+};
+
static const struct nouveau_bitfield nv50_graph_trap_m2mf[] = {
{ 0x00000001, "NOTIFY" },
{ 0x00000002, "IN" },
@@ -532,6 +541,13 @@ nv50_priv_tp_trap(struct nv50_graph_priv *priv, int type, u32 ustatus_old,...