drm/i915/gen9: fix PIPE_CONTROL flush for VS_INVALIDATE
On GEN9+ per specification a NULL PIPE_CONTROL needs to be emitted before any PIPE_CONTROL command with the VS_INVALIDATE flag set. Signed-off-by: Imre Deak <imre.deak@intel.com> Reviewed-by: Nick Hoath <nicholas.hoath@intel.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
This commit is contained in:
parent
1c046bc1db
commit
9647ff36ae
1 changed files with 18 additions and 1 deletions
|
@ -1262,6 +1262,7 @@ static int gen8_emit_flush_render(struct intel_ringbuffer *ringbuf,
|
||||||
{
|
{
|
||||||
struct intel_engine_cs *ring = ringbuf->ring;
|
struct intel_engine_cs *ring = ringbuf->ring;
|
||||||
u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
|
u32 scratch_addr = ring->scratch.gtt_offset + 2 * CACHELINE_BYTES;
|
||||||
|
bool vf_flush_wa;
|
||||||
u32 flags = 0;
|
u32 flags = 0;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
|
@ -1283,10 +1284,26 @@ static int gen8_emit_flush_render(struct intel_ringbuffer *ringbuf,
|
||||||
flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
|
flags |= PIPE_CONTROL_GLOBAL_GTT_IVB;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = intel_logical_ring_begin(ringbuf, ctx, 6);
|
/*
|
||||||
|
* On GEN9+ Before VF_CACHE_INVALIDATE we need to emit a NULL pipe
|
||||||
|
* control.
|
||||||
|
*/
|
||||||
|
vf_flush_wa = INTEL_INFO(ring->dev)->gen >= 9 &&
|
||||||
|
flags & PIPE_CONTROL_VF_CACHE_INVALIDATE;
|
||||||
|
|
||||||
|
ret = intel_logical_ring_begin(ringbuf, ctx, vf_flush_wa ? 12 : 6);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
|
if (vf_flush_wa) {
|
||||||
|
intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
|
||||||
|
intel_logical_ring_emit(ringbuf, 0);
|
||||||
|
intel_logical_ring_emit(ringbuf, 0);
|
||||||
|
intel_logical_ring_emit(ringbuf, 0);
|
||||||
|
intel_logical_ring_emit(ringbuf, 0);
|
||||||
|
intel_logical_ring_emit(ringbuf, 0);
|
||||||
|
}
|
||||||
|
|
||||||
intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
|
intel_logical_ring_emit(ringbuf, GFX_OP_PIPE_CONTROL(6));
|
||||||
intel_logical_ring_emit(ringbuf, flags);
|
intel_logical_ring_emit(ringbuf, flags);
|
||||||
intel_logical_ring_emit(ringbuf, scratch_addr);
|
intel_logical_ring_emit(ringbuf, scratch_addr);
|
||||||
|
|
Loading…
Add table
Reference in a new issue