Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16b133df authored by Ben Skeggs's avatar Ben Skeggs
Browse files

drm/nve0/gr: attempt to resume after sm traps



Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 3d8a6ed2
Loading
Loading
Loading
Loading
+6 −16
Original line number Original line Diff line number Diff line
@@ -89,9 +89,9 @@ static const struct nouveau_enum nve0_mp_warp_error[] = {
	{}
	{}
};
};


static const struct nouveau_enum nve0_mp_global_error[] = {
static const struct nouveau_bitfield nve0_mp_global_error[] = {
	{ 2, "MULTIPLE_WARP_ERRORS" },
	{ 0x00000004, "MULTIPLE_WARP_ERRORS" },
	{ 3, "OUT_OF_STACK_SPACE" },
	{ 0x00000008, "OUT_OF_STACK_SPACE" },
	{}
	{}
};
};


@@ -125,27 +125,17 @@ nve0_graph_mp_trap(struct nvc0_graph_priv *priv, int gpc, int tpc)
{
{
	u32 werr = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x648));
	u32 werr = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x648));
	u32 gerr = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x650));
	u32 gerr = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x650));
	int i;


	nv_error(priv, "GPC%i/TPC%i/MP trap:", gpc, tpc);
	nv_error(priv, "GPC%i/TPC%i/MP trap:", gpc, tpc);

	nouveau_bitfield_print(nve0_mp_global_error, gerr);
	for (i = 0; i <= 31; ++i) {
		if (!(gerr & (1 << i)))
			continue;
		pr_cont(" ");
		nouveau_enum_print(nve0_mp_global_error, i);
	}

	if (werr) {
	if (werr) {
		pr_cont(" ");
		pr_cont(" ");
		nouveau_enum_print(nve0_mp_warp_error, werr & 0xffff);
		nouveau_enum_print(nve0_mp_warp_error, werr & 0xffff);
	}
	}
	pr_cont("\n");
	pr_cont("\n");


	/* disable MP trap to avoid spam */
	nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x648), 0x00000000);
	nv_mask(priv, TPC_UNIT(gpc, tpc, 0x50c), 0x2, 0x0);
	nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x650), gerr);

	/* TODO: figure out how to resume after an MP trap */
}
}


static void
static void