public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: Sagar Arun Kamble <sagar.a.kamble@intel.com>
To: Chris Wilson <chris@chris-wilson.co.uk>, intel-gfx@lists.freedesktop.org
Cc: "Sagar Arun Kamble , Imre Deak , Paulo Zanoni , Rodrigo Vivi ,
	Michal Wajdeczko ,
	\" Michał Winiarski"
	<"\"\\\"\\\\\\\"\\\\\\\\\\\\\\\"sagar.a.kamble@intel.comimr?=
	e.deak\\\\\\\\\\\\\\\"@intel.compaulo.r.zanoni\\\\\\\"@intel.comrodrigo.vivi\\\"@intel.commichal.wajdeczko\"@intel.commichal.winiars
	=?UTF-8?Q?ki"@intel.com>
Subject: Re: [PATCH v8 2/8] drm/i915: Update GEM suspend/resume flows considering GuC and GEM fences
Date: Tue, 26 Sep 2017 19:54:15 +0530	[thread overview]
Message-ID: <a8281db2-cc4e-59f9-ba57-b267ff4f0a04@intel.com> (raw)
In-Reply-To: <150643332769.18177.12285807544277090288@mail.alporthouse.com>



On 9/26/2017 7:12 PM, Chris Wilson wrote:
> Quoting Sagar Arun Kamble (2017-09-26 14:24:39)
>> diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
>> index dbe181b..5dcd8c0 100644
>> --- a/drivers/gpu/drm/i915/i915_gem.c
>> +++ b/drivers/gpu/drm/i915/i915_gem.c
>> @@ -2022,11 +2022,22 @@ int i915_gem_fault(struct vm_fault *vmf)
>>          intel_runtime_pm_put(i915);
>>   }
>>   
>> +/**
>> + * i915_gem_runtime_suspend() - Finish GEM suspend
>> + * @dev_priv: i915 device private
>> + *
>> + * This function suspends GuC, removes userspace mappings for all GEM obejcts
>> + * currently on userfault list and marks fences if any being used as lost.
>> + *
>> + * Return:     non-zero code on error
>> + */
>> +/**
>> + * i915_gem_runtime_resume() - Restore GEM state
>> + * @dev_priv: i915 device private
>> + *
>> + * This function inits swizzling, restores fences and resumes GuC.
>> + *
>> + * Return:     non-zero code on error
>> + */
>> +/**
>> + * i915_gem_suspend() - Suspend all GT activity.
>> + * @dev_priv: i915 device private
>> + *
>> + * This function disables RPS, flushes all executing context ensuring
>> + * GEM/GT/Engines idleness, cancels all work that needs GT access and suspends
>> + * GuC. In the end currently, it also reset the GEM state and GPU HW.
>> + *
>> + * Return:     non-zero code on error
>> + */
>> +/**
>> + * i915_gem_resume() - Resume GT activity.
>> + * @dev_priv: i915 device private
>> + *
>> + * This function restores GTT mappings, restores fences and resets the
>> + * context images and resumes GuC.
>> + *
>> + * Return:     non-zero code on error
>> + */
> I can very much read what the functions do. These comments blocks are
> for telling me when to call them, under what pre/post-conditions and the
> overall intent of the function.
>
> Who are these blocks for? This isn't a library interface we expect to be
> used, these are hooks.
> -Chris
Since these functions are exported from i915_gem.c and are being used 
from respective drm functions, to make
the semantics available in kernel docs I have added these comments.

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

  reply	other threads:[~2017-09-26 14:24 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 [this message]
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
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=a8281db2-cc4e-59f9-ba57-b267ff4f0a04@intel.com \
    --to=sagar.a.kamble@intel.com \
    --cc="\"\\\"\\\\\\\"\\\\\\\\\\\\\\\"sagar.a.kamble@intel.comimr?= e.deak\\\\\\\\\\\\\\\"@intel.compaulo.r.zanoni\\\\\\\"@intel.comrodrigo.vivi\\\"@intel.commichal.wajdeczko\"@intel.commichal.winiars =?UTF-8?Q?ki"@intel.com \
    --cc=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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox