public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Sagar Arun Kamble <sagar.a.kamble@intel.com>
To: "Michał Winiarski" <michal.winiarski@intel.com>,
	"Chris Wilson" <chris@chris-wilson.co.uk>
Cc: intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH v8 6/8] drm/i915/guc: Update GuC suspend functionality in intel_uc_suspend
Date: Tue, 26 Sep 2017 19:45:32 +0530	[thread overview]
Message-ID: <8c9071fc-d625-00a2-4c7e-c8d2193fb0a8@intel.com> (raw)
In-Reply-To: <20170926135712.sffltgxkaj6yzwp5@mwiniars-main.ger.corp.intel.com>



On 9/26/2017 7:27 PM, Michał Winiarski wrote:
> On Tue, Sep 26, 2017 at 02:49:48PM +0100, Chris Wilson wrote:
>> Quoting Sagar Arun Kamble (2017-09-26 14:24:43)
>>> With this patch we disable GuC submission in i915_drm_suspend path.
>>> This will destroy the client which will be setup back again. We also
>>> reuse the complete sanitization done via intel_uc_runtime_suspend in
>>> this path. Post i915_drm_resume, this state is recreated by
>>> intel_uc_init_hw hence we need not have similar reuse for intel_uc_resume.
>>> This also fixes issue where intel_uc_fini_hw was being called after GPU
>>> reset happening in i915_gem_suspend during i915_driver_unload.
>>>
>>> v2: Rebase w.r.t removal of GuC code restructuring. Added struct_mutex
>>> protection for i915_guc_submission_disable.
>>>
>>> v3: Rebase w.r.t updated GuC suspend function name.
>>>
>>> v4: Added lockdep assert in i915_guc_submission_enable/disable.
>>> Refined intel_uc_suspend to remove unnecessary locals and simplify
>>> return. (Michal Winiarski)
>>> Removed comment in guc_client_free about ignoring failure for
>>> destroy_doorbell. (Oscar)
>>> Rebase w.r.t i915_modparams change.
>>>
>>> Cc: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>> Cc: Michał Winiarski <michal.winiarski@intel.com>
>>> Reviewed-by: Michał Winiarski <michal.winiarski@intel.com>
>>> Signed-off-by: Sagar Arun Kamble <sagar.a.kamble@intel.com>
>>> ---
>>>   drivers/gpu/drm/i915/i915_guc_submission.c | 15 ++++++++++++---
>>>   drivers/gpu/drm/i915/intel_uc.c            | 11 +++++++----
>>>   2 files changed, 19 insertions(+), 7 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/i915/i915_guc_submission.c b/drivers/gpu/drm/i915/i915_guc_submission.c
>>> index d1d6c0d..0c56765 100644
>>> --- a/drivers/gpu/drm/i915/i915_guc_submission.c
>>> +++ b/drivers/gpu/drm/i915/i915_guc_submission.c
>>> @@ -885,9 +885,6 @@ static void guc_client_free(struct i915_guc_client *client)
>>>           * Be sure to drop any locks
>>>           */
>>>   
>>> -       /* FIXME: in many cases, by the time we get here the GuC has been
>>> -        * reset, so we cannot destroy the doorbell properly. Ignore the
>>> -        * error message for now */
>>>          destroy_doorbell(client);
>>>          guc_stage_desc_fini(client->guc, client);
>>>          i915_gem_object_unpin_map(client->vma->obj);
>>> @@ -1154,6 +1151,12 @@ int i915_guc_submission_enable(struct drm_i915_private *dev_priv)
>>>                       sizeof(struct guc_wq_item) *
>>>                       I915_NUM_ENGINES > GUC_WQ_SIZE);
>>>   
>>> +       /*
>>> +        * Assert that drm.struct_mutex is held.
>> Ahem.
>>
>>> +        * Needed for GuC client vma binding.
>>> +        */
>>> +       lockdep_assert_held(&dev_priv->drm.struct_mutex);
>> If you don't directly depend on struct_mutex, don't assert it. Otherwise
>> the person who removes that requirement will get very confused and upset.
>> -Chris
> My bad - I suggested that.
> Failed to notice *why* we're taking the mutex, and that we're already have
> lockdep assert in the right place (__i915_gem_object_release_unless_active).
>
> Sorry :)
>
> -Michał
Will remove this. Thanks.
>
>> _______________________________________________
>> Intel-gfx mailing list
>> Intel-gfx@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

  reply	other threads:[~2017-09-26 14:15 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-26 13:24 [PATCH v8 1/8] drm/i915: Create GEM runtime resume helper and handle GEM suspend/resume errors Sagar Arun Kamble
2017-09-26 13:24 ` [PATCH v8 2/8] drm/i915: Update GEM suspend/resume flows considering GuC and GEM fences Sagar Arun Kamble
2017-09-26 13:42   ` Chris Wilson
2017-09-26 14:24     ` Sagar Arun Kamble
2017-09-26 14:39       ` Chris Wilson
2017-09-26 14:48   ` Chris Wilson
2017-09-26 15:07     ` Sagar Arun Kamble
2017-09-26 13:24 ` [PATCH v8 3/8] drm/i915: Create uC runtime and system suspend/resume helpers Sagar Arun Kamble
2017-09-26 13:43   ` Chris Wilson
2017-09-26 14:22     ` Sagar Arun Kamble
2017-09-26 13:24 ` [PATCH v8 4/8] drm/i915/guc: Introduce intel_guc_sanitize Sagar Arun Kamble
2017-09-26 13:46   ` Chris Wilson
2017-09-26 14:20     ` Sagar Arun Kamble
2017-09-26 13:24 ` [PATCH v8 5/8] drm/i915/guc: Update GuC ggtt.invalidate/interrupts/communication across RPM suspend/resume Sagar Arun Kamble
2017-09-26 13:24 ` [PATCH v8 6/8] drm/i915/guc: Update GuC suspend functionality in intel_uc_suspend Sagar Arun Kamble
2017-09-26 13:49   ` Chris Wilson
2017-09-26 13:57     ` Michał Winiarski
2017-09-26 14:15       ` Sagar Arun Kamble [this message]
2017-09-26 13:24 ` [PATCH v8 7/8] drm/i915/guc: Disable GuC submission and suspend it prior to i915 reset Sagar Arun Kamble
2017-09-26 13:52   ` Chris Wilson
2017-09-26 14:18     ` Sagar Arun Kamble
2017-09-26 13:24 ` [PATCH v8 8/8] drm/i915/guc: Fix GuC cleanup in unload path Sagar Arun Kamble
2017-09-26 13:29 ` [PATCH v8 1/8] drm/i915: Create GEM runtime resume helper and handle GEM suspend/resume errors Sagar Arun Kamble
2017-09-26 13:37 ` Chris Wilson
2017-09-26 14:11 ` ✓ Fi.CI.BAT: success for series starting with [v8,1/8] " Patchwork
2017-09-26 20:39 ` ✓ Fi.CI.IGT: " 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=8c9071fc-d625-00a2-4c7e-c8d2193fb0a8@intel.com \
    --to=sagar.a.kamble@intel.com \
    --cc=chris@chris-wilson.co.uk \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=michal.winiarski@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