]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
drm/i915: Allocate rings from stolen
authorChris Wilson <chris@chris-wilson.co.uk>
Thu, 18 Aug 2016 16:16:57 +0000 (17:16 +0100)
committerChris Wilson <chris@chris-wilson.co.uk>
Thu, 18 Aug 2016 21:36:49 +0000 (22:36 +0100)
If we have stolen available, make use of it for ringbuffer allocation.
Previously this was restricted to !llc platforms, as writing to stolen
requires a GGTT mapping - but now that we have partial mappable support,
the mappable aperture isn't quite so precious so we can use it more
freely and ringbuffers are a good user for the otherwise wasted stolen.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20160818161718.27187-18-chris@chris-wilson.co.uk
drivers/gpu/drm/i915/intel_ringbuffer.c

index 21bfc69e9dc6fc7128537135cd7c394aa607b813..cc5bcd14b6df4dd415e66f8573a6853b6bb62ea6 100644 (file)
@@ -1952,10 +1952,8 @@ intel_ring_create_vma(struct drm_i915_private *dev_priv, int size)
        struct drm_i915_gem_object *obj;
        struct i915_vma *vma;
 
-       obj = ERR_PTR(-ENODEV);
-       if (!HAS_LLC(dev_priv))
-               obj = i915_gem_object_create_stolen(&dev_priv->drm, size);
-       if (IS_ERR(obj))
+       obj = i915_gem_object_create_stolen(&dev_priv->drm, size);
+       if (!obj)
                obj = i915_gem_object_create(&dev_priv->drm, size);
        if (IS_ERR(obj))
                return ERR_CAST(obj);