From: Marek Olšák Date: Wed, 21 Aug 2019 02:37:52 +0000 (-0400) Subject: radeonsi/gfx10: add AMD_DEBUG=nongg X-Git-Tag: upstream/19.3.0~2439 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=467df4b90a38e50b749f90900b3693331685ca15;p=platform%2Fupstream%2Fmesa.git radeonsi/gfx10: add AMD_DEBUG=nongg Reviewed-by: Pierre-Eric Pelloux-Prayer --- diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index a0ad774..487d925 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -89,6 +89,7 @@ static const struct debug_named_value debug_options[] = { /* 3D engine options: */ { "nogfx", DBG(NO_GFX), "Disable graphics. Only multimedia compute paths can be used." }, + { "nongg", DBG(NO_NGG), "Disable NGG and use the legacy pipeline." }, { "alwayspd", DBG(ALWAYS_PD), "Always enable the primitive discard compute shader." }, { "pd", DBG(PD), "Enable the primitive discard compute shader for large draw calls." }, { "nopd", DBG(NO_PD), "Disable the primitive discard compute shader." }, @@ -1123,7 +1124,8 @@ radeonsi_screen_create_impl(struct radeon_winsys *ws, } sscreen->use_ngg = sscreen->info.chip_class >= GFX10 && - sscreen->info.family != CHIP_NAVI14; + sscreen->info.family != CHIP_NAVI14 && + !(sscreen->debug_flags & DBG(NO_NGG)); sscreen->use_ngg_streamout = false; /* Only enable primitive binning on APUs by default. */ diff --git a/src/gallium/drivers/radeonsi/si_pipe.h b/src/gallium/drivers/radeonsi/si_pipe.h index c9a41562..b0495f0 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.h +++ b/src/gallium/drivers/radeonsi/si_pipe.h @@ -175,6 +175,7 @@ enum { /* 3D engine options: */ DBG_NO_GFX, + DBG_NO_NGG, DBG_ALWAYS_PD, DBG_PD, DBG_NO_PD,