[Intel-gfx] [PATCH 11/15] drm/i915/guc: Always print log stats in i915_guc_info when using GuC

Sagar Arun Kamble sagar.a.kamble at intel.com
Tue Mar 6 07:41:18 UTC 2018



On 2/27/2018 6:22 PM, Michał Winiarski wrote:
> While some of the content in this file is related to GuC submission
> only, that's not the case with log related statistics.
>
> Signed-off-by: Michał Winiarski <michal.winiarski at intel.com>
> Cc: Chris Wilson <chris at chris-wilson.co.uk>
> Cc: Daniele Ceraolo Spurio <daniele.ceraolospurio at intel.com>
> Cc: Sagar Arun Kamble <sagar.a.kamble at intel.com>
> Cc: Michal Wajdeczko <michal.wajdeczko at intel.com>
Reviewed-by: Sagar Arun Kamble <sagar.a.kamble at intel.com>
> ---
>   drivers/gpu/drm/i915/i915_debugfs.c | 15 +++++++++------
>   1 file changed, 9 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
> index 4bd24bbe7966..866d44a091b3 100644
> --- a/drivers/gpu/drm/i915/i915_debugfs.c
> +++ b/drivers/gpu/drm/i915/i915_debugfs.c
> @@ -2331,7 +2331,7 @@ static void i915_guc_log_info(struct seq_file *m,
>   {
>   	struct intel_guc *guc = &dev_priv->guc;
>   
> -	seq_puts(m, "\nGuC logging stats:\n");
> +	seq_puts(m, "GuC logging stats:\n");
>   
>   	seq_printf(m, "\tISR:   flush count %10u, overflow count %10u\n",
>   		   guc->log.flush_count[GUC_ISR_LOG_BUFFER],
> @@ -2379,14 +2379,19 @@ static int i915_guc_info(struct seq_file *m, void *data)
>   	struct drm_i915_private *dev_priv = node_to_i915(m->private);
>   	const struct intel_guc *guc = &dev_priv->guc;
>   
> -	if (!USES_GUC_SUBMISSION(dev_priv))
> +	if (!USES_GUC(dev_priv))
>   		return -ENODEV;
>   
> +	i915_guc_log_info(m, dev_priv);
> +
> +	if (!USES_GUC_SUBMISSION(dev_priv))
> +		return 0;
> +
>   	GEM_BUG_ON(!guc->execbuf_client);
>   
> -	seq_printf(m, "Doorbell map:\n");
> +	seq_printf(m, "\nDoorbell map:\n");
>   	seq_printf(m, "\t%*pb\n", GUC_NUM_DOORBELLS, guc->doorbell_bitmap);
> -	seq_printf(m, "Doorbell next cacheline: 0x%x\n\n", guc->db_cacheline);
> +	seq_printf(m, "Doorbell next cacheline: 0x%x\n", guc->db_cacheline);
>   
>   	seq_printf(m, "\nGuC execbuf client @ %p:\n", guc->execbuf_client);
>   	i915_guc_client_info(m, dev_priv, guc->execbuf_client);
> @@ -2396,8 +2401,6 @@ static int i915_guc_info(struct seq_file *m, void *data)
>   		i915_guc_client_info(m, dev_priv, guc->preempt_client);
>   	}
>   
> -	i915_guc_log_info(m, dev_priv);
> -
>   	/* Add more as required ... */
>   
>   	return 0;

-- 
Thanks,
Sagar



More information about the Intel-gfx mailing list