perf/x86/intel/cqm: Document PQR MSR abuse
authorThomas Gleixner <[email protected]>
Tue, 19 May 2015 00:00:50 +0000 (00:00 +0000)
committerIngo Molnar <[email protected]>
Wed, 27 May 2015 07:17:38 +0000 (09:17 +0200)
The CQM code acts like it owns the PQR MSR completely. That's not true
because only the lower 10 bits are used for CQM. The upper 32 bits are
used for the 'CLass Of Service ID' (CLOSID). Document the abuse. Will be
fixed in a later patch.

Signed-off-by: Thomas Gleixner <[email protected]>
Signed-off-by: Peter Zijlstra (Intel) <[email protected]>
Acked-by: Matt Fleming <[email protected]>
Cc: Kanaka Juvva <[email protected]>
Cc: Linus Torvalds <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Vikas Shivappa <[email protected]>
Cc: Will Auld <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Ingo Molnar <[email protected]>
arch/x86/kernel/cpu/perf_event_intel_cqm.c

index e4d1b8b738fa8a9fc350030c0b41dd75f5309530..572582e2143eecab5d67bfb273b3b4e722534ff7 100644 (file)
@@ -978,7 +978,12 @@ static void intel_cqm_event_start(struct perf_event *event, int mode)
                WARN_ON_ONCE(state->rmid);
 
        state->rmid = rmid;
-       wrmsrl(MSR_IA32_PQR_ASSOC, state->rmid);
+       /*
+        * This is actually wrong, as the upper 32 bit MSR contain the
+        * closid which is used for configuring the Cache Allocation
+        * Technology component.
+        */
+       wrmsr(MSR_IA32_PQR_ASSOC, rmid, 0);
 
        raw_spin_unlock_irqrestore(&state->lock, flags);
 }
@@ -998,7 +1003,13 @@ static void intel_cqm_event_stop(struct perf_event *event, int mode)
 
        if (!--state->cnt) {
                state->rmid = 0;
-               wrmsrl(MSR_IA32_PQR_ASSOC, 0);
+               /*
+                * This is actually wrong, as the upper 32 bit of the
+                * MSR contain the closid which is used for
+                * configuring the Cache Allocation Technology
+                * component.
+                */
+               wrmsr(MSR_IA32_PQR_ASSOC, 0, 0);
        } else {
                WARN_ON_ONCE(!state->rmid);
        }