* [PATCH] drm/i915: Remove unecessary per execlist queue item pm reference
@ 2014-10-20 10:31 Nick Hoath
2014-10-20 16:30 ` Daniel Vetter
0 siblings, 1 reply; 2+ messages in thread
From: Nick Hoath @ 2014-10-20 10:31 UTC (permalink / raw)
To: intel-gfx
The execlist code was holding a pm reference for the lifetime of an
execlist queue item. Having this pm reference is required when getting
force wakes during execlists_elsp_write. As this happens inside an interrupt
handler and retrieving the reference can sleep, it can't be done more fine
grained. However, the matching execbuffer already holds a pm reference which
covers this timeframe.
Issue: VIZ-4274
Signed-off-by: Nick Hoath <nicholas.hoath@intel.com>
---
drivers/gpu/drm/i915/intel_lrc.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
diff --git a/drivers/gpu/drm/i915/intel_lrc.c b/drivers/gpu/drm/i915/intel_lrc.c
index 1be836a..dc096de 100644
--- a/drivers/gpu/drm/i915/intel_lrc.c
+++ b/drivers/gpu/drm/i915/intel_lrc.c
@@ -297,7 +297,7 @@ static void execlists_elsp_write(struct intel_engine_cs *ring,
*
* The other problem is that we can't just call gen6_gt_force_wake_get()
* because that function calls intel_runtime_pm_get(), which might sleep.
- * Instead, we do the runtime_pm_get/put when creating/destroying requests.
+ * Instead, we rely on the requests pm get/put.
*/
spin_lock_irqsave(&dev_priv->uncore.lock, flags);
if (IS_CHERRYVIEW(dev_priv->dev)) {
@@ -519,8 +519,6 @@ static void execlists_free_request_task(struct work_struct *work)
struct drm_device *dev = req->ring->dev;
struct drm_i915_private *dev_priv = dev->dev_private;
- intel_runtime_pm_put(dev_priv);
-
mutex_lock(&dev->struct_mutex);
i915_gem_context_unreference(req->ctx);
mutex_unlock(&dev->struct_mutex);
@@ -546,8 +544,6 @@ static int execlists_context_queue(struct intel_engine_cs *ring,
req->tail = tail;
INIT_WORK(&req->work, execlists_free_request_task);
- intel_runtime_pm_get(dev_priv);
-
spin_lock_irqsave(&ring->execlist_lock, flags);
list_for_each_entry(cursor, &ring->execlist_queue, execlist_link)
--
2.1.1
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH] drm/i915: Remove unecessary per execlist queue item pm reference
2014-10-20 10:31 [PATCH] drm/i915: Remove unecessary per execlist queue item pm reference Nick Hoath
@ 2014-10-20 16:30 ` Daniel Vetter
0 siblings, 0 replies; 2+ messages in thread
From: Daniel Vetter @ 2014-10-20 16:30 UTC (permalink / raw)
To: Nick Hoath; +Cc: intel-gfx
On Mon, Oct 20, 2014 at 11:31:36AM +0100, Nick Hoath wrote:
> The execlist code was holding a pm reference for the lifetime of an
> execlist queue item. Having this pm reference is required when getting
> force wakes during execlists_elsp_write. As this happens inside an interrupt
> handler and retrieving the reference can sleep, it can't be done more fine
> grained. However, the matching execbuffer already holds a pm reference which
> covers this timeframe.
That's not entirely accurate. We keep the gpu out of runtime pm as long as
it's busy, which is done by the intel_mark_busy/idle functions. The
requests themselves don't actually hold a runtime pm reference.
Can you please update commit message and comments?
Also, I don't think this works without also reworking the way we retire
execlist items since atm they're retired in a complete separate work item.
So you can't actually rely on the overal gpu business runtime pm.
I think we need to assemeble all the different pieces of the
request/execlist puzzle into one patch series. Looking at each individual
piece doesn't make a lot of sense to me.
Thanks, Daniel
>
> Issue: VIZ-4274
> Signed-off-by: Nick Hoath <nicholas.hoath@intel.com>
> ---
> drivers/gpu/drm/i915/intel_lrc.c | 6 +-----
> 1 file changed, 1 insertion(+), 5 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/intel_lrc.c b/drivers/gpu/drm/i915/intel_lrc.c
> index 1be836a..dc096de 100644
> --- a/drivers/gpu/drm/i915/intel_lrc.c
> +++ b/drivers/gpu/drm/i915/intel_lrc.c
> @@ -297,7 +297,7 @@ static void execlists_elsp_write(struct intel_engine_cs *ring,
> *
> * The other problem is that we can't just call gen6_gt_force_wake_get()
> * because that function calls intel_runtime_pm_get(), which might sleep.
> - * Instead, we do the runtime_pm_get/put when creating/destroying requests.
> + * Instead, we rely on the requests pm get/put.
> */
> spin_lock_irqsave(&dev_priv->uncore.lock, flags);
> if (IS_CHERRYVIEW(dev_priv->dev)) {
> @@ -519,8 +519,6 @@ static void execlists_free_request_task(struct work_struct *work)
> struct drm_device *dev = req->ring->dev;
> struct drm_i915_private *dev_priv = dev->dev_private;
>
> - intel_runtime_pm_put(dev_priv);
> -
> mutex_lock(&dev->struct_mutex);
> i915_gem_context_unreference(req->ctx);
> mutex_unlock(&dev->struct_mutex);
> @@ -546,8 +544,6 @@ static int execlists_context_queue(struct intel_engine_cs *ring,
> req->tail = tail;
> INIT_WORK(&req->work, execlists_free_request_task);
>
> - intel_runtime_pm_get(dev_priv);
> -
> spin_lock_irqsave(&ring->execlist_lock, flags);
>
> list_for_each_entry(cursor, &ring->execlist_queue, execlist_link)
> --
> 2.1.1
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
--
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-10-20 16:30 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-20 10:31 [PATCH] drm/i915: Remove unecessary per execlist queue item pm reference Nick Hoath
2014-10-20 16:30 ` Daniel Vetter
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox