blob: 3092f998baf260287edf9a54ce017ea229d87f91 [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
Andi Kleen7c64ade2008-11-07 14:02:49 +010029#define CTR_OVERFLOWED(n) (!((n) & (1ULL<<(counter_width-1))))
Robert Richter3370d352009-05-25 15:10:32 +020030
31#define MSR_PPRO_EVENTSEL_RESERVED ((0xFFFFFFFFULL<<32)|(1ULL<<21))
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Andi Kleenb9917022008-08-18 14:50:31 +020033static u64 *reset_value;
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035static void ppro_fill_in_addresses(struct op_msrs * const msrs)
36{
Don Zickuscb9c4482006-09-26 10:52:26 +020037 int i;
38
Andi Kleenb9917022008-08-18 14:50:31 +020039 for (i = 0; i < num_counters; i++) {
Don Zickuscb9c4482006-09-26 10:52:26 +020040 if (reserve_perfctr_nmi(MSR_P6_PERFCTR0 + i))
41 msrs->counters[i].addr = MSR_P6_PERFCTR0 + i;
42 else
43 msrs->counters[i].addr = 0;
44 }
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010045
Andi Kleenb9917022008-08-18 14:50:31 +020046 for (i = 0; i < num_counters; i++) {
Don Zickuscb9c4482006-09-26 10:52:26 +020047 if (reserve_evntsel_nmi(MSR_P6_EVNTSEL0 + i))
48 msrs->controls[i].addr = MSR_P6_EVNTSEL0 + i;
49 else
50 msrs->controls[i].addr = 0;
51 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
54
Robert Richteref8828d2009-05-25 19:31:44 +020055static void ppro_setup_ctrs(struct op_x86_model_spec const *model,
56 struct op_msrs const * const msrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057{
Robert Richter3370d352009-05-25 15:10:32 +020058 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 int i;
60
Andi Kleenb9917022008-08-18 14:50:31 +020061 if (!reset_value) {
Eric Dumazeta4a16be2008-11-10 09:05:37 +010062 reset_value = kmalloc(sizeof(reset_value[0]) * num_counters,
Andi Kleenb9917022008-08-18 14:50:31 +020063 GFP_ATOMIC);
64 if (!reset_value)
65 return;
66 }
67
68 if (cpu_has_arch_perfmon) {
69 union cpuid10_eax eax;
70 eax.full = cpuid_eax(0xa);
Tim Blechmann780eef92009-02-19 17:34:03 +010071
72 /*
73 * For Core2 (family 6, model 15), don't reset the
74 * counter width:
75 */
76 if (!(eax.split.version_id == 0 &&
77 current_cpu_data.x86 == 6 &&
78 current_cpu_data.x86_model == 15)) {
79
80 if (counter_width < eax.split.bit_width)
81 counter_width = eax.split.bit_width;
82 }
Andi Kleenb9917022008-08-18 14:50:31 +020083 }
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 /* clear all counters */
Andi Kleenb9917022008-08-18 14:50:31 +020086 for (i = 0 ; i < num_counters; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010087 if (unlikely(!CTRL_IS_RESERVED(msrs, i)))
Don Zickuscb9c4482006-09-26 10:52:26 +020088 continue;
Robert Richter3370d352009-05-25 15:10:32 +020089 rdmsrl(msrs->controls[i].addr, val);
90 val &= model->reserved;
91 wrmsrl(msrs->controls[i].addr, val);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 }
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010093
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 /* avoid a false detection of ctr overflows in NMI handler */
Andi Kleenb9917022008-08-18 14:50:31 +020095 for (i = 0; i < num_counters; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010096 if (unlikely(!CTR_IS_RESERVED(msrs, i)))
Don Zickuscb9c4482006-09-26 10:52:26 +020097 continue;
Andi Kleenb9917022008-08-18 14:50:31 +020098 wrmsrl(msrs->counters[i].addr, -1LL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 }
100
101 /* enable active counters */
Andi Kleenb9917022008-08-18 14:50:31 +0200102 for (i = 0; i < num_counters; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100103 if ((counter_config[i].enabled) && (CTR_IS_RESERVED(msrs, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 reset_value[i] = counter_config[i].count;
Andi Kleenb9917022008-08-18 14:50:31 +0200105 wrmsrl(msrs->counters[i].addr, -reset_value[i]);
Robert Richter3370d352009-05-25 15:10:32 +0200106 rdmsrl(msrs->controls[i].addr, val);
107 val &= model->reserved;
108 val |= op_x86_get_ctrl(model, &counter_config[i]);
109 wrmsrl(msrs->controls[i].addr, val);
Don Zickuscb9c4482006-09-26 10:52:26 +0200110 } else {
111 reset_value[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113 }
114}
115
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117static int ppro_check_ctrs(struct pt_regs * const regs,
118 struct op_msrs const * const msrs)
119{
Andi Kleen7c64ade2008-11-07 14:02:49 +0100120 u64 val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 int i;
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100122
Andi Kleenb9917022008-08-18 14:50:31 +0200123 for (i = 0 ; i < num_counters; ++i) {
Don Zickuscb9c4482006-09-26 10:52:26 +0200124 if (!reset_value[i])
125 continue;
Andi Kleen7c64ade2008-11-07 14:02:49 +0100126 rdmsrl(msrs->counters[i].addr, val);
127 if (CTR_OVERFLOWED(val)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 oprofile_add_sample(regs, i);
Andi Kleenb9917022008-08-18 14:50:31 +0200129 wrmsrl(msrs->counters[i].addr, -reset_value[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131 }
132
133 /* Only P6 based Pentium M need to re-unmask the apic vector but it
134 * doesn't hurt other P6 variant */
135 apic_write(APIC_LVTPC, apic_read(APIC_LVTPC) & ~APIC_LVT_MASKED);
136
137 /* We can't work out if we really handled an interrupt. We
138 * might have caught a *second* counter just after overflowing
139 * the interrupt for this counter then arrives
140 * and we don't find a counter that's overflowed, so we
141 * would return 0 and get dazed + confused. Instead we always
142 * assume we found an overflow. This sucks.
143 */
144 return 1;
145}
146
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static void ppro_start(struct op_msrs const * const msrs)
149{
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100150 unsigned int low, high;
Arun Sharma6b77df02006-09-29 02:00:01 -0700151 int i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200152
Eric Dumazet9ea84ad2008-12-02 07:21:21 +0100153 if (!reset_value)
154 return;
Andi Kleenb9917022008-08-18 14:50:31 +0200155 for (i = 0; i < num_counters; ++i) {
Arun Sharma6b77df02006-09-29 02:00:01 -0700156 if (reset_value[i]) {
Robert Richter74c9a5c2009-05-22 19:47:38 +0200157 rdmsr(msrs->controls[i].addr, low, high);
Arun Sharma6b77df02006-09-29 02:00:01 -0700158 CTRL_SET_ACTIVE(low);
Robert Richter74c9a5c2009-05-22 19:47:38 +0200159 wrmsr(msrs->controls[i].addr, low, high);
Arun Sharma6b77df02006-09-29 02:00:01 -0700160 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
164
165static void ppro_stop(struct op_msrs const * const msrs)
166{
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100167 unsigned int low, high;
Arun Sharma6b77df02006-09-29 02:00:01 -0700168 int i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200169
Eric Dumazet9ea84ad2008-12-02 07:21:21 +0100170 if (!reset_value)
171 return;
Andi Kleenb9917022008-08-18 14:50:31 +0200172 for (i = 0; i < num_counters; ++i) {
Arun Sharma6b77df02006-09-29 02:00:01 -0700173 if (!reset_value[i])
174 continue;
Robert Richter74c9a5c2009-05-22 19:47:38 +0200175 rdmsr(msrs->controls[i].addr, low, high);
Don Zickuscb9c4482006-09-26 10:52:26 +0200176 CTRL_SET_INACTIVE(low);
Robert Richter74c9a5c2009-05-22 19:47:38 +0200177 wrmsr(msrs->controls[i].addr, low, high);
Don Zickuscb9c4482006-09-26 10:52:26 +0200178 }
179}
180
181static void ppro_shutdown(struct op_msrs const * const msrs)
182{
183 int i;
184
Andi Kleenb9917022008-08-18 14:50:31 +0200185 for (i = 0 ; i < num_counters ; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100186 if (CTR_IS_RESERVED(msrs, i))
Don Zickuscb9c4482006-09-26 10:52:26 +0200187 release_perfctr_nmi(MSR_P6_PERFCTR0 + i);
188 }
Andi Kleenb9917022008-08-18 14:50:31 +0200189 for (i = 0 ; i < num_counters ; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100190 if (CTRL_IS_RESERVED(msrs, i))
Don Zickuscb9c4482006-09-26 10:52:26 +0200191 release_evntsel_nmi(MSR_P6_EVNTSEL0 + i);
192 }
Andi Kleenb9917022008-08-18 14:50:31 +0200193 if (reset_value) {
194 kfree(reset_value);
195 reset_value = NULL;
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
199
Robert Richter849620f2009-05-14 17:10:52 +0200200struct op_x86_model_spec const op_ppro_spec = {
201 .num_counters = 2,
202 .num_controls = 2,
Robert Richter3370d352009-05-25 15:10:32 +0200203 .reserved = MSR_PPRO_EVENTSEL_RESERVED,
Robert Richterc92960f2008-09-05 17:12:36 +0200204 .fill_in_addresses = &ppro_fill_in_addresses,
205 .setup_ctrs = &ppro_setup_ctrs,
206 .check_ctrs = &ppro_check_ctrs,
207 .start = &ppro_start,
208 .stop = &ppro_stop,
209 .shutdown = &ppro_shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210};
Andi Kleenb9917022008-08-18 14:50:31 +0200211
212/*
213 * Architectural performance monitoring.
214 *
215 * Newer Intel CPUs (Core1+) have support for architectural
216 * events described in CPUID 0xA. See the IA32 SDM Vol3b.18 for details.
217 * The advantage of this is that it can be done without knowing about
218 * the specific CPU.
219 */
220
Robert Richtere4192942008-10-12 15:12:34 -0400221static void arch_perfmon_setup_counters(void)
Andi Kleenb9917022008-08-18 14:50:31 +0200222{
223 union cpuid10_eax eax;
224
225 eax.full = cpuid_eax(0xa);
226
227 /* Workaround for BIOS bugs in 6/15. Taken from perfmon2 */
228 if (eax.split.version_id == 0 && current_cpu_data.x86 == 6 &&
229 current_cpu_data.x86_model == 15) {
230 eax.split.version_id = 2;
231 eax.split.num_counters = 2;
232 eax.split.bit_width = 40;
233 }
234
235 num_counters = eax.split.num_counters;
236
237 op_arch_perfmon_spec.num_counters = num_counters;
238 op_arch_perfmon_spec.num_controls = num_counters;
239}
240
Robert Richtere4192942008-10-12 15:12:34 -0400241static int arch_perfmon_init(struct oprofile_operations *ignore)
242{
243 arch_perfmon_setup_counters();
244 return 0;
245}
246
Andi Kleenb9917022008-08-18 14:50:31 +0200247struct op_x86_model_spec op_arch_perfmon_spec = {
Robert Richter3370d352009-05-25 15:10:32 +0200248 .reserved = MSR_PPRO_EVENTSEL_RESERVED,
Robert Richtere4192942008-10-12 15:12:34 -0400249 .init = &arch_perfmon_init,
Andi Kleenb9917022008-08-18 14:50:31 +0200250 /* num_counters/num_controls filled in at runtime */
Robert Richter5a289392008-10-15 22:19:41 +0200251 .fill_in_addresses = &ppro_fill_in_addresses,
Andi Kleenb9917022008-08-18 14:50:31 +0200252 /* user space does the cpuid check for available events */
Robert Richter5a289392008-10-15 22:19:41 +0200253 .setup_ctrs = &ppro_setup_ctrs,
254 .check_ctrs = &ppro_check_ctrs,
255 .start = &ppro_start,
256 .stop = &ppro_stop,
257 .shutdown = &ppro_shutdown
Andi Kleenb9917022008-08-18 14:50:31 +0200258};