drm/i915: Only pin the fence for primary planes (and gen2/3)
authorVille Syrjälä <ville.syrjala@linux.intel.com>
Wed, 21 Feb 2018 18:48:07 +0000 (20:48 +0200)
committerVille Syrjälä <ville.syrjala@linux.intel.com>
Thu, 22 Feb 2018 15:41:37 +0000 (17:41 +0200)
commitf7a02ad7d16b24908b9fddbd6176b1c1a2b35058
tree645fb1ec064fc9135b46dc23ed9153a58b3dc5a0
parent85798ac9b35f8cc7608a4a798d0b0626f0d54d61
drm/i915: Only pin the fence for primary planes (and gen2/3)

Currently we pin a fence on every plane doing tiled scanout. The
number of planes we have available is fast apporaching the number
of fences so we really should stop wasting them. Only FBC needs
the fence on gen4+, so let's use fences only for the primary planes
on those platforms.

v2: drop the tiling check from plane_uses_fence() as the obj is
    NULL during initial_plane_config() and we don't rally need the
    check since i915_vma_pin_fence() does the check anyway

Cc: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20180221184807.577-1-ville.syrjala@linux.intel.com
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
drivers/gpu/drm/i915/intel_display.c
drivers/gpu/drm/i915/intel_drv.h
drivers/gpu/drm/i915/intel_fbdev.c