<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Apr 21, 2016 at 12:16 AM, Chris Wilson <span dir="ltr"><<a href="mailto:chris@chris-wilson.co.uk" target="_blank">chris@chris-wilson.co.uk</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Wed, Apr 20, 2016 at 03:23:10PM +0100, Robert Bragg wrote:<br>
</span><div><div class="h5">> +static int hsw_enable_metric_set(struct drm_i915_private *dev_priv)<br>
> +{<br>
> +     int ret = i915_oa_select_metric_set_hsw(dev_priv);<br>
> +<br>
> +     if (ret)<br>
> +             return ret;<br>
> +<br>
> +     I915_WRITE(GDT_CHICKEN_BITS, GT_NOA_ENABLE);<br>
> +<br>
> +     /* PRM:<br>
> +      *<br>
> +      * OA unit is using “crclk” for its functionality. When trunk<br>
> +      * level clock gating takes place, OA clock would be gated,<br>
> +      * unable to count the events from non-render clock domain.<br>
> +      * Render clock gating must be disabled when OA is enabled to<br>
> +      * count the events from non-render domain. Unit level clock<br>
> +      * gating for RCS should also be disabled.<br>
> +      */<br>
> +     I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) &<br>
> +                                 ~GEN7_DOP_CLOCK_GATE_ENABLE));<br>
> +     I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) |<br>
> +                               GEN6_CSUNIT_CLOCK_GATE_DISABLE));<br>
> +<br>
> +     config_oa_regs(dev_priv, dev_priv->perf.oa.mux_regs,<br>
> +                    dev_priv->perf.oa.mux_regs_len);<br>
> +<br>
> +     /* It takes a fairly long time for a new MUX configuration to<br>
> +      * be be applied after these register writes. This delay<br>
> +      * duration was derived empirically based on the render_basic<br>
> +      * config but hopefully it covers the maximum configuration<br>
> +      * latency...<br>
> +      */<br>
> +     mdelay(100);<br>
<br>
</div></div>You really want to busy spin for 100ms? msleep() perhaps!<br></blockquote><div><br></div><div>Ah, oops, I forgot to change this, thanks!<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<br>
Did you look for some register you can observe the change in when the<br>
mux is reconfigured? Is even reading one of the OA registers enough?<br></blockquote><div><br></div><div>Although I can't really comprehend why the delay apparently needs to be quite so long, based on my limited understanding of some of the NOA michroarchitecture involved here it makes some sense to me there would be a delay that's also somewhat variable depending on the particular MUX config and I don't know of a trick for getting explicit feedback of completion unfortunately.<br><br></div><div>I did bring this up briefly, recently in discussion with others more familiar with the HW side of things, but haven't had much feedback on this so far. afaik other OS drivers aren't currently accounting for a need to have a delay here.<br><br></div><div>For reference, 100ms was picked as I was experimenting with stepping up the delay by orders of magnitude and found 10ms wasn't enough. Potentially I could experiment further with delays between 10 and 100ms, but I suppose it won't make a big difference.<br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<span class=""><br>
> +     config_oa_regs(dev_priv, dev_priv->perf.oa.b_counter_regs,<br>
> +                    dev_priv->perf.oa.b_counter_regs_len);<br>
> +<br>
> +     return 0;<br>
> +}<br>
> +<br>
> +static void hsw_disable_metric_set(struct drm_i915_private *dev_priv)<br>
> +{<br>
> +     I915_WRITE(GEN6_UCGCTL1, (I915_READ(GEN6_UCGCTL1) &<br>
> +                               ~GEN6_CSUNIT_CLOCK_GATE_DISABLE));<br>
> +     I915_WRITE(GEN7_MISCCPCTL, (I915_READ(GEN7_MISCCPCTL) |<br>
> +                                 GEN7_DOP_CLOCK_GATE_ENABLE));<br>
> +<br>
> +     I915_WRITE(GDT_CHICKEN_BITS, (I915_READ(GDT_CHICKEN_BITS) &<br>
> +                                   ~GT_NOA_ENABLE));<br>
<br>
</span>You didn't preserve any other chicken bits during enable_metric_set.<br></blockquote><div><br></div><div>Hmm, good point. I think I'll aim to preserve other bits when setting if that works, just in case something else needs to fiddle with the same register later.<br></div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5">-Chris<br>
<br>
--<br>
Chris Wilson, Intel Open Source Technology Centre<br>
</div></div></blockquote></div><br></div></div>