Commit cd377ea9 authored by Chris Wilson's avatar Chris Wilson Committed by Eric Anholt

drm/i915: Implement fair lru eviction across both rings. (v2)

Based in a large part upon Daniel Vetter's implementation and adapted
for handling multiple rings in a single pass.

This should lead to better gtt usage and fixes the page-fault-of-doom
triggered. The fairness is provided by scanning through the GTT space
amalgamating space in rendering order. As soon as we have a contiguous
space in the GTT large enough for the new object (and its alignment),
evict any object which lies within that space. This should keep more
objects resident in the GTT.

Doing throughput testing on a PineView machine with cairo-perf-trace
indicates that there is very little difference with the new LRU scan,
perhaps a small improvement... Except oddly for the poppler trace.

Reference:

  Bug 15911 - Intermittent X crash (freeze)
  https://bugzilla.kernel.org/show_bug.cgi?id=15911

  Bug 20152 - cannot view JPG in firefox when running UXA
  https://bugs.freedesktop.org/show_bug.cgi?id=20152

  Bug 24369 - Hang when scrolling firefox page with window in front
  https://bugs.freedesktop.org/show_bug.cgi?id=24369

  Bug 28478 - Intermittent graphics lockups due to overflow/loop
  https://bugs.freedesktop.org/show_bug.cgi?id=28478

