blob: 10131fbdaadada1781bddde6749e83a4cb200a8f [file] [log] [blame]
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +01001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * @file op_model_ppro.h
Andi Kleenb9917022008-08-18 14:50:31 +02003 * Family 6 perfmon and architectural perfmon MSR operations
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * @remark Copyright 2002 OProfile authors
Andi Kleenb9917022008-08-18 14:50:31 +02006 * @remark Copyright 2008 Intel Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * @remark Read the file COPYING
8 *
9 * @author John Levon
10 * @author Philippe Elie
11 * @author Graydon Hoare
Andi Kleenb9917022008-08-18 14:50:31 +020012 * @author Andi Kleen
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
14
15#include <linux/oprofile.h>
Andi Kleenb9917022008-08-18 14:50:31 +020016#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/ptrace.h>
18#include <asm/msr.h>
19#include <asm/apic.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020020#include <asm/nmi.h>
Andi Kleenb9917022008-08-18 14:50:31 +020021#include <asm/intel_arch_perfmon.h>
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "op_x86_model.h"
24#include "op_counter.h"
25
Andi Kleenb9917022008-08-18 14:50:31 +020026static int num_counters = 2;
27static int counter_width = 32;
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010029#define CTR_IS_RESERVED(msrs, c) (msrs->counters[(c)].addr ? 1 : 0)
Andi Kleen7c64ade2008-11-07 14:02:49 +010030#define CTR_OVERFLOWED(n) (!((n) & (1ULL<<(counter_width-1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010032#define CTRL_IS_RESERVED(msrs, c) (msrs->controls[(c)].addr ? 1 : 0)
33#define CTRL_READ(l, h, msrs, c) do {rdmsr((msrs->controls[(c)].addr), (l), (h)); } while (0)
34#define CTRL_WRITE(l, h, msrs, c) do {wrmsr((msrs->controls[(c)].addr), (l), (h)); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#define CTRL_SET_ACTIVE(n) (n |= (1<<22))
36#define CTRL_SET_INACTIVE(n) (n &= ~(1<<22))
37#define CTRL_CLEAR(x) (x &= (1<<21))
38#define CTRL_SET_ENABLE(val) (val |= 1<<20)
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010039#define CTRL_SET_USR(val, u) (val |= ((u & 1) << 16))
40#define CTRL_SET_KERN(val, k) (val |= ((k & 1) << 17))
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#define CTRL_SET_UM(val, m) (val |= (m << 8))
42#define CTRL_SET_EVENT(val, e) (val |= e)
43
Andi Kleenb9917022008-08-18 14:50:31 +020044static u64 *reset_value;
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046static void ppro_fill_in_addresses(struct op_msrs * const msrs)
47{
Don Zickuscb9c4482006-09-26 10:52:26 +020048 int i;
49
Andi Kleenb9917022008-08-18 14:50:31 +020050 for (i = 0; i < num_counters; i++) {
Don Zickuscb9c4482006-09-26 10:52:26 +020051 if (reserve_perfctr_nmi(MSR_P6_PERFCTR0 + i))
52 msrs->counters[i].addr = MSR_P6_PERFCTR0 + i;
53 else
54 msrs->counters[i].addr = 0;
55 }
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010056
Andi Kleenb9917022008-08-18 14:50:31 +020057 for (i = 0; i < num_counters; i++) {
Don Zickuscb9c4482006-09-26 10:52:26 +020058 if (reserve_evntsel_nmi(MSR_P6_EVNTSEL0 + i))
59 msrs->controls[i].addr = MSR_P6_EVNTSEL0 + i;
60 else
61 msrs->controls[i].addr = 0;
62 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
65
66static void ppro_setup_ctrs(struct op_msrs const * const msrs)
67{
68 unsigned int low, high;
69 int i;
70
Andi Kleenb9917022008-08-18 14:50:31 +020071 if (!reset_value) {
Eric Dumazeta4a16be2008-11-10 09:05:37 +010072 reset_value = kmalloc(sizeof(reset_value[0]) * num_counters,
Andi Kleenb9917022008-08-18 14:50:31 +020073 GFP_ATOMIC);
74 if (!reset_value)
75 return;
76 }
77
78 if (cpu_has_arch_perfmon) {
79 union cpuid10_eax eax;
80 eax.full = cpuid_eax(0xa);
Tim Blechmann780eef92009-02-19 17:34:03 +010081
82 /*
83 * For Core2 (family 6, model 15), don't reset the
84 * counter width:
85 */
86 if (!(eax.split.version_id == 0 &&
87 current_cpu_data.x86 == 6 &&
88 current_cpu_data.x86_model == 15)) {
89
90 if (counter_width < eax.split.bit_width)
91 counter_width = eax.split.bit_width;
92 }
Andi Kleenb9917022008-08-18 14:50:31 +020093 }
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /* clear all counters */
Andi Kleenb9917022008-08-18 14:50:31 +020096 for (i = 0 ; i < num_counters; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010097 if (unlikely(!CTRL_IS_RESERVED(msrs, i)))
Don Zickuscb9c4482006-09-26 10:52:26 +020098 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 CTRL_READ(low, high, msrs, i);
100 CTRL_CLEAR(low);
101 CTRL_WRITE(low, high, msrs, i);
102 }
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 /* avoid a false detection of ctr overflows in NMI handler */
Andi Kleenb9917022008-08-18 14:50:31 +0200105 for (i = 0; i < num_counters; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100106 if (unlikely(!CTR_IS_RESERVED(msrs, i)))
Don Zickuscb9c4482006-09-26 10:52:26 +0200107 continue;
Andi Kleenb9917022008-08-18 14:50:31 +0200108 wrmsrl(msrs->counters[i].addr, -1LL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110
111 /* enable active counters */
Andi Kleenb9917022008-08-18 14:50:31 +0200112 for (i = 0; i < num_counters; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100113 if ((counter_config[i].enabled) && (CTR_IS_RESERVED(msrs, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 reset_value[i] = counter_config[i].count;
115
Andi Kleenb9917022008-08-18 14:50:31 +0200116 wrmsrl(msrs->counters[i].addr, -reset_value[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 CTRL_READ(low, high, msrs, i);
119 CTRL_CLEAR(low);
120 CTRL_SET_ENABLE(low);
121 CTRL_SET_USR(low, counter_config[i].user);
122 CTRL_SET_KERN(low, counter_config[i].kernel);
123 CTRL_SET_UM(low, counter_config[i].unit_mask);
124 CTRL_SET_EVENT(low, counter_config[i].event);
125 CTRL_WRITE(low, high, msrs, i);
Don Zickuscb9c4482006-09-26 10:52:26 +0200126 } else {
127 reset_value[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129 }
130}
131
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static int ppro_check_ctrs(struct pt_regs * const regs,
134 struct op_msrs const * const msrs)
135{
Andi Kleen7c64ade2008-11-07 14:02:49 +0100136 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 int i;
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100138
Andi Kleenb9917022008-08-18 14:50:31 +0200139 for (i = 0 ; i < num_counters; ++i) {
Don Zickuscb9c4482006-09-26 10:52:26 +0200140 if (!reset_value[i])
141 continue;
Andi Kleen7c64ade2008-11-07 14:02:49 +0100142 rdmsrl(msrs->counters[i].addr, val);
143 if (CTR_OVERFLOWED(val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 oprofile_add_sample(regs, i);
Andi Kleenb9917022008-08-18 14:50:31 +0200145 wrmsrl(msrs->counters[i].addr, -reset_value[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 }
147 }
148
149 /* Only P6 based Pentium M need to re-unmask the apic vector but it
150 * doesn't hurt other P6 variant */
151 apic_write(APIC_LVTPC, apic_read(APIC_LVTPC) & ~APIC_LVT_MASKED);
152
153 /* We can't work out if we really handled an interrupt. We
154 * might have caught a *second* counter just after overflowing
155 * the interrupt for this counter then arrives
156 * and we don't find a counter that's overflowed, so we
157 * would return 0 and get dazed + confused. Instead we always
158 * assume we found an overflow. This sucks.
159 */
160 return 1;
161}
162
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164static void ppro_start(struct op_msrs const * const msrs)
165{
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100166 unsigned int low, high;
Arun Sharma6b77df02006-09-29 02:00:01 -0700167 int i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200168
Eric Dumazet9ea84ad2008-12-02 07:21:21 +0100169 if (!reset_value)
170 return;
Andi Kleenb9917022008-08-18 14:50:31 +0200171 for (i = 0; i < num_counters; ++i) {
Arun Sharma6b77df02006-09-29 02:00:01 -0700172 if (reset_value[i]) {
173 CTRL_READ(low, high, msrs, i);
174 CTRL_SET_ACTIVE(low);
175 CTRL_WRITE(low, high, msrs, i);
176 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180
181static void ppro_stop(struct op_msrs const * const msrs)
182{
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100183 unsigned int low, high;
Arun Sharma6b77df02006-09-29 02:00:01 -0700184 int i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200185
Eric Dumazet9ea84ad2008-12-02 07:21:21 +0100186 if (!reset_value)
187 return;
Andi Kleenb9917022008-08-18 14:50:31 +0200188 for (i = 0; i < num_counters; ++i) {
Arun Sharma6b77df02006-09-29 02:00:01 -0700189 if (!reset_value[i])
190 continue;
191 CTRL_READ(low, high, msrs, i);
Don Zickuscb9c4482006-09-26 10:52:26 +0200192 CTRL_SET_INACTIVE(low);
Arun Sharma6b77df02006-09-29 02:00:01 -0700193 CTRL_WRITE(low, high, msrs, i);
Don Zickuscb9c4482006-09-26 10:52:26 +0200194 }
195}
196
197static void ppro_shutdown(struct op_msrs const * const msrs)
198{
199 int i;
200
Andi Kleenb9917022008-08-18 14:50:31 +0200201 for (i = 0 ; i < num_counters ; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100202 if (CTR_IS_RESERVED(msrs, i))
Don Zickuscb9c4482006-09-26 10:52:26 +0200203 release_perfctr_nmi(MSR_P6_PERFCTR0 + i);
204 }
Andi Kleenb9917022008-08-18 14:50:31 +0200205 for (i = 0 ; i < num_counters ; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100206 if (CTRL_IS_RESERVED(msrs, i))
Don Zickuscb9c4482006-09-26 10:52:26 +0200207 release_evntsel_nmi(MSR_P6_EVNTSEL0 + i);
208 }
Andi Kleenb9917022008-08-18 14:50:31 +0200209 if (reset_value) {
210 kfree(reset_value);
211 reset_value = NULL;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215
Andi Kleen59512902008-09-29 22:23:33 +0200216struct op_x86_model_spec op_ppro_spec = {
Robert Richter5a289392008-10-15 22:19:41 +0200217 .num_counters = 2, /* can be overriden */
218 .num_controls = 2, /* dito */
Robert Richterc92960f2008-09-05 17:12:36 +0200219 .fill_in_addresses = &ppro_fill_in_addresses,
220 .setup_ctrs = &ppro_setup_ctrs,
221 .check_ctrs = &ppro_check_ctrs,
222 .start = &ppro_start,
223 .stop = &ppro_stop,
224 .shutdown = &ppro_shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225};
Andi Kleenb9917022008-08-18 14:50:31 +0200226
227/*
228 * Architectural performance monitoring.
229 *
230 * Newer Intel CPUs (Core1+) have support for architectural
231 * events described in CPUID 0xA. See the IA32 SDM Vol3b.18 for details.
232 * The advantage of this is that it can be done without knowing about
233 * the specific CPU.
234 */
235
236void arch_perfmon_setup_counters(void)
237{
238 union cpuid10_eax eax;
239
240 eax.full = cpuid_eax(0xa);
241
242 /* Workaround for BIOS bugs in 6/15. Taken from perfmon2 */
243 if (eax.split.version_id == 0 && current_cpu_data.x86 == 6 &&
244 current_cpu_data.x86_model == 15) {
245 eax.split.version_id = 2;
246 eax.split.num_counters = 2;
247 eax.split.bit_width = 40;
248 }
249
250 num_counters = eax.split.num_counters;
251
252 op_arch_perfmon_spec.num_counters = num_counters;
253 op_arch_perfmon_spec.num_controls = num_counters;
Andi Kleen59512902008-09-29 22:23:33 +0200254 op_ppro_spec.num_counters = num_counters;
255 op_ppro_spec.num_controls = num_counters;
Andi Kleenb9917022008-08-18 14:50:31 +0200256}
257
258struct op_x86_model_spec op_arch_perfmon_spec = {
259 /* num_counters/num_controls filled in at runtime */
Robert Richter5a289392008-10-15 22:19:41 +0200260 .fill_in_addresses = &ppro_fill_in_addresses,
Andi Kleenb9917022008-08-18 14:50:31 +0200261 /* user space does the cpuid check for available events */
Robert Richter5a289392008-10-15 22:19:41 +0200262 .setup_ctrs = &ppro_setup_ctrs,
263 .check_ctrs = &ppro_check_ctrs,
264 .start = &ppro_start,
265 .stop = &ppro_stop,
266 .shutdown = &ppro_shutdown
Andi Kleenb9917022008-08-18 14:50:31 +0200267};