Skip to content

Commit

Permalink
drm/i915: Prevent lock-cycles between GPU waits and GPU resets
Browse files Browse the repository at this point in the history
We cannot allow ourselves to wait on the GPU while holding any lock as we
may need to reset the GPU. While there is not an explicit lock between
the two operations, lockdep cannot detect the dependency. So let's tell
lockdep about the wait/reset dependency with an explicit lockmap.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190612085246.16374-1-chris@chris-wilson.co.uk
  • Loading branch information
Chris Wilson committed Jun 12, 2019
1 parent ea60f4b commit 33df8a7
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 1 deletion.
5 changes: 4 additions & 1 deletion drivers/gpu/drm/i915/gt/intel_reset.c
Original file line number Diff line number Diff line change
Expand Up @@ -978,10 +978,11 @@ void i915_reset(struct drm_i915_private *i915,

might_sleep();
GEM_BUG_ON(!test_bit(I915_RESET_BACKOFF, &error->flags));
lock_map_acquire(&i915->gt.reset_lockmap);

/* Clear any previous failed attempts at recovery. Time to try again. */
if (!__i915_gem_unset_wedged(i915))
return;
goto unlock;

if (reason)
dev_notice(i915->drm.dev, "Resetting chip for %s\n", reason);
Expand Down Expand Up @@ -1029,6 +1030,8 @@ void i915_reset(struct drm_i915_private *i915,

finish:
reset_finish(i915);
unlock:
lock_map_release(&i915->gt.reset_lockmap);
return;

taint:
Expand Down
8 changes: 8 additions & 0 deletions drivers/gpu/drm/i915/i915_drv.h
Original file line number Diff line number Diff line change
Expand Up @@ -1919,6 +1919,14 @@ struct drm_i915_private {
ktime_t last_init_time;

struct i915_vma *scratch;

/*
* We must never wait on the GPU while holding a lock as we
* may need to perform a GPU reset. So while we don't need to
* serialise wait/reset with an explicit lock, we do want
* lockdep to detect potential dependency cycles.
*/
struct lockdep_map reset_lockmap;
} gt;

struct {
Expand Down
3 changes: 3 additions & 0 deletions drivers/gpu/drm/i915/i915_gem.c
Original file line number Diff line number Diff line change
Expand Up @@ -1782,13 +1782,16 @@ static void i915_gem_init__mm(struct drm_i915_private *i915)

int i915_gem_init_early(struct drm_i915_private *dev_priv)
{
static struct lock_class_key reset_key;
int err;

intel_gt_pm_init(dev_priv);

INIT_LIST_HEAD(&dev_priv->gt.active_rings);
INIT_LIST_HEAD(&dev_priv->gt.closed_vma);
spin_lock_init(&dev_priv->gt.closed_lock);
lockdep_init_map(&dev_priv->gt.reset_lockmap,
"i915.reset", &reset_key, 0);

i915_gem_init__mm(dev_priv);
i915_gem_init__pm(dev_priv);
Expand Down
2 changes: 2 additions & 0 deletions drivers/gpu/drm/i915/i915_request.c
Original file line number Diff line number Diff line change
Expand Up @@ -1444,6 +1444,7 @@ long i915_request_wait(struct i915_request *rq,
return -ETIME;

trace_i915_request_wait_begin(rq, flags);
lock_map_acquire(&rq->i915->gt.reset_lockmap);

/*
* Optimistic spin before touching IRQs.
Expand Down Expand Up @@ -1517,6 +1518,7 @@ long i915_request_wait(struct i915_request *rq,
dma_fence_remove_callback(&rq->fence, &wait.cb);

out:
lock_map_release(&rq->i915->gt.reset_lockmap);
trace_i915_request_wait_end(rq);
return timeout;
}
Expand Down
2 changes: 2 additions & 0 deletions drivers/gpu/drm/i915/selftests/mock_gem_device.c
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ static struct dev_pm_domain pm_domain = {

struct drm_i915_private *mock_gem_device(void)
{
static struct lock_class_key reset_key;
struct drm_i915_private *i915;
struct pci_dev *pdev;
int err;
Expand Down Expand Up @@ -204,6 +205,7 @@ struct drm_i915_private *mock_gem_device(void)
INIT_LIST_HEAD(&i915->gt.active_rings);
INIT_LIST_HEAD(&i915->gt.closed_vma);
spin_lock_init(&i915->gt.closed_lock);
lockdep_init_map(&i915->gt.reset_lockmap, "i915.reset", &reset_key, 0);

mutex_lock(&i915->drm.struct_mutex);

Expand Down

0 comments on commit 33df8a7

Please sign in to comment.