public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915: CD clock frequency to debugfs
@ 2015-04-24  8:06 Mika Kahola
  2015-04-24  8:06 ` Mika Kahola
  0 siblings, 1 reply; 5+ messages in thread
From: Mika Kahola @ 2015-04-24  8:06 UTC (permalink / raw)
  To: intel-gfx

This patch adds information on current CD clock
frequency to debugfs 'i915_frequency_info'.

Mika Kahola (1):
  drm/i915: CD clock frequency on debugfs

 drivers/gpu/drm/i915/i915_debugfs.c | 3 +++
 1 file changed, 3 insertions(+)

-- 
1.9.1

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

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] drm/i915: CD clock frequency to debugfs
  2015-04-24  8:06 [PATCH] drm/i915: CD clock frequency to debugfs Mika Kahola
@ 2015-04-24  8:06 ` Mika Kahola
  2015-04-24 11:07   ` shuang.he
  2015-05-04 14:18   ` Daniel Vetter
  0 siblings, 2 replies; 5+ messages in thread
From: Mika Kahola @ 2015-04-24  8:06 UTC (permalink / raw)
  To: intel-gfx

This patch adds information on current CD clock
frequency to debugfs i915_frequency_info

Signed-off-by: Mika Kahola <mika.kahola@intel.com>
---
 drivers/gpu/drm/i915/i915_debugfs.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
index 9c2b9e4..18c7531 100644
--- a/drivers/gpu/drm/i915/i915_debugfs.c
+++ b/drivers/gpu/drm/i915/i915_debugfs.c
@@ -1266,6 +1266,9 @@ static int i915_frequency_info(struct seq_file *m, void *unused)
 		seq_puts(m, "no P-state info available\n");
 	}
 
+	seq_printf(m, "CD clock freq: %dkHz\n",
+		   dev_priv->display.get_display_clock_speed(dev));
+
 out:
 	intel_runtime_pm_put(dev_priv);
 	return ret;
-- 
1.9.1

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

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] drm/i915: CD clock frequency to debugfs
  2015-04-24  8:06 ` Mika Kahola
@ 2015-04-24 11:07   ` shuang.he
  2015-05-04 14:18   ` Daniel Vetter
  1 sibling, 0 replies; 5+ messages in thread
From: shuang.he @ 2015-04-24 11:07 UTC (permalink / raw)
  To: shuang.he, ethan.gao, intel-gfx, mika.kahola

Tested-By: Intel Graphics QA PRTS (Patch Regression Test System Contact: shuang.he@intel.com)
Task id: 6259
-------------------------------------Summary-------------------------------------
Platform          Delta          drm-intel-nightly          Series Applied
PNV                                  276/276              276/276
ILK                                  302/302              302/302
SNB                                  318/318              318/318
IVB                                  341/341              341/341
BYT                                  287/287              287/287
BDW                                  318/318              318/318
-------------------------------------Detailed-------------------------------------
Platform  Test                                drm-intel-nightly          Series Applied
Note: You need to pay more attention to line start with '*'
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] drm/i915: CD clock frequency to debugfs
  2015-04-24  8:06 ` Mika Kahola
  2015-04-24 11:07   ` shuang.he
@ 2015-05-04 14:18   ` Daniel Vetter
  2015-05-05 10:37     ` Mika Kahola
  1 sibling, 1 reply; 5+ messages in thread
From: Daniel Vetter @ 2015-05-04 14:18 UTC (permalink / raw)
  To: Mika Kahola; +Cc: intel-gfx

On Fri, Apr 24, 2015 at 11:06:10AM +0300, Mika Kahola wrote:
> This patch adds information on current CD clock
> frequency to debugfs i915_frequency_info
> 
> Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> ---
>  drivers/gpu/drm/i915/i915_debugfs.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
> index 9c2b9e4..18c7531 100644
> --- a/drivers/gpu/drm/i915/i915_debugfs.c
> +++ b/drivers/gpu/drm/i915/i915_debugfs.c
> @@ -1266,6 +1266,9 @@ static int i915_frequency_info(struct seq_file *m, void *unused)
>  		seq_puts(m, "no P-state info available\n");
>  	}
>  
> +	seq_printf(m, "CD clock freq: %dkHz\n",
> +		   dev_priv->display.get_display_clock_speed(dev));

Shouldn't we also dump the computed/requested cdclk in
dev_priv->cdclk_freq while at it? Seems useful enough otherwise.
-Daniel

> +
>  out:
>  	intel_runtime_pm_put(dev_priv);
>  	return ret;
> -- 
> 1.9.1
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] drm/i915: CD clock frequency to debugfs
  2015-05-04 14:18   ` Daniel Vetter
@ 2015-05-05 10:37     ` Mika Kahola
  0 siblings, 0 replies; 5+ messages in thread
From: Mika Kahola @ 2015-05-05 10:37 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx

On Mon, 2015-05-04 at 16:18 +0200, Daniel Vetter wrote:
> On Fri, Apr 24, 2015 at 11:06:10AM +0300, Mika Kahola wrote:
> > This patch adds information on current CD clock
> > frequency to debugfs i915_frequency_info
> > 
> > Signed-off-by: Mika Kahola <mika.kahola@intel.com>
> > ---
> >  drivers/gpu/drm/i915/i915_debugfs.c | 3 +++
> >  1 file changed, 3 insertions(+)
> > 
> > diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
> > index 9c2b9e4..18c7531 100644
> > --- a/drivers/gpu/drm/i915/i915_debugfs.c
> > +++ b/drivers/gpu/drm/i915/i915_debugfs.c
> > @@ -1266,6 +1266,9 @@ static int i915_frequency_info(struct seq_file *m, void *unused)
> >  		seq_puts(m, "no P-state info available\n");
> >  	}
> >  
> > +	seq_printf(m, "CD clock freq: %dkHz\n",
> > +		   dev_priv->display.get_display_clock_speed(dev));
> 
> Shouldn't we also dump the computed/requested cdclk in
> dev_priv->cdclk_freq while at it? Seems useful enough otherwise.
> -Daniel
Yes, that would be useful information. I'll throw a patch that covers these clocks as well.

-Mika-

> > +
> >  out:
> >  	intel_runtime_pm_put(dev_priv);
> >  	return ret;
> > -- 
> > 1.9.1
> > 
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > http://lists.freedesktop.org/mailman/listinfo/intel-gfx
> 


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

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-05-05 10:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-24  8:06 [PATCH] drm/i915: CD clock frequency to debugfs Mika Kahola
2015-04-24  8:06 ` Mika Kahola
2015-04-24 11:07   ` shuang.he
2015-05-04 14:18   ` Daniel Vetter
2015-05-05 10:37     ` Mika Kahola

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox