]> git.baikalelectronics.ru Git - kernel.git/commit
drm/i915: Reset CSB read pointer in ring init
authorThomas Daniel <thomas.daniel@intel.com>
Fri, 9 Jan 2015 11:09:37 +0000 (11:09 +0000)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 12 Jan 2015 23:11:52 +0000 (00:11 +0100)
commitd74e3bdf832a1ac35cf32a607eff0ae69b7c8658
tree91effdc15ab9e8ba82edb275d9d29a9f865e7787
parent774d127b112e287fec4dd1ea37b8e571ebc87829
drm/i915: Reset CSB read pointer in ring init

A previous commit enabled execlists by default:

       commit 6904f7af09bf ("drm/i915/bdw: Enable execlists by default where supported")

This allowed routine testing of execlists which exposed a regression when
resuming from suspend.  The cause was tracked down the to recent changes to the
ring init sequence:

       commit b331f0b65e1e ("drm/i915: Only init engines once")

During a suspend/resume cycle the hardware Context Status Buffer write pointer
is reset.  However since the recent changes to the init sequence the software CSB
read pointer is no longer reset.  This means that context status events are not
handled correctly and new contexts are not written to the ELSP, resulting in an
apparent GPU hang.

Pending further changes to the ring init code, just move the
ring->next_context_status_buffer initialization into gen8_init_common_ring to
fix this regression.

v2: Moved init into gen8_init_common_ring rather than context_enable after
feedback from Daniel Vetter.  Updated commit msg to reflect this and also cite
commits related to the regression.  Fixed bz link to correct bug.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=88096
Cc: Paulo Zanoni <paulo.r.zanoni@intel.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Dave Gordon <david.s.gordon@intel.com>
Signed-off-by: Thomas Daniel <thomas.daniel@intel.com>
Reviewed-by: Dave Gordon <david.s.gordon@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/intel_lrc.c