From: Dave Gordon <david.s.gordon@intel.com>
To: intel-gfx@lists.freedesktop.org
Subject: [PATCH v3 1/6] drm/i915/guc: doorbell reset should avoid used doorbells
Date: Tue, 9 Aug 2016 15:19:19 +0100 [thread overview]
Message-ID: <1470752364-26940-2-git-send-email-david.s.gordon@intel.com> (raw)
In-Reply-To: <1470752364-26940-1-git-send-email-david.s.gordon@intel.com>
guc_init_doorbell_hw() borrows the (currently single) GuC client to use
in reinitialising ALL the doorbell registers (as the hardware doesn't
reset them when the GuC is reset). As a prerequisite for accommodating
multiple clients, it should only reset doorbells that are supposed to be
disabled, avoiding those that are marked as in use by any client.
Signed-off-by: Dave Gordon <david.s.gordon@intel.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
---
drivers/gpu/drm/i915/i915_guc_submission.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/i915/i915_guc_submission.c b/drivers/gpu/drm/i915/i915_guc_submission.c
index 03a5cef..d5db0d1 100644
--- a/drivers/gpu/drm/i915/i915_guc_submission.c
+++ b/drivers/gpu/drm/i915/i915_guc_submission.c
@@ -697,7 +697,7 @@ static void gem_release_guc_obj(struct drm_i915_gem_object *obj)
}
/*
- * Borrow the first client to set up & tear down every doorbell
+ * Borrow the first client to set up & tear down each unused doorbell
* in turn, to ensure that all doorbell h/w is (re)initialised.
*/
static void guc_init_doorbell_hw(struct intel_guc *guc)
@@ -713,6 +713,9 @@ static void guc_init_doorbell_hw(struct intel_guc *guc)
i915_reg_t drbreg = GEN8_DRBREGL(i);
u32 value = I915_READ(drbreg);
+ if (test_bit(i, guc->doorbell_bitmap))
+ continue;
+
err = guc_update_doorbell_id(guc, client, i);
/* Report update failure or unexpectedly active doorbell */
@@ -731,6 +734,9 @@ static void guc_init_doorbell_hw(struct intel_guc *guc)
i915_reg_t drbreg = GEN8_DRBREGL(i);
u32 value = I915_READ(drbreg);
+ if (test_bit(i, guc->doorbell_bitmap))
+ continue;
+
if (i != db_id && (value & GUC_DOORBELL_ENABLED))
DRM_DEBUG_DRIVER("Doorbell %d (reg 0x%x) finally 0x%x\n",
i, drbreg.reg, value);
--
1.9.1
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2016-08-09 14:19 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-09 14:19 [PATCH v3 0/6] Accommodate multiple GuC submission clients Dave Gordon
2016-08-09 14:19 ` Dave Gordon [this message]
2016-08-09 14:19 ` [PATCH v3 2/6] drm/i915/guc: refactor guc_init_doorbell_hw() Dave Gordon
2016-08-09 14:19 ` [PATCH v3 3/6] drm/i915/guc: add engine mask to GuC client & pass to GuC Dave Gordon
2016-08-09 14:19 ` [PATCH v3 4/6] drm/i915/guc: use for_each_engine_id() where appropriate Dave Gordon
2016-08-09 14:19 ` [PATCH v3 5/6] drm/i915/guc: re-optimise i915_guc_client layout Dave Gordon
2016-08-09 14:19 ` [PATCH v3 6/6] NOMERGE: re-enable GuC loading and submission by default Dave Gordon
2016-08-09 14:55 ` ✗ Ro.CI.BAT: failure for Accommodate multiple GuC submission clients Patchwork
2016-08-09 15:48 ` Dave Gordon
2016-08-10 9:42 ` Tvrtko Ursulin
2016-08-10 7:19 ` Patchwork
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=1470752364-26940-2-git-send-email-david.s.gordon@intel.com \
--to=david.s.gordon@intel.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox