blob: 0620d6d45f7d08f99e8974396260fb071f02948c [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)
30#define CTR_READ(l, h, msrs, c) do {rdmsr(msrs->counters[(c)].addr, (l), (h)); } while (0)
Andi Kleenb9917022008-08-18 14:50:31 +020031#define CTR_OVERFLOWED(n) (!((n) & (1U<<(counter_width-1))))
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010033#define CTRL_IS_RESERVED(msrs, c) (msrs->controls[(c)].addr ? 1 : 0)
34#define CTRL_READ(l, h, msrs, c) do {rdmsr((msrs->controls[(c)].addr), (l), (h)); } while (0)
35#define CTRL_WRITE(l, h, msrs, c) do {wrmsr((msrs->controls[(c)].addr), (l), (h)); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#define CTRL_SET_ACTIVE(n) (n |= (1<<22))
37#define CTRL_SET_INACTIVE(n) (n &= ~(1<<22))
38#define CTRL_CLEAR(x) (x &= (1<<21))
39#define CTRL_SET_ENABLE(val) (val |= 1<<20)
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010040#define CTRL_SET_USR(val, u) (val |= ((u & 1) << 16))
41#define CTRL_SET_KERN(val, k) (val |= ((k & 1) << 17))
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define CTRL_SET_UM(val, m) (val |= (m << 8))
43#define CTRL_SET_EVENT(val, e) (val |= e)
44
Andi Kleenb9917022008-08-18 14:50:31 +020045static u64 *reset_value;
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static void ppro_fill_in_addresses(struct op_msrs * const msrs)
48{
Don Zickuscb9c4482006-09-26 10:52:26 +020049 int i;
50
Andi Kleenb9917022008-08-18 14:50:31 +020051 for (i = 0; i < num_counters; i++) {
Don Zickuscb9c4482006-09-26 10:52:26 +020052 if (reserve_perfctr_nmi(MSR_P6_PERFCTR0 + i))
53 msrs->counters[i].addr = MSR_P6_PERFCTR0 + i;
54 else
55 msrs->counters[i].addr = 0;
56 }
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010057
Andi Kleenb9917022008-08-18 14:50:31 +020058 for (i = 0; i < num_counters; i++) {
Don Zickuscb9c4482006-09-26 10:52:26 +020059 if (reserve_evntsel_nmi(MSR_P6_EVNTSEL0 + i))
60 msrs->controls[i].addr = MSR_P6_EVNTSEL0 + i;
61 else
62 msrs->controls[i].addr = 0;
63 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66
67static void ppro_setup_ctrs(struct op_msrs const * const msrs)
68{
69 unsigned int low, high;
70 int i;
71
Andi Kleenb9917022008-08-18 14:50:31 +020072 if (!reset_value) {
73 reset_value = kmalloc(sizeof(unsigned) * num_counters,
74 GFP_ATOMIC);
75 if (!reset_value)
76 return;
77 }
78
79 if (cpu_has_arch_perfmon) {
80 union cpuid10_eax eax;
81 eax.full = cpuid_eax(0xa);
82 if (counter_width < eax.split.bit_width)
83 counter_width = eax.split.bit_width;
84 }
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 /* clear all counters */
Andi Kleenb9917022008-08-18 14:50:31 +020087 for (i = 0 ; i < num_counters; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010088 if (unlikely(!CTRL_IS_RESERVED(msrs, i)))
Don Zickuscb9c4482006-09-26 10:52:26 +020089 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 CTRL_READ(low, high, msrs, i);
91 CTRL_CLEAR(low);
92 CTRL_WRITE(low, high, msrs, i);
93 }
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +010094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 /* avoid a false detection of ctr overflows in NMI handler */
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(!CTR_IS_RESERVED(msrs, i)))
Don Zickuscb9c4482006-09-26 10:52:26 +020098 continue;
Andi Kleenb9917022008-08-18 14:50:31 +020099 wrmsrl(msrs->counters[i].addr, -1LL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
102 /* enable active counters */
Andi Kleenb9917022008-08-18 14:50:31 +0200103 for (i = 0; i < num_counters; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100104 if ((counter_config[i].enabled) && (CTR_IS_RESERVED(msrs, i))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 reset_value[i] = counter_config[i].count;
106
Andi Kleenb9917022008-08-18 14:50:31 +0200107 wrmsrl(msrs->counters[i].addr, -reset_value[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109 CTRL_READ(low, high, msrs, i);
110 CTRL_CLEAR(low);
111 CTRL_SET_ENABLE(low);
112 CTRL_SET_USR(low, counter_config[i].user);
113 CTRL_SET_KERN(low, counter_config[i].kernel);
114 CTRL_SET_UM(low, counter_config[i].unit_mask);
115 CTRL_SET_EVENT(low, counter_config[i].event);
116 CTRL_WRITE(low, high, msrs, i);
Don Zickuscb9c4482006-09-26 10:52:26 +0200117 } else {
118 reset_value[i] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 }
120 }
121}
122
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124static int ppro_check_ctrs(struct pt_regs * const regs,
125 struct op_msrs const * const msrs)
126{
127 unsigned int low, high;
128 int i;
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100129
Andi Kleenb9917022008-08-18 14:50:31 +0200130 for (i = 0 ; i < num_counters; ++i) {
Don Zickuscb9c4482006-09-26 10:52:26 +0200131 if (!reset_value[i])
132 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 CTR_READ(low, high, msrs, i);
134 if (CTR_OVERFLOWED(low)) {
135 oprofile_add_sample(regs, i);
Andi Kleenb9917022008-08-18 14:50:31 +0200136 wrmsrl(msrs->counters[i].addr, -reset_value[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138 }
139
140 /* Only P6 based Pentium M need to re-unmask the apic vector but it
141 * doesn't hurt other P6 variant */
142 apic_write(APIC_LVTPC, apic_read(APIC_LVTPC) & ~APIC_LVT_MASKED);
143
144 /* We can't work out if we really handled an interrupt. We
145 * might have caught a *second* counter just after overflowing
146 * the interrupt for this counter then arrives
147 * and we don't find a counter that's overflowed, so we
148 * would return 0 and get dazed + confused. Instead we always
149 * assume we found an overflow. This sucks.
150 */
151 return 1;
152}
153
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static void ppro_start(struct op_msrs const * const msrs)
156{
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100157 unsigned int low, high;
Arun Sharma6b77df02006-09-29 02:00:01 -0700158 int i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200159
Andi Kleenb9917022008-08-18 14:50:31 +0200160 for (i = 0; i < num_counters; ++i) {
Arun Sharma6b77df02006-09-29 02:00:01 -0700161 if (reset_value[i]) {
162 CTRL_READ(low, high, msrs, i);
163 CTRL_SET_ACTIVE(low);
164 CTRL_WRITE(low, high, msrs, i);
165 }
Don Zickuscb9c4482006-09-26 10:52:26 +0200166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169
170static void ppro_stop(struct op_msrs const * const msrs)
171{
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100172 unsigned int low, high;
Arun Sharma6b77df02006-09-29 02:00:01 -0700173 int i;
Don Zickuscb9c4482006-09-26 10:52:26 +0200174
Andi Kleenb9917022008-08-18 14:50:31 +0200175 for (i = 0; i < num_counters; ++i) {
Arun Sharma6b77df02006-09-29 02:00:01 -0700176 if (!reset_value[i])
177 continue;
178 CTRL_READ(low, high, msrs, i);
Don Zickuscb9c4482006-09-26 10:52:26 +0200179 CTRL_SET_INACTIVE(low);
Arun Sharma6b77df02006-09-29 02:00:01 -0700180 CTRL_WRITE(low, high, msrs, i);
Don Zickuscb9c4482006-09-26 10:52:26 +0200181 }
182}
183
184static void ppro_shutdown(struct op_msrs const * const msrs)
185{
186 int i;
187
Andi Kleenb9917022008-08-18 14:50:31 +0200188 for (i = 0 ; i < num_counters ; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100189 if (CTR_IS_RESERVED(msrs, i))
Don Zickuscb9c4482006-09-26 10:52:26 +0200190 release_perfctr_nmi(MSR_P6_PERFCTR0 + i);
191 }
Andi Kleenb9917022008-08-18 14:50:31 +0200192 for (i = 0 ; i < num_counters ; ++i) {
Paolo Ciarrocchi8b45b722008-02-19 23:43:25 +0100193 if (CTRL_IS_RESERVED(msrs, i))
Don Zickuscb9c4482006-09-26 10:52:26 +0200194 release_evntsel_nmi(MSR_P6_EVNTSEL0 + i);
195 }
Andi Kleenb9917022008-08-18 14:50:31 +0200196 if (reset_value) {
197 kfree(reset_value);
198 reset_value = NULL;
199 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
202
Andi Kleen59512902008-09-29 22:23:33 +0200203struct op_x86_model_spec op_ppro_spec = {
Robert Richter5a289392008-10-15 22:19:41 +0200204 .num_counters = 2, /* can be overriden */
205 .num_controls = 2, /* dito */
Robert Richterc92960f2008-09-05 17:12:36 +0200206 .fill_in_addresses = &ppro_fill_in_addresses,
207 .setup_ctrs = &ppro_setup_ctrs,
208 .check_ctrs = &ppro_check_ctrs,
209 .start = &ppro_start,
210 .stop = &ppro_stop,
211 .shutdown = &ppro_shutdown
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
Andi Kleenb9917022008-08-18 14:50:31 +0200213
214/*
215 * Architectural performance monitoring.
216 *
217 * Newer Intel CPUs (Core1+) have support for architectural
218 * events described in CPUID 0xA. See the IA32 SDM Vol3b.18 for details.
219 * The advantage of this is that it can be done without knowing about
220 * the specific CPU.
221 */
222
223void arch_perfmon_setup_counters(void)
224{
225 union cpuid10_eax eax;
226
227 eax.full = cpuid_eax(0xa);
228
229 /* Workaround for BIOS bugs in 6/15. Taken from perfmon2 */
230 if (eax.split.version_id == 0 && current_cpu_data.x86 == 6 &&
231 current_cpu_data.x86_model == 15) {
232 eax.split.version_id = 2;
233 eax.split.num_counters = 2;
234 eax.split.bit_width = 40;
235 }
236
237 num_counters = eax.split.num_counters;
238
239 op_arch_perfmon_spec.num_counters = num_counters;
240 op_arch_perfmon_spec.num_controls = num_counters;
Andi Kleen59512902008-09-29 22:23:33 +0200241 op_ppro_spec.num_counters = num_counters;
242 op_ppro_spec.num_controls = num_counters;
Andi Kleenb9917022008-08-18 14:50:31 +0200243}
244
245struct op_x86_model_spec op_arch_perfmon_spec = {
246 /* num_counters/num_controls filled in at runtime */
Robert Richter5a289392008-10-15 22:19:41 +0200247 .fill_in_addresses = &ppro_fill_in_addresses,
Andi Kleenb9917022008-08-18 14:50:31 +0200248 /* user space does the cpuid check for available events */
Robert Richter5a289392008-10-15 22:19:41 +0200249 .setup_ctrs = &ppro_setup_ctrs,
250 .check_ctrs = &ppro_check_ctrs,
251 .start = &ppro_start,
252 .stop = &ppro_stop,
253 .shutdown = &ppro_shutdown
Andi Kleenb9917022008-08-18 14:50:31 +0200254};