<p>On Feb 12, 2012 6:53 PM, "Ben Widawsky" <<a href="mailto:ben@bwidawsk.net">ben@bwidawsk.net</a>> wrote:<br>
><br>
> On 02/11/2012 08:23 PM, Eugeni Dodonov wrote:<br>
> > This allows to select which rc6 modes are to be used via kernel parameter,<br>
> > via a bitmask parameter. E.g.:<br>
> ><br>
> > - to enable rc6, i915_enable_rc6=1<br>
> > - to enable rc6 and deep rc6, i915_enable_rc6=3<br>
> > - to enable rc6 and deepest rc6, use i915_enable_rc6=5<br>
> > - to enable rc6, deep and deepest rc6, use i915_enable_rc6=7<br>
> ><br>
> > Please keep in mind that the deepest RC6 state really should NOT be used<br>
> > by default, as it could potentially worsen the issues with deep RC6. So do<br>
> > enable it only when you know what you are doing. However, having it around<br>
> > could help solving possible future rc6-related issues and their debugging<br>
> > on user machines.<br>
> ><br>
> > Note that this changes behavior - previously, value of 1 would enable both<br>
> > RC6 and deep RC6. Now it should only enable RC6 and deep/deepest RC6<br>
> > stages must be enabled manually.<br>
> ><br>
> > v2: address Chris Wilson comments and clean up the code.<br>
> ><br>
> > Signed-off-by: Eugeni Dodonov <<a href="mailto:eugeni.dodonov@intel.com">eugeni.dodonov@intel.com</a>><br>
> > ---<br>
> >  drivers/gpu/drm/i915/i915_drv.c      |    6 +++++-<br>
> >  drivers/gpu/drm/i915/i915_drv.h      |   21 +++++++++++++++++++++<br>
> >  drivers/gpu/drm/i915/intel_display.c |   20 ++++++++++++++++----<br>
> >  3 files changed, 42 insertions(+), 5 deletions(-)<br>
> ><br>
> > diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c<br>
> > index a1103fc..b7a91db 100644<br>
> > --- a/drivers/gpu/drm/i915/i915_drv.c<br>
> > +++ b/drivers/gpu/drm/i915/i915_drv.c<br>
> > @@ -66,7 +66,11 @@ MODULE_PARM_DESC(semaphores,<br>
> >  int i915_enable_rc6 __read_mostly = -1;<br>
> >  module_param_named(i915_enable_rc6, i915_enable_rc6, int, 0600);<br>
> >  MODULE_PARM_DESC(i915_enable_rc6,<br>
> > -             "Enable power-saving render C-state 6 (default: -1 (use per-chip default)");<br>
> > +             "Enable power-saving render C-state 6. "<br>
> > +             "Different stages can be selected via bitmask values "<br>
> > +             "(0 = disable; 1 = enable rc6; 2 = enable deep rc6; 4 = enable deepest rc6). "<br>
> > +             "For example, 3 would enable rc6 and deep rc6, and 7 would enable everything. "<br>
> > +             "default: -1 (use per-chip default)");<br>
> ><br>
> >  int i915_enable_fbc __read_mostly = -1;<br>
> >  module_param_named(i915_enable_fbc, i915_enable_fbc, int, 0600);<br>
> > diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h<br>
> > index 554bef7..c17bccf 100644<br>
> > --- a/drivers/gpu/drm/i915/i915_drv.h<br>
> > +++ b/drivers/gpu/drm/i915/i915_drv.h<br>
> > @@ -997,6 +997,27 @@ struct drm_i915_file_private {<br>
> ><br>
> >  #include "i915_trace.h"<br>
> ><br>
> > +/**<br>
> > + * RC6 is a special power stage which allows the GPU to enter an very<br>
> > + * low-voltage mode when idle, using down to 0V while at this stage.  This<br>
> > + * stage is entered automatically when the GPU is idle when RC6 support is<br>
> > + * enabled, and as soon as new workload arises GPU wakes up automatically as well.<br>
> > + *<br>
> > + * There are different RC6 modes available in Intel GPU, which differentiate<br>
> > + * among each other with the latency required to enter and leave RC6 and<br>
> > + * voltage consumed by the GPU in different states.<br>
> > + *<br>
> > + * The combination of the following flags define which states GPU is allowed<br>
> > + * to enter, while RC6 is the normal RC6 state, RC6p is the deep RC6, and<br>
> > + * RC6pp is deepest RC6. Their support by hardware varies according to the<br>
> > + * GPU, BIOS, chipset and platform. RC6 is usually the safest one and the one<br>
> > + * which brings the most power savings; deeper states save more power, but<br>
> > + * require higher latency to switch to and wake up.<br>
> > + */<br>
> > +#define INTEL_RC6_ENABLE                     (1<<0)<br>
> > +#define INTEL_RC6p_ENABLE                    (1<<1)<br>
> > +#define INTEL_RC6pp_ENABLE                   (1<<2)<br>
> > +<br>
> >  extern struct drm_ioctl_desc i915_ioctls[];<br>
> >  extern int i915_max_ioctl;<br>
> >  extern unsigned int i915_fbpercrtc __always_unused;<br>
><br>
> Does it ever make sense to enable a deeper state without enabling the<br>
> one before it? Ie. would we ever enable RC6p and not RC6? Maybe we<br>
> don't want to have discrete bitfields and instead do:<br>
> > +#define INTEL_RC6_ENABLE                     (1<<0)<br>
> > +#define INTEL_RC6p_ENABLE                    (1<<1) | INTEL_RC6_ENABLE<br>
> > +#define INTEL_RC6pp_ENABLE                   (1<<2) | INTEL_RC6p_ENABLE<br>
><br>
> Just a thought for the sake of hearing myself speak.</p>
<p>We checked with Jesse, and these states are independent.. So it should be possible to have RC6p and not plain RC6.</p>