[Intel-gfx] [PATCH] drm/i915/selftests: Measure the energy consumed while in RC6

Chris Wilson chris at chris-wilson.co.uk
Wed Mar 25 09:10:22 UTC 2020


Quoting Andi Shyti (2020-03-25 08:58:54)
> Hi Chris,
> 
> On Wed, Mar 25, 2020 at 08:10:56AM +0000, Chris Wilson wrote:
> > Measure and compare the energy consumed, as reported by the rapl MSR,
> > by the GPU while in RC0 and RC6 states. Throw an error if RC6 does not
> > at least halve the energy consumption of RC0, as this more than likely
> > means we failed to enter RC0 correctly.
> > 
> > If we can't measure the energy draw with the MSR, then it will report 0
> > for both measurements. Since the measurement works on all gen6+, this seems
> > worth flagging as an error.
> > 
> > Signed-off-by: Chris Wilson <chris at chris-wilson.co.uk>
> > Cc: Mika Kuoppala <mika.kuoppala at linux.intel.com>
> > Cc: Andi Shyti <andi.shyti at intel.com>
> 
> would be nice to have a revision history, given that I got quite 
> some versions of this patch.

Nothing that interesting happened, I told myself.

> > +static u64 energy_uJ(struct intel_rc6 *rc6)
> > +{
> > +     unsigned long long power;
> > +     u32 units;
> > +
> > +     if (rdmsrl_safe(MSR_RAPL_POWER_UNIT, &power))
> > +             return 0;
> > +
> > +     units = (power & 0x1f00) >> 8;
> > +
> > +     if (rdmsrl_safe(MSR_PP1_ENERGY_STATUS, &power))
> > +             return 0;
> > +
> > +     return (1000000 * power) >> units; /* convert to uJ */
> > +}
> 
> shall we put this in a library?

Call it rapl and make it available via perf? Done.

More seriously outside of measuring idle power usage, I haven't had an
idea where it makes sense. As an optimisation metric, you want work done
per joule, but we have no concept of the user's work in the kernel.
Other things like "operating point power" (the cost of running at a
particular frequency) are mostly constant and not tunable.

> >       res[0] = rc6_residency(rc6);
> > +     dt = ktime_get();
> > +     rc0_power = energy_uJ(rc6);
> >       msleep(250);
> > +     rc0_power = energy_uJ(rc6) - rc0_power;
> > +     dt = ktime_sub(ktime_get(), dt);
> >       res[1] = rc6_residency(rc6);
> >       if ((res[1] - res[0]) >> 10) {
> >               pr_err("RC6 residency increased by %lldus while disabled for 250ms!\n",
> > @@ -63,13 +85,23 @@ int live_rc6_manual(void *arg)
> >               goto out_unlock;
> >       }
> >  
> > +     rc0_power = div64_u64(NSEC_PER_SEC * rc0_power, ktime_to_ns(dt));
> > +     if (!rc0_power) {
> 
> is this likely to happen?

Likely? Only if rapl is unable to measure the GPU energy consumption. So
no, it's not likely, unless you load the guc firmware on icl!
-Chris


More information about the Intel-gfx mailing list