v2: Attempt to clarify the logic and order of eviction through the use
of comments and macros.
Signed-off-by: default avatarChris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: default avatarDaniel Vetter <daniel@ffwll.ch>
Signed-off-by: default avatarEric Anholt <eric@anholt.net>
parent b47eb4a2
...@@ -673,6 +673,8 @@ struct drm_i915_gem_object { ...@@ -673,6 +673,8 @@ struct drm_i915_gem_object {
struct list_head list; struct list_head list;
/** This object's place on GPU write list */ /** This object's place on GPU write list */
struct list_head gpu_write_list; struct list_head gpu_write_list;
/** This object's place on eviction list */
struct list_head evict_list;
/** /**
* This is set if the object is on the active or flushing lists * This is set if the object is on the active or flushing lists
......
...@@ -31,167 +31,178 @@ ...@@ -31,167 +31,178 @@
#include "i915_drv.h" #include "i915_drv.h"
#include "i915_drm.h" #include "i915_drm.h"
static inline int static struct drm_i915_gem_object *
i915_gem_object_is_purgeable(struct drm_i915_gem_object *obj_priv) i915_gem_next_active_object(struct drm_device *dev,
{ struct list_head **render_iter,
return obj_priv->madv == I915_MADV_DONTNEED; struct list_head **bsd_iter)
}
static int
i915_gem_scan_inactive_list_and_evict(struct drm_device *dev, int min_size,
unsigned alignment, int *found)
{ {
drm_i915_private_t *dev_priv = dev->dev_private; drm_i915_private_t *dev_priv = dev->dev_private;
struct drm_gem_object *obj; struct drm_i915_gem_object *render_obj = NULL, *bsd_obj = NULL;
struct drm_i915_gem_object *obj_priv;
struct drm_gem_object *best = NULL;
struct drm_gem_object *first = NULL;
/* Try to find the smallest clean object */
list_for_each_entry(obj_priv, &dev_priv->mm.inactive_list, list) {
struct drm_gem_object *obj = &obj_priv->base;
if (obj->size >= min_size) {
if ((!obj_priv->dirty ||
i915_gem_object_is_purgeable(obj_priv)) &&
(!best || obj->size < best->size)) {
best = obj;
if (best->size == min_size)
break;
}
if (!first)
first = obj;
}
}
obj = best ? best : first; if (*render_iter != &dev_priv->render_ring.active_list)
render_obj = list_entry(*render_iter,
struct drm_i915_gem_object,
list);
if (!obj) { if (HAS_BSD(dev)) {
*found = 0; if (*bsd_iter != &dev_priv->bsd_ring.active_list)
return 0; bsd_obj = list_entry(*bsd_iter,
} struct drm_i915_gem_object,
list);
*found = 1; if (render_obj == NULL) {
*bsd_iter = (*bsd_iter)->next;
return bsd_obj;
}
#if WATCH_LRU if (bsd_obj == NULL) {
DRM_INFO("%s: evicting %p\n", __func__, obj); *render_iter = (*render_iter)->next;
#endif return render_obj;
obj_priv = to_intel_bo(obj); }
BUG_ON(obj_priv->pin_count != 0);
BUG_ON(obj_priv->active);
/* Wait on the rendering and unbind the buffer. */ /* XXX can we handle seqno wrapping? */
return i915_gem_object_unbind(obj); if (render_obj->last_rendering_seqno < bsd_obj->last_rendering_seqno) {
*render_iter = (*render_iter)->next;
return render_obj;
} else {
*bsd_iter = (*bsd_iter)->next;
return bsd_obj;
}
} else {
*render_iter = (*render_iter)->next;
return render_obj;
}
} }
static void static bool
i915_gem_flush_ring(struct drm_device *dev, mark_free(struct drm_i915_gem_object *obj_priv,
uint32_t invalidate_domains, struct list_head *unwind)
uint32_t flush_domains,
struct intel_ring_buffer *ring)
{ {
if (flush_domains & I915_GEM_DOMAIN_CPU) list_add(&obj_priv->evict_list, unwind);
drm_agp_chipset_flush(dev); return drm_mm_scan_add_block(obj_priv->gtt_space);
ring->flush(dev, ring,
invalidate_domains,
flush_domains);
} }
#define i915_for_each_active_object(OBJ, R, B) \
*(R) = dev_priv->render_ring.active_list.next; \
*(B) = dev_priv->bsd_ring.active_list.next; \
while (((OBJ) = i915_gem_next_active_object(dev, (R), (B))) != NULL)
int int
i915_gem_evict_something(struct drm_device *dev, i915_gem_evict_something(struct drm_device *dev, int min_size, unsigned alignment)
int min_size, unsigned alignment)
{ {
drm_i915_private_t *dev_priv = dev->dev_private; drm_i915_private_t *dev_priv = dev->dev_private;
int ret, found; struct list_head eviction_list, unwind_list;
struct drm_i915_gem_object *obj_priv, *tmp_obj_priv;
struct intel_ring_buffer *render_ring = &dev_priv->render_ring; struct list_head *render_iter, *bsd_iter;
struct intel_ring_buffer *bsd_ring = &dev_priv->bsd_ring; int ret = 0;
for (;;) {
i915_gem_retire_requests(dev);
/* If there's an inactive buffer available now, grab it
* and be done.
*/
ret = i915_gem_scan_inactive_list_and_evict(dev, min_size,
alignment,
&found);
if (found)
return ret;
/* If we didn't get anything, but the ring is still processing i915_gem_retire_requests(dev);
* things, wait for the next to finish and hopefully leave us
* a buffer to evict.
*/
if (!list_empty(&render_ring->request_list)) {
struct drm_i915_gem_request *request;
request = list_first_entry(&render_ring->request_list, /* Re-check for free space after retiring requests */
struct drm_i915_gem_request, if (drm_mm_search_free(&dev_priv->mm.gtt_space,
list); min_size, alignment, 0))
return 0;
ret = i915_do_wait_request(dev, request->seqno, true, request->ring); /*
if (ret) * The goal is to evict objects and amalgamate space in LRU order.
return ret; * The oldest idle objects reside on the inactive list, which is in
* retirement order. The next objects to retire are those on the (per
* ring) active list that do not have an outstanding flush. Once the
* hardware reports completion (the seqno is updated after the
* batchbuffer has been finished) the clean buffer objects would
* be retired to the inactive list. Any dirty objects would be added
* to the tail of the flushing list. So after processing the clean
* active objects we need to emit a MI_FLUSH to retire the flushing
* list, hence the retirement order of the flushing list is in
* advance of the dirty objects on the active lists.
*
* The retirement sequence is thus:
* 1. Inactive objects (already retired)
* 2. Clean active objects
* 3. Flushing list
* 4. Dirty active objects.
*
* On each list, the oldest objects lie at the HEAD with the freshest
* object on the TAIL.
*/
INIT_LIST_HEAD(&unwind_list);
drm_mm_init_scan(&dev_priv->mm.gtt_space, min_size, alignment);
/* First see if there is a large enough contiguous idle region... */
list_for_each_entry(obj_priv, &dev_priv->mm.inactive_list, list) {
if (mark_free(obj_priv, &unwind_list))
goto found;
}
/* Now merge in the soon-to-be-expired objects... */
i915_for_each_active_object(obj_priv, &render_iter, &bsd_iter) {
/* Does the object require an outstanding flush? */
if (obj_priv->base.write_domain || obj_priv->pin_count)
continue; continue;
}
if (HAS_BSD(dev) && !list_empty(&bsd_ring->request_list)) { if (mark_free(obj_priv, &unwind_list))
struct drm_i915_gem_request *request; goto found;
}
request = list_first_entry(&bsd_ring->request_list,
struct drm_i915_gem_request,
list);
ret = i915_do_wait_request(dev, request->seqno, true, request->ring); /* Finally add anything with a pending flush (in order of retirement) */
if (ret) list_for_each_entry(obj_priv, &dev_priv->mm.flushing_list, list) {
return ret; if (obj_priv->pin_count)
continue;
if (mark_free(obj_priv, &unwind_list))
goto found;
}
i915_for_each_active_object(obj_priv, &render_iter, &bsd_iter) {
if (! obj_priv->base.write_domain || obj_priv->pin_count)
continue; continue;
}
/* If we didn't have anything on the request list but there if (mark_free(obj_priv, &unwind_list))
* are buffers awaiting a flush, emit one and try again. goto found;
* When we wait on it, those buffers waiting for that flush }
* will get moved to inactive.
*/ /* Nothing found, clean up and bail out! */
if (!list_empty(&dev_priv->mm.flushing_list)) { list_for_each_entry(obj_priv, &unwind_list, evict_list) {
struct drm_gem_object *obj = NULL; ret = drm_mm_scan_remove_block(obj_priv->gtt_space);
struct drm_i915_gem_object *obj_priv; BUG_ON(ret);
}
/* Find an object that we can immediately reuse */
list_for_each_entry(obj_priv, &dev_priv->mm.flushing_list, list) { /* We expect the caller to unpin, evict all and try again, or give up.
obj = &obj_priv->base; * So calling i915_gem_evict_everything() is unnecessary.
if (obj->size >= min_size) */
break; return -ENOSPC;
obj = NULL; found:
} INIT_LIST_HEAD(&eviction_list);
list_for_each_entry_safe(obj_priv, tmp_obj_priv,
if (obj != NULL) { &unwind_list, evict_list) {
uint32_t seqno; if (drm_mm_scan_remove_block(obj_priv->gtt_space)) {
/* drm_mm doesn't allow any other other operations while
i915_gem_flush_ring(dev, * scanning, therefore store to be evicted objects on a
obj->write_domain, * temporary list. */
obj->write_domain, list_move(&obj_priv->evict_list, &eviction_list);
obj_priv->ring);
seqno = i915_add_request(dev, NULL,
obj->write_domain,
obj_priv->ring);
if (seqno == 0)
return -ENOMEM;
continue;
}
} }
}
/* If we didn't do any of the above, there's no single buffer /* Unbinding will emit any required flushes */
* large enough to swap out for the new one, so just evict list_for_each_entry_safe(obj_priv, tmp_obj_priv,
* everything and start again. (This should be rare.) &eviction_list, evict_list) {
*/ #if WATCH_LRU
if (!list_empty(&dev_priv->mm.inactive_list)) DRM_INFO("%s: evicting %p\n", __func__, obj);
return i915_gem_evict_inactive(dev); #endif
else ret = i915_gem_object_unbind(&obj_priv->base);
return i915_gem_evict_everything(dev); if (ret)
return ret;
} }
/* The just created free hole should be on the top of the free stack
* maintained by drm_mm, so this BUG_ON actually executes in O(1).
* Furthermore all accessed data has just recently been used, so it
* should be really fast, too. */
BUG_ON(!drm_mm_search_free(&dev_priv->mm.gtt_space, min_size,
alignment, 0));
return 0;
} }
int int
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment