summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/i915_gem_execbuffer.c
diff options
context:
space:
mode:
authorChris Wilson2017-06-16 16:05:21 +0200
committerChris Wilson2017-06-16 17:54:05 +0200
commit616d9cee4fdc4a377c03be8fd6efa5df4fcd0d81 (patch)
tree135f82d1858eec3f40701bc5f5dd48d7ac756684 /drivers/gpu/drm/i915/i915_gem_execbuffer.c
parentdrm/i915: Store a persistent reference for an object in the execbuffer cache (diff)
downloadkernel-qcow2-linux-616d9cee4fdc4a377c03be8fd6efa5df4fcd0d81.tar.gz
kernel-qcow2-linux-616d9cee4fdc4a377c03be8fd6efa5df4fcd0d81.tar.xz
kernel-qcow2-linux-616d9cee4fdc4a377c03be8fd6efa5df4fcd0d81.zip
drm/i915: First try the previous execbuffer location
When choosing a slot for an execbuffer, we ideally want to use the same address as last time (so that we don't have to rebind it) and the same address as expected by the user (so that we don't have to fixup any relocations pointing to it). If we first try to bind the incoming execbuffer->offset from the user, or the currently bound offset that should hopefully achieve the goal of avoiding the rebind cost and the relocation penalty. However, if the object is not currently bound there we don't want to arbitrarily unbind an object in our chosen position and so choose to rebind/relocate the incoming object instead. After we report the new position back to the user, on the next pass the relocations should have settled down. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Joonas Lahtinen <joonas.lahtien@linux.intel.com>
Diffstat (limited to 'drivers/gpu/drm/i915/i915_gem_execbuffer.c')
-rw-r--r--drivers/gpu/drm/i915/i915_gem_execbuffer.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
index d91386f0e840..3eaf07dfbe62 100644
--- a/drivers/gpu/drm/i915/i915_gem_execbuffer.c
+++ b/drivers/gpu/drm/i915/i915_gem_execbuffer.c
@@ -336,10 +336,15 @@ eb_pin_vma(struct i915_execbuffer *eb,
{
u64 flags;
- flags = vma->node.start;
- flags |= PIN_USER | PIN_NONBLOCK | PIN_OFFSET_FIXED;
+ if (vma->node.size)
+ flags = vma->node.start;
+ else
+ flags = entry->offset & PIN_OFFSET_MASK;
+
+ flags |= PIN_USER | PIN_NOEVICT | PIN_OFFSET_FIXED;
if (unlikely(entry->flags & EXEC_OBJECT_NEEDS_GTT))
flags |= PIN_GLOBAL;
+
if (unlikely(i915_vma_pin(vma, 0, 0, flags)))
return;
@@ -469,8 +474,7 @@ eb_add_vma(struct i915_execbuffer *eb,
__exec_to_vma(entry) = (uintptr_t)vma;
err = 0;
- if (vma->node.size)
- eb_pin_vma(eb, entry, vma);
+ eb_pin_vma(eb, entry, vma);
if (eb_vma_misplaced(entry, vma)) {
eb_unreserve_vma(vma, entry);