public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Matthew Auld <matthew.auld@intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>, intel-gfx@lists.freedesktop.org
Cc: mika.kuoppala@intel.com
Subject: Re: [PATCH 16/22] drm/i915: Push the i915_active.retire into a worker
Date: Mon, 17 Jun 2019 20:25:31 +0100	[thread overview]
Message-ID: <78c745c9-80ac-27c7-f21c-cbfe2995e24b@intel.com> (raw)
In-Reply-To: <20190617071912.20256-16-chris@chris-wilson.co.uk>

On 17/06/2019 08:19, Chris Wilson wrote:
> As we need to use a mutex to serialisation i915_active activation

to serialise

> (because we want to allow the callback to sleep), we need to push the
> i915_active.retire into a worker callback in case we get need to retire
> from an atomic context.
> 
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> ---
>   drivers/gpu/drm/i915/gem/i915_gem_context.c |  1 +
>   drivers/gpu/drm/i915/gt/intel_context.c     |  1 +
>   drivers/gpu/drm/i915/i915_active.c          | 72 ++++++++++++++++-----
>   drivers/gpu/drm/i915/i915_active_types.h    | 12 ++++
>   drivers/gpu/drm/i915/i915_timeline.c        |  1 +
>   drivers/gpu/drm/i915/i915_vma.c             |  3 +-
>   6 files changed, 74 insertions(+), 16 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_context.c b/drivers/gpu/drm/i915/gem/i915_gem_context.c
> index 9262a1d4f763..c85468d517ef 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_context.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_context.c
> @@ -891,6 +891,7 @@ struct context_barrier_task {
>   	void *data;
>   };
>   
> +__i915_active_call
>   static void cb_retire(struct i915_active *base)
>   {
>   	struct context_barrier_task *cb = container_of(base, typeof(*cb), base);
> diff --git a/drivers/gpu/drm/i915/gt/intel_context.c b/drivers/gpu/drm/i915/gt/intel_context.c
> index b19aa823a51a..abeb6bf0155a 100644
> --- a/drivers/gpu/drm/i915/gt/intel_context.c
> +++ b/drivers/gpu/drm/i915/gt/intel_context.c
> @@ -122,6 +122,7 @@ static void __context_unpin_state(struct i915_vma *vma)
>   	__i915_vma_unpin(vma);
>   }
>   
> +__i915_active_call
>   static void __intel_context_retire(struct i915_active *active)
>   {
>   	struct intel_context *ce = container_of(active, typeof(*ce), active);
> diff --git a/drivers/gpu/drm/i915/i915_active.c b/drivers/gpu/drm/i915/i915_active.c
> index 6a9f8d37f415..20b0e19aafff 100644
> --- a/drivers/gpu/drm/i915/i915_active.c
> +++ b/drivers/gpu/drm/i915/i915_active.c
> @@ -30,18 +30,14 @@ struct active_node {
>   };
>   
>   static void
> -active_retire(struct i915_active *ref)
> +__active_retire(struct i915_active *ref)
>   {
>   	struct active_node *it, *n;
>   	struct rb_root root;
>   	bool retire = false;
>   
> -	GEM_BUG_ON(!atomic_read(&ref->count));
> -	if (atomic_add_unless(&ref->count, -1, 1))
> -		return;
> -
> -	/* One active may be flushed from inside the acquire of another */
> -	mutex_lock_nested(&ref->mutex, SINGLE_DEPTH_NESTING);
> +	lockdep_assert_held(&ref->mutex);
> +	GEM_BUG_ON(i915_active_is_idle(ref));
>   
>   	/* return the unused nodes to our slabcache -- flushing the allocator */
>   	if (atomic_dec_and_test(&ref->count)) {
> @@ -63,6 +59,36 @@ active_retire(struct i915_active *ref)
>   	}
>   }
>   
> +static void
> +active_work(struct work_struct *wrk)
> +{
> +	struct i915_active *ref = container_of(wrk, typeof(*ref), work);
> +
> +	GEM_BUG_ON(!atomic_read(&ref->count));
> +	if (atomic_add_unless(&ref->count, -1, 1))
> +		return;
> +
> +	mutex_lock(&ref->mutex);
> +	__active_retire(ref);
> +}
> +
> +static void
> +active_retire(struct i915_active *ref)
> +{
> +	GEM_BUG_ON(!atomic_read(&ref->count));
> +	if (atomic_add_unless(&ref->count, -1, 1))
> +		return;
> +
> +	/* If we are inside interrupt context (fence signaling), defer */
> +	if (ref->flags & I915_ACTIVE_RETIRE_SLEEPS ||
> +	    !mutex_trylock(&ref->mutex)) {
> +		queue_work(system_unbound_wq, &ref->work);
> +		return;
> +	}
> +
> +	__active_retire(ref);
> +}
> +
>   static void
>   node_retire(struct i915_active_request *base, struct i915_request *rq)
>   {
> @@ -132,14 +158,22 @@ void __i915_active_init(struct drm_i915_private *i915,
>   			void (*retire)(struct i915_active *ref),
>   			struct lock_class_key *key)
>   {
> +	unsigned long bits;
> +
>   	ref->i915 = i915;
> +
> +	ref->flags = 0;
>   	ref->active = active;
> -	ref->retire = retire;
> +	ref->retire = ptr_unpack_bits(retire, &bits, 2);
> +	if (bits & I915_ACTIVE_MAY_SLEEP)
> +		ref->flags |= I915_ACTIVE_RETIRE_SLEEPS;
> +
>   	ref->tree = RB_ROOT;
>   	ref->cache = NULL;
>   	init_llist_head(&ref->barriers);
>   	atomic_set(&ref->count, 0);
>   	__mutex_init(&ref->mutex, "i915_active", key);
> +	INIT_WORK(&ref->work, active_work);
>   }
>   
>   int i915_active_ref(struct i915_active *ref,
> @@ -208,8 +242,10 @@ int i915_active_wait(struct i915_active *ref)
>   	if (err)
>   		return err;
>   
> -	if (!atomic_add_unless(&ref->count, 1, 0))
> -		goto unlock;
> +	if (!atomic_add_unless(&ref->count, 1, 0)) {
> +		mutex_unlock(&ref->mutex);
> +		return 0;
> +	}
>   
>   	rbtree_postorder_for_each_entry_safe(it, n, &ref->tree, node) {
>   		err = i915_active_request_retire(&it->base, BKL(ref));
> @@ -217,10 +253,15 @@ int i915_active_wait(struct i915_active *ref)
>   			break;
>   	}
>   
> -	active_retire(ref);
> -unlock:
> -	mutex_unlock(&ref->mutex);
> -	return err;
> +	__active_retire(ref);
> +	if (err)
> +		return err;
> +
> +	flush_work(&ref->work);
> +	if (!i915_active_is_idle(ref))
> +		return -EBUSY;
> +
> +	return 0;
>   }
>   
>   int i915_request_await_active_request(struct i915_request *rq,
> @@ -260,8 +301,9 @@ int i915_request_await_active(struct i915_request *rq, struct i915_active *ref)
>   #if IS_ENABLED(CONFIG_DRM_I915_DEBUG_GEM)
>   void i915_active_fini(struct i915_active *ref)
>   {
> -	GEM_BUG_ON(!RB_EMPTY_ROOT(&ref->tree));
>   	GEM_BUG_ON(atomic_read(&ref->count));
> +	GEM_BUG_ON(work_pending(&ref->work));
> +	GEM_BUG_ON(!RB_EMPTY_ROOT(&ref->tree));
>   	mutex_destroy(&ref->mutex);
>   }
>   #endif
> diff --git a/drivers/gpu/drm/i915/i915_active_types.h b/drivers/gpu/drm/i915/i915_active_types.h
> index 5b0a3024ce24..a3a5ec3e4163 100644
> --- a/drivers/gpu/drm/i915/i915_active_types.h
> +++ b/drivers/gpu/drm/i915/i915_active_types.h
> @@ -12,6 +12,9 @@
>   #include <linux/mutex.h>
>   #include <linux/rbtree.h>
>   #include <linux/rcupdate.h>
> +#include <linux/workqueue.h>
> +
> +#include "i915_utils.h"
>   
>   struct drm_i915_private;
>   struct i915_active_request;
> @@ -28,6 +31,11 @@ struct i915_active_request {
>   
>   struct active_node;
>   
> +#define I915_ACTIVE_MAY_SLEEP BIT(0)
> +
> +#define __i915_active_call __aligned(4)
> +#define i915_active_may_sleep(fn) ptr_pack_bits(&(fn), I915_ACTIVE_MAY_SLEEP, 2)

Neat,
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  reply	other threads:[~2019-06-17 19:25 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-17  7:18 [PATCH 01/22] drm/i915: Restore -Wunused-but-set-variable Chris Wilson
2019-06-17  7:18 ` [PATCH 02/22] drm/i915/gtt: Serialise both updates to PDE and our shadow Chris Wilson
2019-06-17 10:36   ` Matthew Auld
2019-06-17 10:40     ` Chris Wilson
2019-06-17  7:18 ` [PATCH 03/22] drm/i915: Skip shrinking already freed pages Chris Wilson
2019-06-17  7:18 ` [PATCH 04/22] drm/i915: Stop passing I915_WAIT_LOCKED to i915_request_wait() Chris Wilson
2019-06-17  7:18 ` [PATCH 05/22] drm/i915: Flush the execution-callbacks on retiring Chris Wilson
2019-06-17  7:18 ` [PATCH 06/22] drm/i915/execlists: Preempt-to-busy Chris Wilson
2019-06-17  7:18 ` [PATCH 07/22] drm/i915/execlists: Minimalistic timeslicing Chris Wilson
2019-06-17  7:18 ` [PATCH 08/22] drm/i915/execlists: Force preemption Chris Wilson
2019-06-17  7:18 ` [PATCH 09/22] drm/i915: Make the semaphore saturation mask global Chris Wilson
2019-06-17  7:19 ` [PATCH 10/22] dma-fence: Propagate errors to dma-fence-array container Chris Wilson
2019-06-17  7:19 ` [PATCH 11/22] dma-fence: Report the composite sync_file status Chris Wilson
2019-06-17  7:19 ` [PATCH 12/22] dma-fence: Refactor signaling for manual invocation Chris Wilson
2019-06-17  7:19 ` [PATCH 13/22] dma-fence: Always execute signal callbacks Chris Wilson
2019-06-17  7:19 ` [PATCH 14/22] drm/i915: Throw away the active object retirement complexity Chris Wilson
2019-06-17 13:43   ` Matthew Auld
2019-06-17 13:49     ` Chris Wilson
2019-06-17  7:19 ` [PATCH 15/22] drm/i915: Provide an i915_active.acquire callback Chris Wilson
2019-06-17 18:58   ` Matthew Auld
2019-06-17  7:19 ` [PATCH 16/22] drm/i915: Push the i915_active.retire into a worker Chris Wilson
2019-06-17 19:25   ` Matthew Auld [this message]
2019-06-17  7:19 ` [PATCH 17/22] drm/i915/overlay: Switch to using i915_active tracking Chris Wilson
2019-06-17  7:19 ` [PATCH 18/22] drm/i915: Forgo last_fence active request tracking Chris Wilson
2019-06-17 19:34   ` Matthew Auld
2019-06-17  7:19 ` [PATCH 19/22] drm/i915: Extract intel_frontbuffer active tracking Chris Wilson
2019-06-17  7:19 ` [PATCH 20/22] drm/i915: Coordinate i915_active with its own mutex Chris Wilson
2019-06-17  7:19 ` [PATCH 21/22] drm/i915: Replace struct_mutex for batch pool serialisation Chris Wilson
2019-06-17  7:19 ` [PATCH 22/22] drm/i915: Move idle barrier cleanup into engine-pm Chris Wilson
2019-06-17  7:56 ` [PATCH 01/22] drm/i915: Restore -Wunused-but-set-variable Chris Wilson
2019-06-17  8:02 ` ✗ Fi.CI.CHECKPATCH: warning for series starting with [01/22] " Patchwork
2019-06-17  8:13 ` ✗ Fi.CI.SPARSE: " Patchwork
2019-06-17 13:05 ` ✗ Fi.CI.BAT: failure " Patchwork
2019-06-17 13:18   ` Chris Wilson
2019-06-18  7:54 ` [PATCH 01/22] " Jani Nikula

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=78c745c9-80ac-27c7-f21c-cbfe2995e24b@intel.com \
    --to=matthew.auld@intel.com \
    --cc=chris@chris-wilson.co.uk \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=mika.kuoppala@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox