perf/x86/intel/uncore: Fix PCU filter setup for Sandy/Ivy/Haswell EP
authorAndi Kleen <[email protected]>
Thu, 4 Sep 2014 23:08:29 +0000 (16:08 -0700)
committerIngo Molnar <[email protected]>
Wed, 24 Sep 2014 12:48:24 +0000 (14:48 +0200)
The PCU frequency band filters use 8 bit each in a register.
When setting up the value the shift value was not correctly
scaled, which resulted in all filters except for band 0 to
be zero. Fix the scaling.

This allows to correctly monitor multiple uncore frequency bands.

Signed-off-by: Andi Kleen <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Cc: [email protected]
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
arch/x86/kernel/cpu/perf_event_intel_uncore_snbep.c

index b237abc27ce6f72fc9606e0a5579d8abb10f3607..adf138eac85c3384550e2f14ec5ac3377ed87000 100644 (file)
@@ -841,7 +841,7 @@ static int snbep_pcu_hw_config(struct intel_uncore_box *box, struct perf_event *
        if (ev_sel >= 0xb && ev_sel <= 0xe) {
                reg1->reg = SNBEP_PCU_MSR_PMON_BOX_FILTER;
                reg1->idx = ev_sel - 0xb;
-               reg1->config = event->attr.config1 & (0xff << reg1->idx);
+               reg1->config = event->attr.config1 & (0xff << (reg1->idx * 8));
        }
        return 0;
 }