1 #include <linux/perf_event.h>
2 #include <linux/types.h>
4 #include "perf_event.h"
7 * Not sure about some of these
9 static const u64 p6_perfmon_event_map[] =
11 [PERF_COUNT_HW_CPU_CYCLES] = 0x0079,
12 [PERF_COUNT_HW_INSTRUCTIONS] = 0x00c0,
13 [PERF_COUNT_HW_CACHE_REFERENCES] = 0x0f2e,
14 [PERF_COUNT_HW_CACHE_MISSES] = 0x012e,
15 [PERF_COUNT_HW_BRANCH_INSTRUCTIONS] = 0x00c4,
16 [PERF_COUNT_HW_BRANCH_MISSES] = 0x00c5,
17 [PERF_COUNT_HW_BUS_CYCLES] = 0x0062,
20 static u64 p6_pmu_event_map(int hw_event)
22 return p6_perfmon_event_map[hw_event];
26 * Event setting that is specified not to count anything.
27 * We use this to effectively disable a counter.
29 * L2_RQSTS with 0 MESI unit mask.
31 #define P6_NOP_EVENT 0x0000002EULL
33 static struct event_constraint p6_event_constraints[] =
35 INTEL_EVENT_CONSTRAINT(0xc1, 0x1), /* FLOPS */
36 INTEL_EVENT_CONSTRAINT(0x10, 0x1), /* FP_COMP_OPS_EXE */
37 INTEL_EVENT_CONSTRAINT(0x11, 0x1), /* FP_ASSIST */
38 INTEL_EVENT_CONSTRAINT(0x12, 0x2), /* MUL */
39 INTEL_EVENT_CONSTRAINT(0x13, 0x2), /* DIV */
40 INTEL_EVENT_CONSTRAINT(0x14, 0x1), /* CYCLES_DIV_BUSY */
44 static void p6_pmu_disable_all(void)
48 /* p6 only has one enable register */
49 rdmsrl(MSR_P6_EVNTSEL0, val);
50 val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
51 wrmsrl(MSR_P6_EVNTSEL0, val);
54 static void p6_pmu_enable_all(int added)
58 /* p6 only has one enable register */
59 rdmsrl(MSR_P6_EVNTSEL0, val);
60 val |= ARCH_PERFMON_EVENTSEL_ENABLE;
61 wrmsrl(MSR_P6_EVNTSEL0, val);
65 p6_pmu_disable_event(struct perf_event *event)
67 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
68 struct hw_perf_event *hwc = &event->hw;
69 u64 val = P6_NOP_EVENT;
72 val |= ARCH_PERFMON_EVENTSEL_ENABLE;
74 (void)checking_wrmsrl(hwc->config_base, val);
77 static void p6_pmu_enable_event(struct perf_event *event)
79 struct cpu_hw_events *cpuc = &__get_cpu_var(cpu_hw_events);
80 struct hw_perf_event *hwc = &event->hw;
85 val |= ARCH_PERFMON_EVENTSEL_ENABLE;
87 (void)checking_wrmsrl(hwc->config_base, val);
90 static __initconst const struct x86_pmu p6_pmu = {
92 .handle_irq = x86_pmu_handle_irq,
93 .disable_all = p6_pmu_disable_all,
94 .enable_all = p6_pmu_enable_all,
95 .enable = p6_pmu_enable_event,
96 .disable = p6_pmu_disable_event,
97 .hw_config = x86_pmu_hw_config,
98 .schedule_events = x86_schedule_events,
99 .eventsel = MSR_P6_EVNTSEL0,
100 .perfctr = MSR_P6_PERFCTR0,
101 .event_map = p6_pmu_event_map,
102 .max_events = ARRAY_SIZE(p6_perfmon_event_map),
104 .max_period = (1ULL << 31) - 1,
108 * Events have 40 bits implemented. However they are designed such
109 * that bits [32-39] are sign extensions of bit 31. As such the
110 * effective width of a event for P6-like PMU is 32 bits only.
112 * See IA-32 Intel Architecture Software developer manual Vol 3B
115 .cntval_mask = (1ULL << 32) - 1,
116 .get_event_constraints = x86_get_event_constraints,
117 .event_constraints = p6_event_constraints,
120 __init int p6_pmu_init(void)
122 switch (boot_cpu_data.x86_model) {
124 case 3: /* Pentium Pro */
126 case 6: /* Pentium II */
129 case 11: /* Pentium III */
135 pr_cont("unsupported p6 CPU model %d ",
136 boot_cpu_data.x86_model);