op_model_ppro.c 6.3 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2
 * @file op_model_ppro.h
3
 * Family 6 perfmon and architectural perfmon MSR operations
L
Linus Torvalds 已提交
4 5
 *
 * @remark Copyright 2002 OProfile authors
6
 * @remark Copyright 2008 Intel Corporation
L
Linus Torvalds 已提交
7 8 9 10 11
 * @remark Read the file COPYING
 *
 * @author John Levon
 * @author Philippe Elie
 * @author Graydon Hoare
12
 * @author Andi Kleen
13
 * @author Robert Richter <robert.richter@amd.com>
L
Linus Torvalds 已提交
14 15 16
 */

#include <linux/oprofile.h>
17
#include <linux/slab.h>
L
Linus Torvalds 已提交
18 19 20
#include <asm/ptrace.h>
#include <asm/msr.h>
#include <asm/apic.h>
21
#include <asm/nmi.h>
22

L
Linus Torvalds 已提交
23 24 25
#include "op_x86_model.h"
#include "op_counter.h"

26 27
static int num_counters = 2;
static int counter_width = 32;
L
Linus Torvalds 已提交
28

29
#define MSR_PPRO_EVENTSEL_RESERVED	((0xFFFFFFFFULL<<32)|(1ULL<<21))
L
Linus Torvalds 已提交
30

31
static u64 *reset_value;
32

L
Linus Torvalds 已提交
33 34
static void ppro_fill_in_addresses(struct op_msrs * const msrs)
{
35 36
	int i;

37
	for (i = 0; i < num_counters; i++) {
38 39 40
		if (reserve_perfctr_nmi(MSR_P6_PERFCTR0 + i))
			msrs->counters[i].addr = MSR_P6_PERFCTR0 + i;
	}
41

42
	for (i = 0; i < num_counters; i++) {
43 44 45
		if (reserve_evntsel_nmi(MSR_P6_EVNTSEL0 + i))
			msrs->controls[i].addr = MSR_P6_EVNTSEL0 + i;
	}
L
Linus Torvalds 已提交
46 47 48
}


49 50
static void ppro_setup_ctrs(struct op_x86_model_spec const *model,
			    struct op_msrs const * const msrs)
L
Linus Torvalds 已提交
51
{
52
	u64 val;
L
Linus Torvalds 已提交
53 54
	int i;

55
	if (!reset_value) {
56
		reset_value = kzalloc(sizeof(reset_value[0]) * num_counters,
57 58 59 60 61 62 63 64
					GFP_ATOMIC);
		if (!reset_value)
			return;
	}

	if (cpu_has_arch_perfmon) {
		union cpuid10_eax eax;
		eax.full = cpuid_eax(0xa);
65 66 67 68 69 70 71 72 73 74 75 76

		/*
		 * For Core2 (family 6, model 15), don't reset the
		 * counter width:
		 */
		if (!(eax.split.version_id == 0 &&
			current_cpu_data.x86 == 6 &&
				current_cpu_data.x86_model == 15)) {

			if (counter_width < eax.split.bit_width)
				counter_width = eax.split.bit_width;
		}
77 78
	}

L
Linus Torvalds 已提交
79
	/* clear all counters */
80
	for (i = 0; i < num_counters; ++i) {
81 82 83 84 85 86 87
		if (unlikely(!msrs->controls[i].addr)) {
			if (counter_config[i].enabled && !smp_processor_id())
				/*
				 * counter is reserved, this is on all
				 * cpus, so report only for cpu #0
				 */
				op_x86_warn_reserved(i);
88
			continue;
89
		}
90
		rdmsrl(msrs->controls[i].addr, val);
91
		if (val & ARCH_PERFMON_EVENTSEL_ENABLE)
92
			op_x86_warn_in_use(i);
93 94
		val &= model->reserved;
		wrmsrl(msrs->controls[i].addr, val);
L
Linus Torvalds 已提交
95
	}
96

L
Linus Torvalds 已提交
97
	/* avoid a false detection of ctr overflows in NMI handler */
98
	for (i = 0; i < num_counters; ++i) {
99
		if (unlikely(!msrs->counters[i].addr))
100
			continue;
101
		wrmsrl(msrs->counters[i].addr, -1LL);
L
Linus Torvalds 已提交
102 103 104
	}

	/* enable active counters */
105
	for (i = 0; i < num_counters; ++i) {
106
		if (counter_config[i].enabled && msrs->counters[i].addr) {
L
Linus Torvalds 已提交
107
			reset_value[i] = counter_config[i].count;
108
			wrmsrl(msrs->counters[i].addr, -reset_value[i]);
109 110 111 112
			rdmsrl(msrs->controls[i].addr, val);
			val &= model->reserved;
			val |= op_x86_get_ctrl(model, &counter_config[i]);
			wrmsrl(msrs->controls[i].addr, val);
113 114
		} else {
			reset_value[i] = 0;
L
Linus Torvalds 已提交
115 116 117 118
		}
	}
}

119

