]> git.baikalelectronics.ru Git - kernel.git/commit
drm/i915: Flush untouched framebuffers before display on !llc
authorChris Wilson <chris@chris-wilson.co.uk>
Mon, 9 Jan 2017 11:19:32 +0000 (11:19 +0000)
committerJani Nikula <jani.nikula@intel.com>
Wed, 8 Feb 2017 11:10:24 +0000 (13:10 +0200)
commitc353a074ebc4d4b6b939f168e311a3061417f469
treeff9717fc8bb3a99735084c5b6f01385889b6e36e
parent8da3fbc3b1c8bb2b8105c46454e876df5c10ac12
drm/i915: Flush untouched framebuffers before display on !llc

On a non-llc system, the objects are created with .cache_level =
CACHE_NONE and so the transition to uncached for scanout is a no-op.
However, if the object was never written to, it will still be in the CPU
domain (having been zeroed out by shmemfs). Those cachelines need to be
flushed prior to display.

Reported-and-tested-by: Vito Caputo
Fixes: 12ca5e9f7c52 ("drm/i915: Always flush the dirty CPU cache when pinning the scanout")
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: <drm-intel-fixes@lists.freedesktop.org> # v4.10-rc1+
Link: http://patchwork.freedesktop.org/patch/msgid/20170109111932.6342-1-chris@chris-wilson.co.uk
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
(cherry picked from commit 69aeafeae9b30d797c439a30d1a4ccc8dc5b0eb0)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/i915_gem.c