mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-12 07:34:08 +08:00
perf/x86/intel/uncore: Fix SKX CHA event extra regs
This patch adds two missing event extra regs for Skylake Server CHA PMU: - TOR_INSERTS - TOR_OCCUPANCY Were missing support for all the filters, including opcode matchers. Signed-off-by: Stephane Eranian <eranian@google.com> Signed-off-by: Kan Liang <kan.liang@intel.com> Acked-by: Peter Zijlstra <peterz@infradead.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Arnaldo Carvalho de Melo <acme@redhat.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Vince Weaver <vincent.weaver@maine.edu> Link: http://lkml.kernel.org/r/1499967350-10385-6-git-send-email-kan.liang@intel.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
This commit is contained in:
parent
9ad0fbd8fc
commit
8aa7b7b4b4
@ -3332,6 +3332,8 @@ static struct extra_reg skx_uncore_cha_extra_regs[] = {
|
||||
SNBEP_CBO_EVENT_EXTRA_REG(0x1134, 0xffff, 0x4),
|
||||
SNBEP_CBO_EVENT_EXTRA_REG(0x3134, 0xffff, 0x4),
|
||||
SNBEP_CBO_EVENT_EXTRA_REG(0x9134, 0xffff, 0x4),
|
||||
SNBEP_CBO_EVENT_EXTRA_REG(0x35, 0xff, 0x8),
|
||||
SNBEP_CBO_EVENT_EXTRA_REG(0x36, 0xff, 0x8),
|
||||
};
|
||||
|
||||
static u64 skx_cha_filter_mask(int fields)
|
||||
@ -3344,6 +3346,17 @@ static u64 skx_cha_filter_mask(int fields)
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_LINK;
|
||||
if (fields & 0x4)
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_STATE;
|
||||
if (fields & 0x8) {
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_REM;
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_LOC;
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_ALL_OPC;
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_NM;
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_NOT_NM;
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_OPC0;
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_OPC1;
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_NC;
|
||||
mask |= SKX_CHA_MSR_PMON_BOX_FILTER_ISOC;
|
||||
}
|
||||
return mask;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user