drm/i915: Open-code i915_gpu_idle() for handling seqno wrapping
authorChris Wilson <chris@chris-wilson.co.uk>
Mon, 10 Dec 2012 11:56:17 +0000 (13:56 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Tue, 11 Dec 2012 13:07:03 +0000 (14:07 +0100)
The complication is that during seqno wrapping we must be extremely
careful not to write to any ring as that will require a new seqno, and
so would recurse back into the seqno wrap handler. So we cannot call
i915_gpu_idle() as that does additional work beyond simply retiring the
current set of requests, and instead must do the minimal work ourselves
during seqno wrapping.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Mika Kuoppala <mika.kuoppala@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>

No differences found