From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: Dave Gordon <david.s.gordon@intel.com>, intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v2 2/6] drm/i915/guc: refactor guc_init_doorbell_hw()
Date: Fri, 22 Jul 2016 11:01:50 +0100 [thread overview]
Message-ID: <5791EF0E.9000902@linux.intel.com> (raw)
In-Reply-To: <1469124942-17943-3-git-send-email-david.s.gordon@intel.com>
On 21/07/16 19:15, Dave Gordon wrote:
> We have essentially the same code in each of two different loops, so we
> can refactor it into a little helper function.
>
> Signed-off-by: Dave Gordon <david.s.gordon@intel.com>
> ---
> drivers/gpu/drm/i915/i915_guc_submission.c | 54 +++++++++++++++++-------------
> 1 file changed, 30 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_guc_submission.c b/drivers/gpu/drm/i915/i915_guc_submission.c
> index 9c5b81b..816bdca 100644
> --- a/drivers/gpu/drm/i915/i915_guc_submission.c
> +++ b/drivers/gpu/drm/i915/i915_guc_submission.c
> @@ -698,32 +698,47 @@ static void gem_release_guc_obj(struct drm_i915_gem_object *obj)
> kfree(client);
> }
>
> +/* Check that a doorbell register is in the expected state */
> +static bool guc_doorbell_check(struct intel_guc *guc, uint16_t db_id)
> +{
> + struct drm_i915_private *dev_priv = guc_to_i915(guc);
> + i915_reg_t drbreg = GEN8_DRBREGL(db_id);
> + uint32_t value = I915_READ(drbreg);
> + bool enabled = (value & GUC_DOORBELL_ENABLED) != 0;
> + bool expected = test_bit(db_id, guc->doorbell_bitmap);
> +
> + if (enabled == expected)
> + return true;
> +
> + DRM_DEBUG_DRIVER("Doorbell %d (reg 0x%x) 0x%x, should be %s\n",
> + db_id, drbreg.reg, value,
> + expected ? "active" : "inactive");
> +
> + return false;
> +}
> +
> /*
> * 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)
> {
> - struct drm_i915_private *dev_priv = guc_to_i915(guc);
> struct i915_guc_client *client = guc->execbuf_client;
> - uint16_t db_id, i;
> - int err;
> + uint16_t db_id;
> + int i, err;
>
> + /* Save client's original doorbell selection */
> db_id = client->doorbell_id;
>
> for (i = 0; i < GUC_MAX_DOORBELLS; ++i) {
> - i915_reg_t drbreg = GEN8_DRBREGL(i);
> - u32 value = I915_READ(drbreg);
> -
> - if (test_bit(i, guc->doorbell_bitmap))
> + /* Skip if doorbell is OK */
> + if (guc_doorbell_check(guc, i))
> continue;
>
> err = guc_update_doorbell_id(guc, client, i);
> -
> - /* Report update failure or unexpectedly active doorbell */
> - if (err || (i != db_id && (value & GUC_DOORBELL_ENABLED)))
> - DRM_DEBUG_DRIVER("Doorbell %d (reg 0x%x) was 0x%x, err %d\n",
> - i, drbreg.reg, value, err);
> + if (err)
> + DRM_DEBUG_DRIVER("Doorbell %d update failed, err %d\n",
> + i, err);
> }
>
> /* Restore to original value */
> @@ -732,18 +747,9 @@ static void guc_init_doorbell_hw(struct intel_guc *guc)
> DRM_ERROR("Failed to restore doorbell to %d, err %d\n",
> db_id, err);
>
> - for (i = 0; i < GUC_MAX_DOORBELLS; ++i) {
> - 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);
> -
> - }
> + /* Read back & verify all doorbell registers */
> + for (i = 0; i < GUC_MAX_DOORBELLS; ++i)
> + (void)guc_doorbell_check(guc, i);
> }
>
> /**
>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Regards,
Tvrtko
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2016-07-22 10:01 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-21 18:15 [PATCH v2 0/6] drm/i915/guc: use one GuC client per GPU engine Dave Gordon
2016-07-21 18:15 ` [PATCH v2 1/6] drm/i915/guc: doorbell reset should avoid used doorbells Dave Gordon
2016-07-22 10:00 ` Tvrtko Ursulin
2016-07-21 18:15 ` [PATCH v2 2/6] drm/i915/guc: refactor guc_init_doorbell_hw() Dave Gordon
2016-07-22 10:01 ` Tvrtko Ursulin [this message]
2016-07-21 18:15 ` [PATCH v2 3/6] drm/i915/guc: use a separate GuC client for each engine Dave Gordon
2016-07-21 18:30 ` Chris Wilson
2016-07-22 10:23 ` Dave Gordon
2016-07-22 21:57 ` Chris Wilson
2016-07-21 18:15 ` [PATCH v2 4/6] drm/i915/guc: add engine mask to GuC client & pass to GuC Dave Gordon
2016-07-21 18:15 ` [PATCH v2 5/6] drm/i915/guc: use for_each_engine_id() where appropriate Dave Gordon
2016-07-22 10:04 ` Tvrtko Ursulin
2016-07-22 10:45 ` Dave Gordon
2016-07-21 18:15 ` [PATCH v2 6/6] drm/i915/guc: re-optimise i915_guc_client layout Dave Gordon
2016-07-22 10:05 ` Tvrtko Ursulin
2016-07-22 6:02 ` ✓ Ro.CI.BAT: success for drm/i915/guc: use one GuC client per GPU engine Patchwork
2016-07-22 10:06 ` Tvrtko Ursulin
2016-07-22 15:17 ` Dave Gordon
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=5791EF0E.9000902@linux.intel.com \
--to=tvrtko.ursulin@linux.intel.com \
--cc=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