Module: Mesa Branch: master Commit: 7a2b65a1d749fd6dcc31d47205445dabace0d265 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=7a2b65a1d749fd6dcc31d47205445dabace0d265
Author: Kenneth Graunke <[email protected]> Date: Sat Jan 14 16:23:10 2017 -0800 i965: Make BLORP disable the NP Z PMA stall fix. This may fix GPU hangs on Gen8. I don't know if it does though. Cc: [email protected] Signed-off-by: Kenneth Graunke <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]> --- src/mesa/drivers/dri/i965/genX_blorp_exec.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/mesa/drivers/dri/i965/genX_blorp_exec.c b/src/mesa/drivers/dri/i965/genX_blorp_exec.c index 40a2499..bb1dfa9 100644 --- a/src/mesa/drivers/dri/i965/genX_blorp_exec.c +++ b/src/mesa/drivers/dri/i965/genX_blorp_exec.c @@ -206,6 +206,10 @@ retry: brw_emit_depth_stall_flushes(brw); +#if GEN_GEN == 8 + gen8_write_pma_stall_bits(brw, 0); +#endif + blorp_emit(batch, GENX(3DSTATE_DRAWING_RECTANGLE), rect) { rect.ClippedDrawingRectangleXMax = MAX2(params->x1, params->x0) - 1; rect.ClippedDrawingRectangleYMax = MAX2(params->y1, params->y0) - 1; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