L
Linus Torvalds 已提交
120 121 122
static int ppro_check_ctrs(struct pt_regs * const regs,
			   struct op_msrs const * const msrs)
{
123
	u64 val;
L
Linus Torvalds 已提交
124
	int i;
125

126 127 128 129 130 131 132
	/*
	 * This can happen if perf counters are in use when
	 * we steal the die notifier NMI.
	 */
	if (unlikely(!reset_value))
		goto out;

133
	for (i = 0; i < num_counters; ++i) {
134 135
		if (!reset_value[i])
			continue;
136
		rdmsrl(msrs->counters[i].addr, val);
137 138 139 140
		if (val & (1ULL << (counter_width - 1)))
			continue;
		oprofile_add_sample(regs, i);
		wrmsrl(msrs->counters[i].addr, -reset_value[i]);
L
Linus Torvalds 已提交
141 142
	}

143
out:
L
Linus Torvalds 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157
	/* Only P6 based Pentium M need to re-unmask the apic vector but it
	 * doesn't hurt other P6 variant */
	apic_write(APIC_LVTPC, apic_read(APIC_LVTPC) & ~APIC_LVT_MASKED);

	/* We can't work out if we really handled an interrupt. We
	 * might have caught a *second* counter just after overflowing
	 * the interrupt for this counter then arrives
	 * and we don't find a counter that's overflowed, so we
	 * would return 0 and get dazed + confused. Instead we always
	 * assume we found an overflow. This sucks.
	 */
	return 1;
}

158

L
Linus Torvalds 已提交
159 160
static void ppro_start(struct op_msrs const * const msrs)
{
161
	u64 val;
162
	int i;
163

164 165
	if (!reset_value)
		return;
166
	for (i = 0; i < num_counters; ++i) {
167
		if (reset_value[i]) {
168
			rdmsrl(msrs->controls[i].addr, val);
169
			val |= ARCH_PERFMON_EVENTSEL_ENABLE;
170
			wrmsrl(msrs->controls[i].addr, val);
171
		}
172
	}
L
Linus Torvalds 已提交
173 174 175 176 177
}


static void ppro_stop(struct op_msrs const * const msrs)
{
178
	u64 val;
179
	int i;
180

181 182
	if (!reset_value)
		return;
183
	for (i = 0; i < num_counters; ++i) {
184 185
		if (!reset_value[i])
			continue;
186
		rdmsrl(msrs->controls[i].addr, val);
187
		val &= ~ARCH_PERFMON_EVENTSEL_ENABLE;
188
		wrmsrl(msrs->controls[i].addr, val);
189 190 191 192 193 194 195
	}
}

static void ppro_shutdown(struct op_msrs const * const msrs)
{
	int i;

196
	for (i = 0; i < num_counters; ++i) {
197
		if (msrs->counters[i].addr)
198 199
			release_perfctr_nmi(MSR_P6_PERFCTR0 + i);
	}
200
	for (i = 0; i < num_counters; ++i) {
201
		if (msrs->controls[i].addr)
202 203
			release_evntsel_nmi(MSR_P6_EVNTSEL0 + i);
	}
204 205 206 207
	if (reset_value) {
		kfree(reset_value);
		reset_value = NULL;
	}
L
Linus Torvalds 已提交
208 209 210
}


211
struct op_x86_model_spec op_ppro_spec = {
212 213
	.num_counters		= 2,
	.num_controls		= 2,
214
	.reserved		= MSR_PPRO_EVENTSEL_RESERVED,
215 216 217 218 219 220
	.fill_in_addresses	= &ppro_fill_in_addresses,
	.setup_ctrs		= &ppro_setup_ctrs,
	.check_ctrs		= &ppro_check_ctrs,
	.start			= &ppro_start,
	.stop			= &ppro_stop,
	.shutdown		= &ppro_shutdown
221 222 223 224 225 226 227 228 229 230 231
};

/*
 * Architectural performance monitoring.
 *
 * Newer Intel CPUs (Core1+) have support for architectural
 * events described in CPUID 0xA. See the IA32 SDM Vol3b.18 for details.
 * The advantage of this is that it can be done without knowing about
 * the specific CPU.
 */

232
static void arch_perfmon_setup_counters(void)
233 234 235 236 237 238 239 240 241
{
	union cpuid10_eax eax;

	eax.full = cpuid_eax(0xa);

	/* Workaround for BIOS bugs in 6/15. Taken from perfmon2 */
	if (eax.split.version_id == 0 && current_cpu_data.x86 == 6 &&
		current_cpu_data.x86_model == 15) {
		eax.split.version_id = 2;
242
		eax.split.num_events = 2;
243 244 245
		eax.split.bit_width = 40;
	}

246
	num_counters = eax.split.num_events;
247 248 249 250 251

	op_arch_perfmon_spec.num_counters = num_counters;
	op_arch_perfmon_spec.num_controls = num_counters;
}

252 253 254 255 256 257
static int arch_perfmon_init(struct oprofile_operations *ignore)
{
	arch_perfmon_setup_counters();
	return 0;
}

258
struct op_x86_model_spec op_arch_perfmon_spec = {
259
	.reserved		= MSR_PPRO_EVENTSEL_RESERVED,
260
	.init			= &arch_perfmon_init,
261
	/* num_counters/num_controls filled in at runtime */
R
Robert Richter 已提交
262
	.fill_in_addresses	= &ppro_fill_in_addresses,
263
	/* user space does the cpuid check for available events */
R
Robert Richter 已提交
264 265 266 267 268
	.setup_ctrs		= &ppro_setup_ctrs,
	.check_ctrs		= &ppro_check_ctrs,
	.start			= &ppro_start,
	.stop			= &ppro_stop,
	.shutdown		= &ppro_shutdown
L
Linus Torvalds 已提交
269
};