All of lore.kernel.org
 help / color / mirror / Atom feed
From: Chris Wilson <chris@chris-wilson.co.uk>
To: intel-gfx@lists.freedesktop.org
Subject: [PATCH v2 19/21] drm/i915: Store LRC hardware id in the request
Date: Sun, 24 Apr 2016 08:31:39 +0100	[thread overview]
Message-ID: <1461483101-10618-19-git-send-email-chris@chris-wilson.co.uk> (raw)
In-Reply-To: <1461483101-10618-1-git-send-email-chris@chris-wilson.co.uk>

From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

This way in the following patch we can disconnect requests
from contexts.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 drivers/gpu/drm/i915/i915_drv.h  | 2 ++
 drivers/gpu/drm/i915/intel_lrc.c | 3 ++-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index 515b8badce61..0efbe6c4634f 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -2349,6 +2349,8 @@ struct drm_i915_gem_request {
 	/** Execlists no. of times this request has been sent to the ELSP */
 	int elsp_submitted;
 
+	/** Execlists context hardware id. */
+	unsigned ctx_hw_id;
 };
 
 struct drm_i915_gem_request * __must_check
diff --git a/drivers/gpu/drm/i915/intel_lrc.c b/drivers/gpu/drm/i915/intel_lrc.c
index 3293dd29e274..0c46a5cf4be0 100644
--- a/drivers/gpu/drm/i915/intel_lrc.c
+++ b/drivers/gpu/drm/i915/intel_lrc.c
@@ -477,7 +477,7 @@ execlists_check_remove_request(struct intel_engine_cs *engine, u32 request_id)
 	if (!head_req)
 		return 0;
 
-	if (unlikely(head_req->ctx->hw_id != request_id))
+	if (unlikely(head_req->ctx_hw_id != request_id))
 		return 0;
 
 	WARN(head_req->elsp_submitted == 0, "Never submitted head request\n");
@@ -615,6 +615,7 @@ static void execlists_context_queue(struct drm_i915_gem_request *request)
 	}
 
 	list_add_tail(&request->execlist_link, &engine->execlist_queue);
+	request->ctx_hw_id = request->ctx->hw_id;
 	if (num_elements == 0)
 		execlists_context_unqueue(engine);
 
-- 
2.8.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

  parent reply	other threads:[~2016-04-24  7:32 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-24  7:31 [PATCH v2 01/21] drm/i915/fbdev: Call intel_unpin_fb_obj() on release Chris Wilson
2016-04-24  7:31 ` [PATCH v2 02/21] drm/i915/overlay: Replace i915_gem_obj_ggtt_offset() with the known flip_addr Chris Wilson
2016-04-24  7:31 ` [PATCH v2 03/21] io-mapping: Specify mapping size for io_mapping_map_wc() Chris Wilson
2016-04-24  7:31   ` Chris Wilson
2016-04-24  7:31   ` Chris Wilson
2016-04-24  7:31 ` [PATCH v2 04/21] drm/i915: Introduce i915_vm_to_ggtt() Chris Wilson
2016-04-24  7:31 ` [PATCH v2 05/21] drm/i915: Move ioremap_wc tracking onto VMA Chris Wilson
2016-04-24  7:31 ` [PATCH v2 06/21] drm/i915: Use i915_vma_pin_iomap on the ringbuffer object Chris Wilson
2016-04-24  7:31 ` [PATCH v2 07/21] drm/i915: Mark the current context as lost on suspend Chris Wilson
2016-04-24  7:31 ` [PATCH v2 08/21] drm/i915: L3 cache remapping is part of context switching Chris Wilson
2016-04-24  7:31 ` [PATCH v2 09/21] drm/i915: Consolidate L3 remapping LRI Chris Wilson
2016-04-24  7:31 ` [PATCH v2 10/21] drm/i915: Remove early l3-remap Chris Wilson
2016-04-24  7:31 ` [PATCH v2 11/21] drm/i915: Rearrange switch_context to load the aliasing ppgtt on first use Chris Wilson
2016-04-24  7:31 ` [PATCH v2 12/21] drm/i915: Assign every HW context a unique ID Chris Wilson
2016-04-24  7:31 ` [PATCH v2 13/21] drm/i915: Replace the pinned context address with its " Chris Wilson
2016-04-24  7:31 ` [PATCH v2 14/21] drm/i915: Refactor execlists default context pinning Chris Wilson
2016-04-24  7:31 ` [PATCH v2 15/21] drm/i915: Move context initialisation to first-use Chris Wilson
2016-04-24  7:31 ` [PATCH v2 16/21] drm/i915: Move the magical deferred context allocation into the request Chris Wilson
2016-04-24  7:31 ` [PATCH v2 17/21] drm/i915: Move releasing of the GEM request from free to retire/cancel Chris Wilson
2016-04-24  7:31 ` [PATCH v2 18/21] drm/i915: Track the previous pinned context inside the request Chris Wilson
2016-04-24  7:31 ` Chris Wilson [this message]
2016-04-24  7:31 ` [PATCH v2 20/21] drm/i915: Stop tracking execlists retired requests Chris Wilson
2016-04-24  7:31 ` [PATCH v2 21/21] drm/i915: Unify GPU resets upon shutdown Chris Wilson
2016-04-24 11:51 ` ✗ Fi.CI.BAT: failure for series starting with [v2,01/21] drm/i915/fbdev: Call intel_unpin_fb_obj() on release Patchwork
2016-04-24 12:40   ` Chris Wilson

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=1461483101-10618-19-git-send-email-chris@chris-wilson.co.uk \
    --to=chris@chris-wilson.co.uk \
    --cc=intel-gfx@lists.freedesktop.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.