mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
intel/genxml/gen12.5: Pipe_Control::Remove Global Snapshot Count Reset
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 <jose.souza@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20444>
This commit is contained in:
parent
c6d1f76da2
commit
def474e916
2 changed files with 2 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -6563,7 +6563,6 @@
|
|||
<field name="Generic Media State Clear" start="48" end="48" type="bool" />
|
||||
<field name="PSS Stall Sync Enable" start="49" end="49" type="bool" />
|
||||
<field name="TLB Invalidate" start="50" end="50" type="bool" />
|
||||
<field name="Global Snapshot Count Reset" start="51" end="51" type="bool" />
|
||||
<field name="Command Streamer Stall Enable" start="52" end="52" type="bool" />
|
||||
<field name="Store Data Index" start="53" end="53" type="uint" />
|
||||
<field name="Protected Memory Enable" start="54" end="54" type="bool" />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue