From def474e916b69b86ed49c895c7418ba54a0e8252 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Roberto=20de=20Souza?= Date: Mon, 26 Dec 2022 11:40:39 -0800 Subject: [PATCH] intel/genxml/gen12.5: Pipe_Control::Remove Global Snapshot Count Reset MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It was not meant to be used(Iris have assert for it) and it was removed from Pipe_Control instruction in gen12.5 and newer. BSpec: 47112 Signed-off-by: José Roberto de Souza Reviewed-by: Lionel Landwerlin Part-of: --- src/gallium/drivers/iris/iris_state.c | 2 ++ src/intel/genxml/gen125.xml | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/iris/iris_state.c b/src/gallium/drivers/iris/iris_state.c index d188817f98e..e85cb30eb8d 100644 --- a/src/gallium/drivers/iris/iris_state.c +++ b/src/gallium/drivers/iris/iris_state.c @@ -8274,8 +8274,10 @@ iris_emit_raw_pipe_control(struct iris_batch *batch, pc.DCFlushEnable = flags & PIPE_CONTROL_DATA_CACHE_FLUSH; pc.StoreDataIndex = 0; pc.CommandStreamerStallEnable = flags & PIPE_CONTROL_CS_STALL; +#if GFX_VERx10 < 125 pc.GlobalSnapshotCountReset = flags & PIPE_CONTROL_GLOBAL_SNAPSHOT_COUNT_RESET; +#endif pc.TLBInvalidate = flags & PIPE_CONTROL_TLB_INVALIDATE; pc.GenericMediaStateClear = flags & PIPE_CONTROL_MEDIA_STATE_CLEAR; pc.StallAtPixelScoreboard = flags & PIPE_CONTROL_STALL_AT_SCOREBOARD; diff --git a/src/intel/genxml/gen125.xml b/src/intel/genxml/gen125.xml index 1cb5d11503e..d8ab604cc71 100644 --- a/src/intel/genxml/gen125.xml +++ b/src/intel/genxml/gen125.xml @@ -6563,7 +6563,6 @@ -