Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4f91fc6d authored by Francisco Jerez's avatar Francisco Jerez Committed by Daniel Vetter
Browse files

drm/i915: Hook up ring workaround writes at context creation time on Gen6-7.



intel_rcs_ctx_init() emits all workaround register writes on the list
to the ring, in addition to calling i915_gem_render_state_init().  The
workaround list is currently empty on Gen6-7 so this shouldn't cause
any functional changes.

Signed-off-by: default avatarFrancisco Jerez <currojerez@riseup.net>
Signed-off-by: default avatarDaniel Vetter <daniel.vetter@ffwll.ch>
parent 02235808
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2623,7 +2623,7 @@ int intel_init_render_ring_buffer(struct drm_device *dev)
			GEN8_RING_SEMAPHORE_INIT;
		}
	} else if (INTEL_INFO(dev)->gen >= 6) {
		ring->init_context = i915_gem_render_state_init;
		ring->init_context = intel_rcs_ctx_init;
		ring->add_request = gen6_add_request;
		ring->flush = gen7_render_ring_flush;
		if (INTEL_INFO(dev)->gen == 6)