blob: 570d717c3308f563f314dec95e3663bc62bd28de [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
Robert Richter3370d352009-05-25 15:10:32 +020013 * @author Robert Richter <robert.richter@amd.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
15
16#include <linux/oprofile.h>
Andi Kleenb9917022008-08-18 14:50:31 +020017#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <asm/ptrace.h>
19#include <asm/msr.h>
20#include <asm/apic.h>
Don Zickus3e4ff112006-06-26 13:57:01 +020021#include <asm/nmi.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
Robert Richter3370d352009-05-25 15:10:32 +020029#define MSR_PPRO_EVENTSEL_RESERVED ((0xFFFFFFFFULL<<32)|(1ULL<<21))
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Andi Kleenb9917022008-08-18 14:50:31 +020031static u64 *reset_value;
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010032
Linus Torvalds1da177e2005-04-16 15:20:36 -070033static void ppro_fill_in_addresses(struct op_msrs * const msrs)
34{
Don Zickuscb9c4482006-09-26 10:52:26 +020035 int i;
36
Andi Kleenb9917022008-08-18 14:50:31 +020037 for (i = 0; i < num_counters; i++) {
Don Zickuscb9c4482006-09-26 10:52:26 +020038 if (reserve_perfctr_nmi(MSR_P6_PERFCTR0 + i))
39 msrs->counters[i].addr = MSR_P6_PERFCTR0 + i;
40 else
41 msrs->counters[i].addr = 0;
42 }
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010043
Andi Kleenb9917022008-08-18 14:50:31 +020044 for (i = 0; i < num_counters; i++) {
Don Zickuscb9c4482006-09-26 10:52:26 +020045 if (reserve_evntsel_nmi(MSR_P6_EVNTSEL0 + i))
46 msrs->controls[i].addr = MSR_P6_EVNTSEL0 + i;
47 else
48 msrs->controls[i].addr = 0;
49 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
52
Robert Richteref8828d2009-05-25 19:31:44 +020053static void ppro_setup_ctrs(struct op_x86_model_spec const *model,
54 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
Robert Richter3370d352009-05-25 15:10:32 +020056 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 int i;
58
Andi Kleenb9917022008-08-18 14:50:31 +020059 if (!reset_value) {
Eric Dumazeta4a16be2008-11-10 09:05:37 +010060 reset_value = kmalloc(sizeof(reset_value[0]) * num_counters,
Andi Kleenb9917022008-08-18 14:50:31 +020061 GFP_ATOMIC);
62 if (!reset_value)
63 return;
64 }
65
66 if (cpu_has_arch_perfmon) {
67 union cpuid10_eax eax;
68 eax.full = cpuid_eax(0xa);
Tim Blechmann780eef92009-02-19 17:34:03 +010069
70 /*
71 * For Core2 (family 6, model 15), don't reset the
72 * counter width:
73 */
74 if (!(eax.split.version_id == 0 &&
75 current_cpu_data.x86 == 6 &&
76 current_cpu_data.x86_model == 15)) {
77
78 if (counter_width < eax.split.bit_width)
79 counter_width = eax.split.bit_width;
80 }
Andi Kleenb9917022008-08-18 14:50:31 +020081 }
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 /* clear all counters */
Robert Richter6e63ea42009-07-07 19:25:39 +020084 for (i = 0; i < num_counters; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +020085 if (unlikely(!msrs->controls[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +020086 continue;
Robert Richter3370d352009-05-25 15:10:32 +020087 rdmsrl(msrs->controls[i].addr, val);
88 val &= model->reserved;
89 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 }
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010091
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 /* avoid a false detection of ctr overflows in NMI handler */
Andi Kleenb9917022008-08-18 14:50:31 +020093 for (i = 0; i < num_counters; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +020094 if (unlikely(!msrs->counters[i].addr))
Don Zickuscb9c4482006-09-26 10:52:26 +020095 continue;
Andi Kleenb9917022008-08-18 14:50:31 +020096 wrmsrl(msrs->counters[i].addr, -1LL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
99 /* enable active counters */
Andi Kleenb9917022008-08-18 14:50:31 +0200100 for (i = 0; i < num_counters; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200101 if (counter_config[i].enabled && msrs->counters[i].addr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 reset_value[i] = counter_config[i].count;
Andi Kleenb9917022008-08-18 14:50:31 +0200103 wrmsrl(msrs->counters[i].addr, -reset_value[i]);
Robert Richter3370d352009-05-25 15:10:32 +0200104 rdmsrl(msrs->controls[i].addr, val);
105 val &= model->reserved;
106 val |= op_x86_get_ctrl(model, &counter_config[i]);
107 wrmsrl(msrs->controls[i].addr, val);
Don Zickuscb9c4482006-09-26 10:52:26 +0200108 } else {
109 reset_value[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 }
111 }
112}
113
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115static int ppro_check_ctrs(struct pt_regs * const regs,
116 struct op_msrs const * const msrs)
117{
Andi Kleen7c64ade2008-11-07 14:02:49 +0100118 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 int i;
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100120
Ingo Molnar82aa9a12009-02-05 15:23:08 +0100121 /*
122 * This can happen if perf counters are in use when
123 * we steal the die notifier NMI.
124 */
125 if (unlikely(!reset_value))
126 goto out;
127
Robert Richter6e63ea42009-07-07 19:25:39 +0200128 for (i = 0; i < num_counters; ++i) {
Don Zickuscb9c4482006-09-26 10:52:26 +0200129 if (!reset_value[i])
130 continue;
Andi Kleen7c64ade2008-11-07 14:02:49 +0100131 rdmsrl(msrs->counters[i].addr, val);
Robert Richter42399ad2009-05-25 17:59:06 +0200132 if (val & (1ULL << (counter_width - 1)))
133 continue;
134 oprofile_add_sample(regs, i);
135 wrmsrl(msrs->counters[i].addr, -reset_value[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137
Ingo Molnar82aa9a12009-02-05 15:23:08 +0100138out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 /* Only P6 based Pentium M need to re-unmask the apic vector but it
140 * doesn't hurt other P6 variant */
141 apic_write(APIC_LVTPC, apic_read(APIC_LVTPC) & ~APIC_LVT_MASKED);
142
143 /* We can't work out if we really handled an interrupt. We
144 * might have caught a *second* counter just after overflowing
145 * the interrupt for this counter then arrives
146 * and we don't find a counter that's overflowed, so we
147 * would return 0 and get dazed + confused. Instead we always
148 * assume we found an overflow. This sucks.
149 */
150 return 1;
151}
152
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static void ppro_start(struct op_msrs const * const msrs)
155{
Robert Richterdea37662009-05-25 18:11:52 +0200156 u64 val;
Arun Sharma6b77df02006-09-29 02:00:01 -0700157 int i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200158
Eric Dumazet9ea84ad2008-12-02 07:21:21 +0100159 if (!reset_value)
160 return;
Andi Kleenb9917022008-08-18 14:50:31 +0200161 for (i = 0; i < num_counters; ++i) {
Arun Sharma6b77df02006-09-29 02:00:01 -0700162 if (reset_value[i]) {
Robert Richterdea37662009-05-25 18:11:52 +0200163 rdmsrl(msrs->controls[i].addr, val);
164 val |= ARCH_PERFMON_EVENTSEL0_ENABLE;
165 wrmsrl(msrs->controls[i].addr, val);
Arun Sharma6b77df02006-09-29 02:00:01 -0700166 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
169
170
171static void ppro_stop(struct op_msrs const * const msrs)
172{
Robert Richterdea37662009-05-25 18:11:52 +0200173 u64 val;
Arun Sharma6b77df02006-09-29 02:00:01 -0700174 int i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200175
Eric Dumazet9ea84ad2008-12-02 07:21:21 +0100176 if (!reset_value)
177 return;
Andi Kleenb9917022008-08-18 14:50:31 +0200178 for (i = 0; i < num_counters; ++i) {
Arun Sharma6b77df02006-09-29 02:00:01 -0700179 if (!reset_value[i])
180 continue;
Robert Richterdea37662009-05-25 18:11:52 +0200181 rdmsrl(msrs->controls[i].addr, val);
182 val &= ~ARCH_PERFMON_EVENTSEL0_ENABLE;
183 wrmsrl(msrs->controls[i].addr, val);
Don Zickuscb9c4482006-09-26 10:52:26 +0200184 }
185}
186
187static void ppro_shutdown(struct op_msrs const * const msrs)
188{
189 int i;
190
Robert Richter6e63ea42009-07-07 19:25:39 +0200191 for (i = 0; i < num_counters; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200192 if (msrs->counters[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200193 release_perfctr_nmi(MSR_P6_PERFCTR0 + i);
194 }
Robert Richter6e63ea42009-07-07 19:25:39 +0200195 for (i = 0; i < num_counters; ++i) {
Robert Richter217d3cf2009-06-04 02:36:44 +0200196 if (msrs->controls[i].addr)
Don Zickuscb9c4482006-09-26 10:52:26 +0200197 release_evntsel_nmi(MSR_P6_EVNTSEL0 + i);
198 }
Andi Kleenb9917022008-08-18 14:50:31 +0200199 if (reset_value) {
200 kfree(reset_value);
201 reset_value = NULL;
202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205
Robert Richter849620f2009-05-14 17:10:52 +0200206struct op_x86_model_spec const op_ppro_spec = {
207 .num_counters = 2,
208 .num_controls = 2,
Robert Richter3370d352009-05-25 15:10:32 +0200209 .reserved = MSR_PPRO_EVENTSEL_RESERVED,
Robert Richterc92960f2008-09-05 17:12:36 +0200210 .fill_in_addresses = &ppro_fill_in_addresses,
211 .setup_ctrs = &ppro_setup_ctrs,
212 .check_ctrs = &ppro_check_ctrs,
213 .start = &ppro_start,
214 .stop = &ppro_stop,
215 .shutdown = &ppro_shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216};
Andi Kleenb9917022008-08-18 14:50:31 +0200217
218/*
219 * Architectural performance monitoring.
220 *
221 * Newer Intel CPUs (Core1+) have support for architectural
222 * events described in CPUID 0xA. See the IA32 SDM Vol3b.18 for details.
223 * The advantage of this is that it can be done without knowing about
224 * the specific CPU.
225 */
226
Robert Richtere4192942008-10-12 15:12:34 -0400227static void arch_perfmon_setup_counters(void)
Andi Kleenb9917022008-08-18 14:50:31 +0200228{
229 union cpuid10_eax eax;
230
231 eax.full = cpuid_eax(0xa);
232
233 /* Workaround for BIOS bugs in 6/15. Taken from perfmon2 */
234 if (eax.split.version_id == 0 && current_cpu_data.x86 == 6 &&
235 current_cpu_data.x86_model == 15) {
236 eax.split.version_id = 2;
237 eax.split.num_counters = 2;
238 eax.split.bit_width = 40;
239 }
240
241 num_counters = eax.split.num_counters;
242
243 op_arch_perfmon_spec.num_counters = num_counters;
244 op_arch_perfmon_spec.num_controls = num_counters;
245}
246
Robert Richtere4192942008-10-12 15:12:34 -0400247static int arch_perfmon_init(struct oprofile_operations *ignore)
248{
249 arch_perfmon_setup_counters();
250 return 0;
251}
252
Andi Kleenb9917022008-08-18 14:50:31 +0200253struct op_x86_model_spec op_arch_perfmon_spec = {
Robert Richter3370d352009-05-25 15:10:32 +0200254 .reserved = MSR_PPRO_EVENTSEL_RESERVED,
Robert Richtere4192942008-10-12 15:12:34 -0400255 .init = &arch_perfmon_init,
Andi Kleenb9917022008-08-18 14:50:31 +0200256 /* num_counters/num_controls filled in at runtime */
Robert Richter5a289392008-10-15 22:19:41 +0200257 .fill_in_addresses = &ppro_fill_in_addresses,
Andi Kleenb9917022008-08-18 14:50:31 +0200258 /* user space does the cpuid check for available events */
Robert Richter5a289392008-10-15 22:19:41 +0200259 .setup_ctrs = &ppro_setup_ctrs,
260 .check_ctrs = &ppro_check_ctrs,
261 .start = &ppro_start,
262 .stop = &ppro_stop,
263 .shutdown = &ppro_shutdown
Andi Kleenb9917022008-08-18 14:50:31 +0200264};