Module: Mesa Branch: master Commit: 387e43b52fa2c17ae1cd3f95c7578407d9c4ef95 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=387e43b52fa2c17ae1cd3f95c7578407d9c4ef95
Author: Anuj Phogat <[email protected]> Date: Wed Jun 26 14:23:35 2019 -0700 Revert "anv/icl: Add WA_2204188704 to disable pixel shader panic dispatch" SLICE_COMMON_CHICKEN3 is a privileged register not accesible from userspace. This patch silences a simulator warning about it. We don't need to add this workaround in linux kernel as the WA description says it's fixed on latest stepping. This reverts commit 2be60e0c73ed1555a919c5725cc0cab119a2b6de. Signed-off-by: Anuj Phogat <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Lionel Landwerlin <[email protected]> --- src/intel/vulkan/genX_state.c | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/intel/vulkan/genX_state.c b/src/intel/vulkan/genX_state.c index 21b8cd648d4..c81de9156c7 100644 --- a/src/intel/vulkan/genX_state.c +++ b/src/intel/vulkan/genX_state.c @@ -200,18 +200,6 @@ genX(init_device_state)(struct anv_device *device) lri.DataDWord = half_slice_chicken7; } - /* WA_2204188704: Pixel Shader Panic dispatch must be disabled. - */ - uint32_t common_slice_chicken3; - anv_pack_struct(&common_slice_chicken3, GENX(COMMON_SLICE_CHICKEN3), - .PSThreadPanicDispatch = 0x3, - .PSThreadPanicDispatchMask = 0x3); - - anv_batch_emit(&batch, GENX(MI_LOAD_REGISTER_IMM), lri) { - lri.RegisterOffset = GENX(COMMON_SLICE_CHICKEN3_num); - lri.DataDWord = common_slice_chicken3; - } - /* WaEnableStateCacheRedirectToCS:icl */ uint32_t slice_common_eco_chicken1; anv_pack_struct(&slice_common_eco_chicken1, _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
